Microsoft Purview · Schema

AtlasGlossaryTerm

A glossary term

ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection

Properties

Name Type Description
guid string
qualifiedName string
name string
shortDescription string
longDescription string
abbreviation string
usage string
status string
anchor object
categories array
classifications array
assignedEntities array
resources array
View JSON Schema on GitHub

JSON Schema

microsoft-purview-atlasglossaryterm-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtlasGlossaryTerm",
  "title": "AtlasGlossaryTerm",
  "type": "object",
  "description": "A glossary term",
  "properties": {
    "guid": {
      "type": "string",
      "format": "uuid"
    },
    "qualifiedName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "shortDescription": {
      "type": "string"
    },
    "longDescription": {
      "type": "string"
    },
    "abbreviation": {
      "type": "string"
    },
    "usage": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Draft",
        "Approved",
        "Alert",
        "Expired"
      ]
    },
    "anchor": {
      "$ref": "#/components/schemas/AtlasGlossaryHeader"
    },
    "categories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AtlasTermCategorizationHeader"
      }
    },
    "classifications": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AtlasClassification"
      }
    },
    "assignedEntities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AtlasRelatedObjectId"
      }
    },
    "resources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ResourceLink"
      }
    }
  }
}