Microsoft Purview · Schema

AtlasGlossaryCategory

A glossary category

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
guid string
qualifiedName string
name string
shortDescription string
longDescription string
anchor object
parentCategory object
childrenCategories array
terms array
View JSON Schema on GitHub

JSON Schema

microsoft-purview-atlasglossarycategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtlasGlossaryCategory",
  "title": "AtlasGlossaryCategory",
  "type": "object",
  "description": "A glossary category",
  "properties": {
    "guid": {
      "type": "string",
      "format": "uuid"
    },
    "qualifiedName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "shortDescription": {
      "type": "string"
    },
    "longDescription": {
      "type": "string"
    },
    "anchor": {
      "$ref": "#/components/schemas/AtlasGlossaryHeader"
    },
    "parentCategory": {
      "$ref": "#/components/schemas/AtlasRelatedCategoryHeader"
    },
    "childrenCategories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AtlasRelatedCategoryHeader"
      }
    },
    "terms": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AtlasRelatedTermHeader"
      }
    }
  }
}