{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "operationId": "history.get",
  "schemas": {
    "input": {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    },
    "output": {
      "type": "object",
      "properties": {
        "undoDepth": {
          "type": "integer",
          "minimum": 0
        },
        "redoDepth": {
          "type": "integer",
          "minimum": 0
        },
        "canUndo": {
          "type": "boolean"
        },
        "canRedo": {
          "type": "boolean"
        },
        "historyUnsafeOperations": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false,
      "required": [
        "undoDepth",
        "redoDepth",
        "canUndo",
        "canRedo",
        "historyUnsafeOperations"
      ]
    }
  }
}
