Microsoft Purview · Schema
DataProduct
A data product in the unified catalog
ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| description | string | |
| businessDomainId | string | |
| owners | array | |
| status | string | |
| dataAssets | array | |
| createdAt | string | |
| updatedAt | string |
JSON Schema
{
"$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"
}
}
}