File size: 1,668 Bytes
25b7932 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | {
"$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
}
}
} |