{
    "$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"
            ]
        }
    },
    "required": [
        "id",
        "label"
    ],
    "title": "MXL Domain definition",
    "type": "object"
}
