Microsoft Purview · Schema

AtlasGlossary

A glossary object

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
guid string
qualifiedName string
name string
shortDescription string
longDescription string
language string
usage string
terms array
categories array
View JSON Schema on GitHub

JSON Schema

microsoft-purview-atlasglossary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtlasGlossary",
  "title": "AtlasGlossary",
  "type": "object",
  "description": "A glossary object",
  "properties": {
    "guid": {
      "type": "string",
      "format": "uuid"
    },
    "qualifiedName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "shortDescription": {
      "type": "string"
    },
    "longDescription": {
      "type": "string"
    },
    "language": {
      "type": "string"
    },
    "usage": {
      "type": "string"
    },
    "terms": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AtlasRelatedTermHeader"
      }
    },
    "categories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AtlasRelatedCategoryHeader"
      }
    }
  }
}