13 lines
410 B
JSON
13 lines
410 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "review.schema.json",
|
|
"title": "review report — delta over report.schema.json",
|
|
"description": "리뷰 산출물. verdict(예: Accepted|Changes-Requested|Blocked|PASS|NEEDS_FIX)를 명시한다.",
|
|
"type": "object",
|
|
"required": ["verdict"],
|
|
"properties": {
|
|
"verdict": {"type": "string"},
|
|
"findings": {"type": "array"}
|
|
}
|
|
}
|