{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "array",
    "items": {
        "type": "object",
        "properties": {
            "id": {
                "type": "string"
            },
            "type": {
                "type": "string"
            },
            "label": {
                "type": "string"
            },
            "disabled": {
                "type": "boolean"
            }
        },
        "required": [
            "id",
            "type"
        ]
            
        
    }
}