| { |
| "$schema": "https://json-schema.org/draft/2020-12/schema", |
| "$id": "https://primordial.local/schemas/llm_contribution_capsule_schema_v3_3.json", |
| "title": "LLM Contribution Capsule Schema v3.3", |
| "type": "object", |
| "required": [ |
| "contribution_id", |
| "adapter_id", |
| "command_id", |
| "contribution_type", |
| "claims", |
| "uncertainties", |
| "write_permission", |
| "oam_precheck" |
| ], |
| "properties": { |
| "contribution_id": { |
| "type": "string" |
| }, |
| "adapter_id": { |
| "type": "string" |
| }, |
| "command_id": { |
| "type": "string" |
| }, |
| "contribution_type": { |
| "enum": [ |
| "SYNTHESIS_REVIEW", |
| "NODE_SUGGESTION", |
| "REPAIR_NOTE", |
| "NEXT_ROUTE_SUGGESTION", |
| "LEXICON_PROPOSAL", |
| "TRACE_CAPSULE_SUMMARY" |
| ] |
| }, |
| "claims": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| } |
| }, |
| "uncertainties": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| } |
| }, |
| "repair_suggestions": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| } |
| }, |
| "source_links": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| } |
| }, |
| "oam_precheck": { |
| "type": "object" |
| }, |
| "write_permission": { |
| "enum": [ |
| "NONE", |
| "OVERLAY_PROPOSAL_ONLY", |
| "WORKSPACE_ONLY" |
| ] |
| }, |
| "human_review_required": { |
| "type": "boolean" |
| } |
| } |
| } |