{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/alation/refs/heads/main/json-schema/alation-alation-governance-glossary-term-schema.json", "title": "GlossaryTerm", "description": "A business glossary term in the Alation catalog", "type": "object", "properties": { "id": { "type": "integer" }, "title": { "type": "string" }, "description": { "type": "string" }, "abbreviation": { "type": "string" }, "synonyms": { "type": "array", "items": { "type": "string" } }, "stewards": { "type": "array", "items": { "type": "integer" } }, "url": { "type": "string", "format": "uri" }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } } }