{
  "$id": "https://schemas.opendd.eu/xtddictionary.1.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "xtd Dictionary Schema",
  "description": "xtdDictionary is a specialization of xtdRoot used to represent a data dictionary.; According to SS-EN ISO 12006-3:2022.",
  "type": "object",
  "allOf": [
    {
      "$ref": "/xtdroot.1.schema.json"
    },
    {
      "$ref": "/opendd-entity-meta.1.schema.json"
    },
    {
      "$ref": "#/$defs/Dictionary"
    }
  ],
  "$defs": {
    "Dictionary": {
      "type": "object",
      "properties": {
        "Name": {
          "$ref": "/xtdmultilanguagetext.1.schema.json"
        }
      },
      "required": [
        "Name"
      ]
    }
  }
}
