Files
document-haness/korean-technical-blog-skills-bundle-v1/writing-korean-technical-blogs/schemas/article-result.schema.json
T
DongHyeonkaandClaude Opus 5 1099834617 chore: snapshot working tree before harness removal
미추적 파일과 미커밋 수정을 전부 담아 pre-harness-removal 태그의 복구
범위를 확보한다. .agents/skills/writing-natural-korean 9개와
korean-technical-blog-skills-bundle-v1 61개가 여기 포함된다.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-07 14:19:24 +09:00

178 lines
3.4 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "KoreanTechnicalBlogResult",
"type": "object",
"required": [
"status",
"document_type",
"assumptions",
"protected_spans",
"article",
"changes",
"warnings",
"scores",
"gate_failures"
],
"properties": {
"status": {
"enum": [
"pass",
"needs_clarification",
"blocked"
]
},
"document_type": {
"type": "string"
},
"assumptions": {
"type": "array",
"items": {
"type": "object",
"required": [
"field",
"value",
"state"
],
"properties": {
"field": {
"type": "string"
},
"value": {},
"state": {
"enum": [
"provided",
"inferred",
"unspecified"
]
}
}
}
},
"protected_spans": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
},
"article": {
"type": "string"
},
"changes": {
"type": "array",
"items": {
"type": "object",
"required": [
"source",
"result",
"problem",
"rule_ids",
"preservation_check"
],
"properties": {
"source": {
"type": "string"
},
"result": {
"type": "string"
},
"problem": {
"type": "string"
},
"rule_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"preservation_check": {
"enum": [
"passed",
"warning",
"failed"
]
}
}
}
},
"warnings": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"message"
],
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
}
}
}
},
"scores": {
"type": "object",
"required": [
"factual_fidelity",
"structure_and_audience",
"korean_language",
"technical_evidence",
"brand_consistency",
"naturalness",
"total"
],
"properties": {
"factual_fidelity": {
"type": "number",
"minimum": 0
},
"structure_and_audience": {
"type": "number",
"minimum": 0
},
"korean_language": {
"type": "number",
"minimum": 0
},
"technical_evidence": {
"type": "number",
"minimum": 0
},
"brand_consistency": {
"type": "number",
"minimum": 0
},
"naturalness": {
"type": "number",
"minimum": 0
},
"total": {
"type": "number",
"minimum": 0
}
}
},
"gate_failures": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}