dedup_output.json¶
Source: schemas/dedup_output.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DedupOutput",
"description": "Structured output from deduplication check",
"type": "object",
"required": ["verdict", "confidence", "reasoning", "suggested_action"],
"properties": {
"verdict": {
"type": "string",
"enum": ["same", "related", "different"]
},
"confidence": {
"type": "number",
"minimum": 0.0,
"maximum": 1.0
},
"reasoning": {
"type": "string"
},
"suggested_action": {
"type": "string",
"enum": ["merge", "link", "none"]
}
}
}