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