baa-conductor

git clone 

baa-conductor / docs / baa-instruction-system-v5 / schemas
codex@macbookpro  ·  2026-03-27

baa-delivery-plan.schema.json

 1{
 2  "$schema": "https://json-schema.org/draft/2020-12/schema",
 3  "$id": "https://makefile.so/schemas/baa-delivery-plan.schema.json",
 4  "title": "BAA Delivery Plan",
 5  "type": "object",
 6  "required": [
 7    "plan_id",
 8    "trace_id",
 9    "target",
10    "uploads",
11    "message_text",
12    "auto_send"
13  ],
14  "properties": {
15    "plan_id": {
16      "type": "string"
17    },
18    "trace_id": {
19      "type": "string"
20    },
21    "conversation_id": {
22      "type": [
23        "string",
24        "null"
25      ]
26    },
27    "target": {
28      "type": "string"
29    },
30    "uploads": {
31      "type": "array",
32      "items": {
33        "type": "object",
34        "required": [
35          "artifact_id",
36          "filename",
37          "mime_type",
38          "local_path"
39        ],
40        "properties": {
41          "artifact_id": {
42            "type": "string"
43          },
44          "filename": {
45            "type": "string"
46          },
47          "mime_type": {
48            "type": "string"
49          },
50          "local_path": {
51            "type": "string"
52          }
53        },
54        "additionalProperties": true
55      }
56    },
57    "message_text": {
58      "type": "string"
59    },
60    "auto_send": {
61      "type": "boolean"
62    }
63  },
64  "additionalProperties": true
65}