{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "anu_v3/schemas/goal_request_2553plus33.schema.json",
  "title": "Goal Request — POLICY_PROFILE_ENGINE core (task-2553+33 / Track C1)",
  "description": "Static meta-schema. Chair supplies only goal + boundary + policy_profile{name}; anu_v3.policy_profile_engine loads the named profile and auto-derives gate/HOLD/allowed/forbidden/evidence/completion-packet. Additive — distinct from the pre-existing untracked schemas/goal_request.schema.json (task-2553+17), zero mutation.",
  "type": "object",
  "required": ["goal_id", "goal_statement", "policy_profile"],
  "additionalProperties": false,
  "properties": {
    "goal_id": { "type": "string", "minLength": 1 },
    "goal_statement": { "type": "string", "minLength": 1 },
    "goal_type": { "type": "string", "minLength": 1 },
    "boundary": {
      "type": "array",
      "items": { "type": "string" }
    },
    "policy_profile": {
      "type": "object",
      "required": ["name"],
      "additionalProperties": true,
      "properties": {
        "name": { "type": "string", "minLength": 1 }
      }
    }
  }
}
