{
    "$schema": "http://json-schema.org/draft-07/schema",
    "$id": "https://immersive-web/webxr-input-profiles/assets/0.1.0/profile.schema.json",
    "type": "object",
    "description": "The root object for a webxr input profile asset description",
    "additionalProperties": false,
    "required": [ "profileId", "overrides" ],
    "properties": {
        "profileId" : { "$ref": "common.schema.json#/definitions/profileId" },
        "overrides" : { 
            "type": "object",
            "additionalProperties": false,
            "properties": {        
                "none": { "$ref": "layout.schema.json" },
                "left": { "$ref": "layout.schema.json" },
                "right": { "$ref": "layout.schema.json" },
                "left-right": { "$ref": "layout.schema.json" },
                "left-right-none": { "$ref": "layout.schema.json" }
            },
            "dependencies": {
                "left-right-none": { "not": { "required": ["none", "left", "right", "left-right"] } },
                "left-right": { "not": { "required": ["left", "right", "left-right-none"] } },
                "left": { "not": { "required": ["left-right", "left-right-none"] } },
                "right": { "not": { "required": ["left-right", "left-right-none"] } },
                "none": { "not": { "required": ["left-right-none"] } }
            }
        }
    }
}