{
    "$schema": "http://json-schema.org/draft/2019-09/schema#",
    "additionalProperties": true,
    "description": "MXL Domain definition schema",
    "properties": {
        "description": {
            "description": "Specifies the MXL domain description.",
            "type": [
                "string"
            ]
        },
        "id": {
            "anyOf": [
                {
                    "format": "uuid"
                }
            ],
            "description": "Specifies the MXL domain id.",
            "type": [
                "string"
            ]
        },
        "label": {
            "description": "Specifies the MXL domain label.",
            "type": [
                "string"
            ]
        },
        "tags": {
            "description": "Key value set of freeform string tags to aid in filtering. Values should be represented as an array of strings. Can be empty.",
            "patternProperties": {
                "": {
                    "items": {
                        "type": "string"
                    },
                    "type": "array"
                }
            },
            "type": "object"
        }
    },
    "required": [
        "id",
        "label",
        "description",
        "tags"
    ],
    "title": "MXL Domain definition",
    "type": "object"
}
