{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/SchemaCategory",
  "definitions": {
    "SchemaCategory": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "description": {
          "anyOf": [
            {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            {
              "type": "string"
            }
          ]
        },
        "page": {
          "type": "string"
        },
        "hideSummaryList": {
          "type": "boolean"
        }
      },
      "required": [
        "title",
        "description",
        "page"
      ],
      "additionalProperties": false,
      "description": "Definition for a schema category"
    }
  }
}