{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BusinessDomain", "title": "BusinessDomain", "type": "object", "description": "A business domain in the unified catalog", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" }, "owners": { "type": "array", "items": { "$ref": "#/components/schemas/GovernanceContact" } }, "stewards": { "type": "array", "items": { "$ref": "#/components/schemas/GovernanceContact" } }, "parentDomainId": { "type": "string" }, "status": { "type": "string", "enum": [ "Draft", "Published", "Expired" ] }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }