Files
OpenMontage/schemas/artifacts/review.schema.json
T
calesthio a3e735cc7a Initial release — OpenMontage: the first open-source agentic video production system
11 production pipelines, 47 tools, 124 agent skills.
Supports cloud APIs (fal.ai, OpenAI, ElevenLabs, Suno, HeyGen, Runway) and
free local providers (diffusers, Piper TTS, WAN 2.1, Hunyuan, CogVideo).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-29 08:25:17 -07:00

36 lines
1.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "openmontage/artifacts/review",
"title": "Stage Review",
"description": "Structured review findings and stage-agent dispositions from the Reviewer.",
"type": "object",
"required": ["version", "stage", "findings"],
"properties": {
"version": { "type": "string", "const": "1.0" },
"stage": { "type": "string", "enum": ["idea", "script", "scene_plan", "assets", "edit", "compose", "publish"] },
"round": { "type": "integer", "minimum": 1, "maximum": 2 },
"findings": {
"type": "array",
"items": {
"type": "object",
"required": ["id", "severity", "description"],
"properties": {
"id": { "type": "string" },
"severity": { "type": "string", "enum": ["critical", "suggestion", "nitpick"] },
"category": { "type": "string" },
"description": { "type": "string" },
"disposition": {
"type": "string",
"enum": ["accepted", "rejected", "pending"],
"default": "pending"
},
"agent_response": { "type": "string" }
},
"additionalProperties": false
}
},
"metadata": { "type": "object" }
},
"additionalProperties": false
}