{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://bound-method.github.io/docs/reference/schemas/boundary.schema.json",
  "title": "BOUND Boundary Definition",
  "description": "Proposed machine-readable representation of responsibility and decision ownership.",
  "type": "object",
  "additionalProperties": false,
  "required": ["domain", "responsibility", "owner", "owns", "may_decide", "exposes", "consumes", "forbidden_dependencies"],
  "properties": {
    "domain": { "type": "string", "minLength": 1 },
    "responsibility": { "type": "string", "minLength": 1 },
    "owner": { "type": "string", "minLength": 1 },
    "owns": { "type": "array", "items": { "type": "string" } },
    "may_decide": { "type": "array", "items": { "type": "string" } },
    "exposes": { "type": "array", "items": { "type": "string" } },
    "consumes": { "type": "array", "items": { "type": "string" } },
    "forbidden_dependencies": { "type": "array", "items": { "type": "string" } }
  }
}
