the-custodian/canon/standards/schemas/work-records/intake.schema.json
codex f4101cdd9a
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 3s
CUST-WP-0060 T01-T03: canon ratified active, terminology v0.2, schemas + validator
- work-record-types_v0.1.md + autonomy-lanes_v0.1.md: status active
  (founder ratification 2026-07-20, hub decision f4640f9e); registry
  grandfathers legacy task-id variants (-T1, -LEGACY-Txx)
- workplan-terminology-fleet: v0.2 addendum — work-record umbrella,
  kind vocabulary, suggestion as legacy bridge name (T02)
- canon/standards/schemas/work-records/: spine + intake/decision/
  engagement JSON schemas (T03); conditional spine requirements,
  historical grace for terminal records
- tools/validate_work_records.py: registry+schema validator for CI
  (T04); jsonschema with inlined spine refs, fallback checks without;
  proof runs clean: the-custodian 384 records, binky-control 45

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-20 02:07:36 +02:00

44 lines
1.8 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://canon.coulomb.social/schemas/work-records/intake.schema.json",
"title": "Intake Item",
"description": "Authored YAML block for kind=intake. Id: {PREFIX}-IN-NNNN; legacy AWQ-NNN grandfathered. Lifecycle: open -> vetted -> routed -> closed(promoted|declined|absorbed).",
"type": "object",
"required": ["id", "title"],
"properties": {
"id": { "type": "string", "pattern": "^([A-Z]+-IN-[0-9]{4}|AWQ-[0-9]{3})$" },
"kind": { "const": "intake" },
"title": { "type": "string", "minLength": 5 },
"status": { "enum": ["open", "vetted", "routed", "closed"] },
"outcome": { "enum": ["promoted", "declined", "absorbed"] },
"lane": { "$ref": "spine.schema.json#/$defs/lane" },
"owner": { "$ref": "spine.schema.json#/$defs/owner" },
"tags": { "$ref": "spine.schema.json#/$defs/tags" },
"priority": { "enum": ["high", "medium", "low"] },
"pulls_from": { "type": "array" },
"promoted_to": { "type": "string", "description": "Canonical id of the record this intake was promoted to." },
"origin": { "type": "string" },
"notes": { "type": "string" },
"state_hub_intake_id": { "$ref": "spine.schema.json#/$defs/uuid" }
},
"allOf": [
{
"if": { "properties": { "status": { "const": "closed" } }, "required": ["status"] },
"then": { "required": ["outcome"] }
},
{
"if": { "properties": { "outcome": { "const": "promoted" } }, "required": ["outcome"] },
"then": { "required": ["promoted_to"] }
},
{
"if": {
"not": {
"properties": { "status": { "const": "closed" } },
"required": ["status"]
}
},
"then": { "required": ["lane"] }
}
],
"additionalProperties": true
}