| { |
| "$schema": "https://json-schema.org/draft/2020-12/schema", |
| "$id": "https://primordial.local/schemas/mesh_command_capsule_schema_v3_3.json", |
| "title": "Mesh Command Capsule Schema v3.3", |
| "type": "object", |
| "required": [ |
| "command_id", |
| "command_type", |
| "raw_user_text", |
| "requested_by", |
| "workspace_id", |
| "claim_boundary", |
| "required_outputs" |
| ], |
| "properties": { |
| "command_id": { |
| "type": "string" |
| }, |
| "command_type": { |
| "enum": [ |
| "DISCOVER", |
| "BRAINSTORM", |
| "COMBINE", |
| "EXTEND_RESEARCH", |
| "OAM_READ", |
| "LEXICON_REVIEW", |
| "THREADROOM_POST" |
| ] |
| }, |
| "raw_user_text": { |
| "type": "string" |
| }, |
| "requested_by": { |
| "$ref": "adapter_identity_schema_v3_3.json" |
| }, |
| "workspace_id": { |
| "type": "string" |
| }, |
| "session_id": { |
| "type": "string" |
| }, |
| "target_nodes": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| } |
| }, |
| "hashtags": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| } |
| }, |
| "mention_refs": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| } |
| }, |
| "minutes_budget": { |
| "type": "number", |
| "minimum": 0 |
| }, |
| "claim_boundary": { |
| "type": "string" |
| }, |
| "required_outputs": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| } |
| }, |
| "privacy_scope": { |
| "enum": [ |
| "PRIVATE_WORKSPACE", |
| "CONTROLLED_LINK", |
| "PUBLIC_READ_ONLY", |
| "PUBLIC_CONTRIBUTION_QUEUE" |
| ] |
| }, |
| "source_mutation_allowed": { |
| "const": false |
| } |
| } |
| } |