{
    "format": "sql",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "Buzz User Schema",
    "required": [
        "id"
    ],
    "properties": {
        "id": {
            "$id": "#/properties/id",
            "type": "string",
            "title": "ID",
            "default": "",
            "examples": [
                ""
            ],
            "pattern": "^(.+)$"
        },
        "name": {
            "$id": "#/properties/name",
            "type": "string",
            "title": "Category name",
            "default": "",
            "examples": [
                ""
            ],
            "pattern": "^(.+)$"
        }
    }
}
