Code Rooms
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://kognit1v.local/contracts/apply-gate.schema.json",
"title": "KOGNIT1V Apply Gate",
"type": "object",
"required": ["operation_id", "mode", "plan_identity", "idempotency_key", "authorization_required", "human_review", "redaction_checks"],
"properties": {
"operation_id": { "type": "string" },
"mode": {
"type": "string",
"enum": ["dry_run", "waiting_for_authorization", "apply"]
},
"plan_identity": { "type": "string" },
"idempotency_key": { "type": "string" },
"authorization_required": { "type": "boolean" },
"human_review": { "type": "string" },
"redaction_checks": {
"type": "array",
"items": { "type": "string" }
}