{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "operationId": "tables.getStyles",
  "schemas": {
    "input": {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    },
    "output": {
      "type": "object",
      "properties": {
        "explicitDefaultStyleId": {
          "type": [
            "string",
            "null"
          ]
        },
        "effectiveDefaultStyleId": {
          "type": [
            "string",
            "null"
          ]
        },
        "effectiveDefaultSource": {
          "type": "string"
        },
        "styles": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "name": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "basedOn": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "isDefault": {
                "type": "boolean"
              },
              "isCustom": {
                "type": "boolean"
              },
              "uiPriority": {
                "type": [
                  "integer",
                  "null"
                ]
              },
              "hidden": {
                "type": "boolean"
              },
              "quickFormat": {
                "type": "boolean"
              },
              "conditionalRegions": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            },
            "additionalProperties": false,
            "required": [
              "id",
              "name",
              "basedOn",
              "isDefault",
              "isCustom",
              "uiPriority",
              "hidden",
              "quickFormat",
              "conditionalRegions"
            ]
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "explicitDefaultStyleId",
        "effectiveDefaultStyleId",
        "effectiveDefaultSource",
        "styles"
      ]
    }
  }
}
