use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct WriteOutcome {
pub id: Option<String>,
pub action: String,
pub verified: bool,
pub dry_run: bool,
pub latency_ms: u64,
}