baa-conductor

git clone 

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

baa-artifact-manifest.schema.json

 1{
 2  "$schema": "https://json-schema.org/draft/2020-12/schema",
 3  "$id": "https://makefile.so/schemas/baa-artifact-manifest.schema.json",
 4  "title": "BAA Artifact Manifest",
 5  "type": "object",
 6  "required": [
 7    "manifest_id",
 8    "trace_id",
 9    "entries"
10  ],
11  "properties": {
12    "manifest_id": {
13      "type": "string"
14    },
15    "trace_id": {
16      "type": "string"
17    },
18    "round_id": {
19      "type": [
20        "string",
21        "null"
22      ]
23    },
24    "entries": {
25      "type": "array",
26      "items": {
27        "type": "object",
28        "required": [
29          "instruction_id",
30          "ok",
31          "summary",
32          "artifact_ids"
33        ],
34        "properties": {
35          "instruction_id": {
36            "type": "string"
37          },
38          "ok": {
39            "type": "boolean"
40          },
41          "summary": {
42            "type": "string"
43          },
44          "artifact_ids": {
45            "type": "array",
46            "items": {
47              "type": "string"
48            }
49          }
50        },
51        "additionalProperties": true
52      }
53    }
54  },
55  "additionalProperties": true
56}