{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://schema.khronos.org/vulkan/devsim_VK_KHR_separate_depth_stencil_layouts_1.json#",
    "title": "JSON schema for Vulkan device simulation layer configuration file",
    "description": "Schema for VK_KHR_separate_depth_stencil_layouts data structures, as used to configure the device simulation layer.",
    "type": "object",
    "additionalProperties": true,

    "definitions": {
        "$schema": {"type": "string", "format": "uri"},
        "uint32_t": {"type": "integer", "minimum": 0, "maximum": 4294967295},
        "VkBool32": {"$ref": "#/definitions/uint32_t"},
        "VkPhysicalDeviceSeparateDepthStencilLayoutsFeaturesKHR": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
                "separateDepthStencilLayouts": {"$ref": "#/definitions/VkBool32"}
            }
        }
    },
    
    "required": ["$schema"],
    "properties": {
        "$schema": {"$ref": "#/definitions/$schema"},
        "VkPhysicalDeviceSeparateDepthStencilLayoutsFeaturesKHR": {"$ref": "#/definitions/VkPhysicalDeviceSeparateDepthStencilLayoutsFeaturesKHR"},
        "features": {"type": "null"},
        "comments": {"type": "object"}
    }
}