//! Extraction result — port of `ExtractionResult` in `sdk/go/result_scrape.go`.
useserde::Deserialize;/// Response envelope from `POST /extraction`.
#[derive(Debug, Clone, Deserialize, Default)]pubstructExtractionResult{/// Extracted data (shape depends on the template/prompt).
#[serde(default)]pubdata:serde_json::Value,
/// Content type of the input document.
#[serde(default)]pubcontent_type: String,
/// Quality/confidence marker (shape depends on the model).
#[serde(default)]pubdata_quality:serde_json::Value,
}