{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Korean Technical Blog Brief", "type": "object", "required": [ "sources" ], "properties": { "mode": { "enum": [ "outline", "article", "revise", "audit" ], "default": "article" }, "document_type": { "type": "string" }, "purpose": { "type": "string" }, "target_audience": { "type": "string" }, "reader_outcome": { "type": "string" }, "sources": { "type": "array", "items": { "type": "object", "required": [ "content" ], "properties": { "name": { "type": "string" }, "content": { "type": "string" }, "source_type": { "type": "string" }, "verified": { "type": "boolean" } } } }, "evidence": { "type": "array", "items": { "type": "object", "properties": { "claim": { "type": "string" }, "value": {}, "scope": { "type": "string" }, "source": { "type": "string" }, "status": { "enum": [ "verified", "unverified", "conflicting" ] } } } }, "protected_terms": { "type": "array", "items": { "type": "string" } }, "locked_spans": { "type": "array", "items": { "type": "string" } }, "register": { "enum": [ "preserve", "hamnida", "haeyo", "plain" ] }, "public_constraints": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": true }