{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Glossary dataset schema", "description": "Defined terms and related concepts for grounding identity-tech language and terminology.", "schemaVersion": "1.0.0", "catalogVersion": "2.0.0", "license": "https://creativecommons.org/licenses/by/4.0/", "type": "object", "required": [ "slug", "definition", "_meta" ], "fields": [ { "name": "slug", "type": "string", "required": true, "description": "Stable glossary identifier." }, { "name": "term", "type": "string", "required": false, "description": "Preferred display label when present." }, { "name": "title", "type": "string", "required": false, "description": "Legacy equivalent to term." }, { "name": "definition", "type": "string", "required": true, "description": "Plain-language definition used in retrieval and entity pages." }, { "name": "related", "type": "string[]", "required": false, "description": "Related vendor or technology slugs." }, { "name": "faq", "type": "object[]", "required": false, "description": "Optional FAQ entries for grounding." }, { "name": "_meta", "type": "object", "required": true, "description": "Provenance and contract metadata for this record." } ], "properties": { "slug": { "type": "string", "description": "Stable glossary identifier." }, "term": { "type": "string", "description": "Preferred display label when present." }, "title": { "type": "string", "description": "Legacy equivalent to term." }, "definition": { "type": "string", "description": "Plain-language definition used in retrieval and entity pages." }, "related": { "type": "array", "description": "Related vendor or technology slugs." }, "faq": { "type": "array", "description": "Optional FAQ entries for grounding." }, "_meta": { "type": "object", "description": "Provenance and contract metadata for this record." } }, "distribution": { "datasetPath": "/datasets/glossary.jsonl", "browsePath": "/for-ai/datasets/glossary", "apiPath": "/api/glossary", "entityPathPattern": "/glossary/[slug]" } }