# capabilities.get

> Query runtime capabilities supported by the current document engine.



- Member path: `doc.capabilities()`
- Mutates document: no
- Idempotency: `idempotent`
- Supports tracked mode: no
- Supports dry run: no

## Expected result

Returns a DocumentApiCapabilities object describing supported features of the current engine.

## Input schema

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
```

## Output schema

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "type": "object",
  "properties": {
    "global": {
      "type": "object",
      "properties": {
        "trackChanges": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "enabled"
          ]
        },
        "comments": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "enabled"
          ]
        },
        "lists": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "enabled"
          ]
        },
        "dryRun": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "enabled"
          ]
        },
        "history": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "enabled"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "trackChanges",
        "comments",
        "lists",
        "dryRun",
        "history"
      ]
    },
    "format": {
      "type": "object",
      "properties": {
        "supportedInlineProperties": {
          "type": "object",
          "properties": {
            "bold": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "italic": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "strike": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "underline": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "highlight": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "color": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "fontSize": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "fontFamily": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "letterSpacing": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "vertAlign": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "position": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "dstrike": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "smallCaps": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "caps": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "shading": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "border": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "outline": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "shadow": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "emboss": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "imprint": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "charScale": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "kerning": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "vanish": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "webHidden": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "specVanish": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "rtl": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "cs": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "bCs": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "iCs": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "eastAsianLayout": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "em": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "fitText": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "snapToGrid": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "lang": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "oMath": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "rStyle": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "rFonts": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "fontSizeCs": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "ligatures": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "numForm": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "numSpacing": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "stylisticSets": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            },
            "contextualAlternates": {
              "type": "object",
              "properties": {
                "available": {
                  "type": "boolean"
                },
                "tracked": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "boolean",
                    "string",
                    "number",
                    "object",
                    "array"
                  ]
                },
                "storage": {
                  "enum": [
                    "mark",
                    "runAttribute"
                  ]
                }
              },
              "additionalProperties": false,
              "required": [
                "available",
                "tracked",
                "type",
                "storage"
              ]
            }
          },
          "additionalProperties": false,
          "required": [
            "bold",
            "italic",
            "strike",
            "underline",
            "highlight",
            "color",
            "fontSize",
            "fontFamily",
            "letterSpacing",
            "vertAlign",
            "position",
            "dstrike",
            "smallCaps",
            "caps",
            "shading",
            "border",
            "outline",
            "shadow",
            "emboss",
            "imprint",
            "charScale",
            "kerning",
            "vanish",
            "webHidden",
            "specVanish",
            "rtl",
            "cs",
            "bCs",
            "iCs",
            "eastAsianLayout",
            "em",
            "fitText",
            "snapToGrid",
            "lang",
            "oMath",
            "rStyle",
            "rFonts",
            "fontSizeCs",
            "ligatures",
            "numForm",
            "numSpacing",
            "stylisticSets",
            "contextualAlternates"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "supportedInlineProperties"
      ]
    },
    "operations": {
      "type": "object",
      "properties": {
        "get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "find": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "getNode": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "getNodeById": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "getText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "getMarkdown": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "getHtml": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "projectMarkdown": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "projectHtml": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "markdownToFragment": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "htmlToFragment": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "info": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "extract": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "clearContent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "replace": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "delete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "formatRange": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "blocks.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "blocks.delete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "blocks.deleteRange": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "blocks.split": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "blocks.merge": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "blocks.move": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.apply": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.bold": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.italic": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.strike": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.underline": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.highlight": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.color": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.fontSize": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.fontFamily": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.letterSpacing": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.vertAlign": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.position": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.dstrike": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.smallCaps": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.caps": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.shading": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.border": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.outline": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.shadow": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.emboss": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.imprint": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.charScale": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.kerning": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.vanish": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.webHidden": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.specVanish": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.rtl": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.cs": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.bCs": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.iCs": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.eastAsianLayout": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.em": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.fitText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.snapToGrid": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.lang": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.oMath": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.rStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.rFonts": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.fontSizeCs": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.ligatures": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.numForm": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.numSpacing": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.stylisticSets": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.contextualAlternates": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "styles.apply": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "styles.getCatalog": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "templates.apply": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "create.paragraph": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "create.heading": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "create.sectionBreak": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setBreakType": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setPageMargins": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setHeaderFooterMargins": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setPageSetup": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setColumns": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setLineNumbering": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setPageNumbering": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setTitlePage": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setOddEvenHeadersFooters": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setVerticalAlign": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setSectionDirection": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setHeaderFooterRef": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.clearHeaderFooterRef": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setLinkToPrevious": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.setPageBorders": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "sections.clearPageBorders": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "styles.paragraph.setStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "styles.paragraph.setStyleRef": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "styles.paragraph.clearStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.resetDirectFormatting": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setAlignment": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.clearAlignment": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setIndentation": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.clearIndentation": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setSpacing": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.clearSpacing": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setKeepOptions": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setOutlineLevel": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setFlowOptions": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setTabStop": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.clearTabStop": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.clearAllTabStops": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setBorder": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.clearBorder": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setShading": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.clearShading": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setMarkRunProps": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setDirection": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.clearDirection": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "format.paragraph.setNumbering": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.create": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.attach": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.detach": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.delete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.indent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.outdent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.join": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.canJoin": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.separate": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.merge": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.split": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevel": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setValue": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.continuePrevious": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.canContinuePrevious": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelRestart": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.convertToText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.applyTemplate": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.applyPreset": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setType": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.captureTemplate": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelNumbering": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelBullet": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelPictureBullet": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelAlignment": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelIndents": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelTrailingCharacter": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelMarkerFont": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.clearLevelOverrides": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.getStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.applyStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.restartAt": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelNumberStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelStart": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.setLevelLayout": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.getState": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.apply": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.continue": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.restart": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "lists.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "comments.create": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "comments.patch": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "comments.delete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "comments.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "comments.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "trackChanges.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "trackChanges.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "trackChanges.decide": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "query.match": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "ranges.resolve": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "selection.current": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "mutations.preview": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "mutations.apply": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "plan.execute": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "capabilities.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "capabilities.check": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "create.table": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.convertFromText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.delete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.clearContents": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.move": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.split": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.convertToText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setLayout": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.insertRow": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.deleteRow": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.moveRow": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setRowHeight": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.distributeRows": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setRowOptions": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.insertColumn": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.deleteColumn": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setColumnWidth": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.distributeColumns": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.insertCell": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.deleteCell": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.mergeCells": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.unmergeCells": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.splitCell": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setCellProperties": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setCellText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.sort": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setAltText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.clearStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setStyleOption": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setBorder": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.clearBorder": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.applyBorderPreset": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setShading": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.clearShading": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setTablePadding": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setCellPadding": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setCellSpacing": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.clearCellSpacing": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.applyStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setBorders": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setTableOptions": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.applyPreset": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.getCells": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.getProperties": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.getStyles": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.setDefaultStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "tables.clearDefaultStyle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "create.tableOfContents": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.configure": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.update": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.markEntry": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.unmarkEntry": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.listEntries": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.getEntry": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "toc.editEntry": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "history.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "history.undo": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "history.redo": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "create.image": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.delete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.move": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.convertToInline": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.convertToFloating": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setSize": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setWrapType": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setWrapSide": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setWrapDistances": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setPosition": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setAnchorOptions": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setZOrder": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.scale": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setLockAspectRatio": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.rotate": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.flip": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.crop": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.resetCrop": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.replaceSource": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setAltText": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setDecorative": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setName": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.setHyperlink": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.insertCaption": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.updateCaption": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "images.removeCaption": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "hyperlinks.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "hyperlinks.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "hyperlinks.wrap": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "hyperlinks.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "hyperlinks.patch": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "hyperlinks.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.resolve": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.refs.set": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.refs.clear": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.refs.setLinkedToPrevious": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.parts.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.parts.create": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "headerFooters.parts.delete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "create.contentControl": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.listInRange": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.selectByTag": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.selectByTitle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.listChildren": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.getParent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.wrap": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.unwrap": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.delete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.copy": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.move": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.patch": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.setLockMode": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.setType": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.getContent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.replaceContent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.clearContent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.appendContent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.prependContent": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.insertBefore": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.insertAfter": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.getBinding": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.setBinding": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.clearBinding": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.getRawProperties": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.patchRawProperties": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.validateWordCompatibility": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.normalizeWordCompatibility": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.normalizeTagPayload": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.text.setMultiline": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.text.setValue": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.text.clearValue": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.date.setValue": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.date.clearValue": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.date.setDisplayFormat": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.date.setDisplayLocale": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.date.setStorageFormat": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.date.setCalendar": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.checkbox.getState": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.checkbox.setState": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.checkbox.toggle": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.checkbox.setSymbolPair": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.choiceList.getItems": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.choiceList.setItems": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.choiceList.setSelected": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.repeatingSection.listItems": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.repeatingSection.insertItemBefore": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.repeatingSection.insertItemAfter": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.repeatingSection.cloneItem": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.repeatingSection.deleteItem": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.repeatingSection.setAllowInsertDelete": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.group.wrap": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "contentControls.group.ungroup": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "bookmarks.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "bookmarks.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "bookmarks.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "bookmarks.rename": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "bookmarks.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "footnotes.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "footnotes.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "footnotes.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "footnotes.update": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "footnotes.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "footnotes.configure": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "clipboard.parse": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "clipboard.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "clipboard.serializeSelection": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "crossRefs.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "crossRefs.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "crossRefs.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "crossRefs.rebuild": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "crossRefs.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.configure": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.rebuild": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.entries.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.entries.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.entries.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.entries.update": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "index.entries.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "captions.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "captions.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "captions.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "captions.update": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "captions.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "captions.configure": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "fields.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "fields.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "fields.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "fields.rebuild": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "fields.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.update": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.sources.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.sources.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.sources.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.sources.update": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.sources.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.bibliography.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.bibliography.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.bibliography.rebuild": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.bibliography.configure": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "citations.bibliography.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.configure": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.rebuild": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.entries.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.entries.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.entries.insert": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.entries.update": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "authorities.entries.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "diff.capture": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "diff.compare": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "diff.apply": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "export.toDocx": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "protection.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "protection.setEditingRestriction": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "protection.clearEditingRestriction": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "permissionRanges.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "permissionRanges.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "permissionRanges.create": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "permissionRanges.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "permissionRanges.updatePrincipal": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "customXml.parts.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "customXml.parts.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "customXml.parts.create": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "customXml.parts.patch": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "customXml.parts.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "metadata.attach": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "metadata.list": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "metadata.get": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "metadata.update": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "metadata.remove": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        },
        "metadata.resolve": {
          "type": "object",
          "properties": {
            "available": {
              "type": "boolean"
            },
            "tracked": {
              "type": "boolean"
            },
            "dryRun": {
              "type": "boolean"
            },
            "reasons": {
              "type": "array",
              "items": {
                "enum": [
                  "COMMAND_UNAVAILABLE",
                  "HELPER_UNAVAILABLE",
                  "OPERATION_UNAVAILABLE",
                  "TRACKED_MODE_UNAVAILABLE",
                  "DRY_RUN_UNAVAILABLE",
                  "NAMESPACE_UNAVAILABLE",
                  "STYLES_PART_MISSING",
                  "COLLABORATION_ACTIVE"
                ]
              }
            }
          },
          "additionalProperties": false,
          "required": [
            "available",
            "tracked",
            "dryRun"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "get",
        "find",
        "getNode",
        "getNodeById",
        "getText",
        "getMarkdown",
        "getHtml",
        "projectMarkdown",
        "projectHtml",
        "markdownToFragment",
        "htmlToFragment",
        "info",
        "extract",
        "clearContent",
        "insert",
        "replace",
        "delete",
        "formatRange",
        "blocks.list",
        "blocks.delete",
        "blocks.deleteRange",
        "blocks.split",
        "blocks.merge",
        "blocks.move",
        "format.apply",
        "format.bold",
        "format.italic",
        "format.strike",
        "format.underline",
        "format.highlight",
        "format.color",
        "format.fontSize",
        "format.fontFamily",
        "format.letterSpacing",
        "format.vertAlign",
        "format.position",
        "format.dstrike",
        "format.smallCaps",
        "format.caps",
        "format.shading",
        "format.border",
        "format.outline",
        "format.shadow",
        "format.emboss",
        "format.imprint",
        "format.charScale",
        "format.kerning",
        "format.vanish",
        "format.webHidden",
        "format.specVanish",
        "format.rtl",
        "format.cs",
        "format.bCs",
        "format.iCs",
        "format.eastAsianLayout",
        "format.em",
        "format.fitText",
        "format.snapToGrid",
        "format.lang",
        "format.oMath",
        "format.rStyle",
        "format.rFonts",
        "format.fontSizeCs",
        "format.ligatures",
        "format.numForm",
        "format.numSpacing",
        "format.stylisticSets",
        "format.contextualAlternates",
        "styles.apply",
        "styles.getCatalog",
        "templates.apply",
        "create.paragraph",
        "create.heading",
        "create.sectionBreak",
        "sections.list",
        "sections.get",
        "sections.setBreakType",
        "sections.setPageMargins",
        "sections.setHeaderFooterMargins",
        "sections.setPageSetup",
        "sections.setColumns",
        "sections.setLineNumbering",
        "sections.setPageNumbering",
        "sections.setTitlePage",
        "sections.setOddEvenHeadersFooters",
        "sections.setVerticalAlign",
        "sections.setSectionDirection",
        "sections.setHeaderFooterRef",
        "sections.clearHeaderFooterRef",
        "sections.setLinkToPrevious",
        "sections.setPageBorders",
        "sections.clearPageBorders",
        "styles.paragraph.setStyle",
        "styles.paragraph.setStyleRef",
        "styles.paragraph.clearStyle",
        "format.paragraph.resetDirectFormatting",
        "format.paragraph.setAlignment",
        "format.paragraph.clearAlignment",
        "format.paragraph.setIndentation",
        "format.paragraph.clearIndentation",
        "format.paragraph.setSpacing",
        "format.paragraph.clearSpacing",
        "format.paragraph.setKeepOptions",
        "format.paragraph.setOutlineLevel",
        "format.paragraph.setFlowOptions",
        "format.paragraph.setTabStop",
        "format.paragraph.clearTabStop",
        "format.paragraph.clearAllTabStops",
        "format.paragraph.setBorder",
        "format.paragraph.clearBorder",
        "format.paragraph.setShading",
        "format.paragraph.clearShading",
        "format.paragraph.setMarkRunProps",
        "format.paragraph.setDirection",
        "format.paragraph.clearDirection",
        "format.paragraph.setNumbering",
        "lists.list",
        "lists.get",
        "lists.insert",
        "lists.create",
        "lists.attach",
        "lists.detach",
        "lists.delete",
        "lists.indent",
        "lists.outdent",
        "lists.join",
        "lists.canJoin",
        "lists.separate",
        "lists.merge",
        "lists.split",
        "lists.setLevel",
        "lists.setValue",
        "lists.continuePrevious",
        "lists.canContinuePrevious",
        "lists.setLevelRestart",
        "lists.convertToText",
        "lists.applyTemplate",
        "lists.applyPreset",
        "lists.setType",
        "lists.captureTemplate",
        "lists.setLevelNumbering",
        "lists.setLevelBullet",
        "lists.setLevelPictureBullet",
        "lists.setLevelAlignment",
        "lists.setLevelIndents",
        "lists.setLevelTrailingCharacter",
        "lists.setLevelMarkerFont",
        "lists.clearLevelOverrides",
        "lists.getStyle",
        "lists.applyStyle",
        "lists.restartAt",
        "lists.setLevelNumberStyle",
        "lists.setLevelText",
        "lists.setLevelStart",
        "lists.setLevelLayout",
        "lists.getState",
        "lists.apply",
        "lists.continue",
        "lists.restart",
        "lists.remove",
        "comments.create",
        "comments.patch",
        "comments.delete",
        "comments.get",
        "comments.list",
        "trackChanges.list",
        "trackChanges.get",
        "trackChanges.decide",
        "query.match",
        "ranges.resolve",
        "selection.current",
        "mutations.preview",
        "mutations.apply",
        "plan.execute",
        "capabilities.get",
        "capabilities.check",
        "create.table",
        "tables.convertFromText",
        "tables.delete",
        "tables.clearContents",
        "tables.move",
        "tables.split",
        "tables.convertToText",
        "tables.setLayout",
        "tables.insertRow",
        "tables.deleteRow",
        "tables.moveRow",
        "tables.setRowHeight",
        "tables.distributeRows",
        "tables.setRowOptions",
        "tables.insertColumn",
        "tables.deleteColumn",
        "tables.setColumnWidth",
        "tables.distributeColumns",
        "tables.insertCell",
        "tables.deleteCell",
        "tables.mergeCells",
        "tables.unmergeCells",
        "tables.splitCell",
        "tables.setCellProperties",
        "tables.setCellText",
        "tables.sort",
        "tables.setAltText",
        "tables.setStyle",
        "tables.clearStyle",
        "tables.setStyleOption",
        "tables.setBorder",
        "tables.clearBorder",
        "tables.applyBorderPreset",
        "tables.setShading",
        "tables.clearShading",
        "tables.setTablePadding",
        "tables.setCellPadding",
        "tables.setCellSpacing",
        "tables.clearCellSpacing",
        "tables.applyStyle",
        "tables.setBorders",
        "tables.setTableOptions",
        "tables.applyPreset",
        "tables.get",
        "tables.getCells",
        "tables.getProperties",
        "tables.getStyles",
        "tables.setDefaultStyle",
        "tables.clearDefaultStyle",
        "create.tableOfContents",
        "toc.list",
        "toc.get",
        "toc.configure",
        "toc.update",
        "toc.remove",
        "toc.markEntry",
        "toc.unmarkEntry",
        "toc.listEntries",
        "toc.getEntry",
        "toc.editEntry",
        "history.get",
        "history.undo",
        "history.redo",
        "create.image",
        "images.list",
        "images.get",
        "images.delete",
        "images.move",
        "images.convertToInline",
        "images.convertToFloating",
        "images.setSize",
        "images.setWrapType",
        "images.setWrapSide",
        "images.setWrapDistances",
        "images.setPosition",
        "images.setAnchorOptions",
        "images.setZOrder",
        "images.scale",
        "images.setLockAspectRatio",
        "images.rotate",
        "images.flip",
        "images.crop",
        "images.resetCrop",
        "images.replaceSource",
        "images.setAltText",
        "images.setDecorative",
        "images.setName",
        "images.setHyperlink",
        "images.insertCaption",
        "images.updateCaption",
        "images.removeCaption",
        "hyperlinks.list",
        "hyperlinks.get",
        "hyperlinks.wrap",
        "hyperlinks.insert",
        "hyperlinks.patch",
        "hyperlinks.remove",
        "headerFooters.list",
        "headerFooters.get",
        "headerFooters.resolve",
        "headerFooters.refs.set",
        "headerFooters.refs.clear",
        "headerFooters.refs.setLinkedToPrevious",
        "headerFooters.parts.list",
        "headerFooters.parts.create",
        "headerFooters.parts.delete",
        "create.contentControl",
        "contentControls.list",
        "contentControls.get",
        "contentControls.listInRange",
        "contentControls.selectByTag",
        "contentControls.selectByTitle",
        "contentControls.listChildren",
        "contentControls.getParent",
        "contentControls.wrap",
        "contentControls.unwrap",
        "contentControls.delete",
        "contentControls.copy",
        "contentControls.move",
        "contentControls.patch",
        "contentControls.setLockMode",
        "contentControls.setType",
        "contentControls.getContent",
        "contentControls.replaceContent",
        "contentControls.clearContent",
        "contentControls.appendContent",
        "contentControls.prependContent",
        "contentControls.insertBefore",
        "contentControls.insertAfter",
        "contentControls.getBinding",
        "contentControls.setBinding",
        "contentControls.clearBinding",
        "contentControls.getRawProperties",
        "contentControls.patchRawProperties",
        "contentControls.validateWordCompatibility",
        "contentControls.normalizeWordCompatibility",
        "contentControls.normalizeTagPayload",
        "contentControls.text.setMultiline",
        "contentControls.text.setValue",
        "contentControls.text.clearValue",
        "contentControls.date.setValue",
        "contentControls.date.clearValue",
        "contentControls.date.setDisplayFormat",
        "contentControls.date.setDisplayLocale",
        "contentControls.date.setStorageFormat",
        "contentControls.date.setCalendar",
        "contentControls.checkbox.getState",
        "contentControls.checkbox.setState",
        "contentControls.checkbox.toggle",
        "contentControls.checkbox.setSymbolPair",
        "contentControls.choiceList.getItems",
        "contentControls.choiceList.setItems",
        "contentControls.choiceList.setSelected",
        "contentControls.repeatingSection.listItems",
        "contentControls.repeatingSection.insertItemBefore",
        "contentControls.repeatingSection.insertItemAfter",
        "contentControls.repeatingSection.cloneItem",
        "contentControls.repeatingSection.deleteItem",
        "contentControls.repeatingSection.setAllowInsertDelete",
        "contentControls.group.wrap",
        "contentControls.group.ungroup",
        "bookmarks.list",
        "bookmarks.get",
        "bookmarks.insert",
        "bookmarks.rename",
        "bookmarks.remove",
        "footnotes.list",
        "footnotes.get",
        "footnotes.insert",
        "footnotes.update",
        "footnotes.remove",
        "footnotes.configure",
        "clipboard.parse",
        "clipboard.insert",
        "clipboard.serializeSelection",
        "crossRefs.list",
        "crossRefs.get",
        "crossRefs.insert",
        "crossRefs.rebuild",
        "crossRefs.remove",
        "index.list",
        "index.get",
        "index.insert",
        "index.configure",
        "index.rebuild",
        "index.remove",
        "index.entries.list",
        "index.entries.get",
        "index.entries.insert",
        "index.entries.update",
        "index.entries.remove",
        "captions.list",
        "captions.get",
        "captions.insert",
        "captions.update",
        "captions.remove",
        "captions.configure",
        "fields.list",
        "fields.get",
        "fields.insert",
        "fields.rebuild",
        "fields.remove",
        "citations.list",
        "citations.get",
        "citations.insert",
        "citations.update",
        "citations.remove",
        "citations.sources.list",
        "citations.sources.get",
        "citations.sources.insert",
        "citations.sources.update",
        "citations.sources.remove",
        "citations.bibliography.get",
        "citations.bibliography.insert",
        "citations.bibliography.rebuild",
        "citations.bibliography.configure",
        "citations.bibliography.remove",
        "authorities.list",
        "authorities.get",
        "authorities.insert",
        "authorities.configure",
        "authorities.rebuild",
        "authorities.remove",
        "authorities.entries.list",
        "authorities.entries.get",
        "authorities.entries.insert",
        "authorities.entries.update",
        "authorities.entries.remove",
        "diff.capture",
        "diff.compare",
        "diff.apply",
        "export.toDocx",
        "protection.get",
        "protection.setEditingRestriction",
        "protection.clearEditingRestriction",
        "permissionRanges.list",
        "permissionRanges.get",
        "permissionRanges.create",
        "permissionRanges.remove",
        "permissionRanges.updatePrincipal",
        "customXml.parts.list",
        "customXml.parts.get",
        "customXml.parts.create",
        "customXml.parts.patch",
        "customXml.parts.remove",
        "metadata.attach",
        "metadata.list",
        "metadata.get",
        "metadata.update",
        "metadata.remove",
        "metadata.resolve"
      ]
    },
    "planEngine": {
      "type": "object",
      "properties": {
        "supportedStepOps": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "supportedNonUniformStrategies": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "supportedSetMarks": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "regex": {
          "type": "object",
          "properties": {
            "maxPatternLength": {
              "type": "integer",
              "description": "Maximum allowed regex pattern length for text selectors."
            },
            "maxExecutionMs": {
              "type": "integer",
              "description": "Advisory regex execution budget in milliseconds. Not enforced at runtime: a synchronous RegExp cannot be interrupted, so engines guard with pre-execution static checks instead."
            }
          },
          "additionalProperties": false,
          "required": [
            "maxPatternLength"
          ],
          "description": "Regex selector limits enforced by the selector engine. Unsafe patterns are rejected."
        }
      },
      "additionalProperties": false,
      "required": [
        "supportedStepOps",
        "supportedNonUniformStrategies",
        "supportedSetMarks",
        "regex"
      ]
    }
  },
  "additionalProperties": false,
  "required": [
    "global",
    "format",
    "operations",
    "planEngine"
  ]
}
```

## Pre-apply throws

- None

## Non-applied receipt codes

- None

