{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Guide Board Waiver Set", "type": "object", "additionalProperties": false, "required": [ "id", "target_profile_ref", "waivers" ], "properties": { "id": { "type": "string" }, "target_profile_ref": { "type": "string" }, "waivers": { "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "id", "scope", "requirement_refs", "check_refs", "result_refs", "classification_refs", "reason", "owner", "approved_by", "created_at", "expires_at", "review_status" ], "properties": { "id": { "type": "string" }, "scope": { "type": "string" }, "requirement_refs": { "type": "array", "items": { "type": "string" } }, "check_refs": { "type": "array", "items": { "type": "string" } }, "result_refs": { "type": "array", "items": { "type": "string" } }, "classification_refs": { "type": "array", "items": { "type": "string" } }, "reason": { "type": "string" }, "owner": { "type": "string" }, "approved_by": { "type": ["string", "null"] }, "created_at": { "type": "string" }, "expires_at": { "type": ["string", "null"] }, "review_status": { "type": "string" } } } } } }