Microsoft Purview · Schema

BusinessDomain

A business domain in the unified catalog

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
id string
name string
description string
owners array
stewards array
parentDomainId string
status string
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

microsoft-purview-businessdomain-schema.json Raw ↑
{
  "$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"
    }
  }
}