{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "operationId": "protection.setEditingRestriction",
  "schemas": {
    "input": {
      "type": "object",
      "properties": {
        "mode": {
          "type": "string",
          "enum": [
            "readOnly"
          ]
        },
        "formattingRestricted": {
          "type": "boolean"
        }
      },
      "additionalProperties": false,
      "required": [
        "mode"
      ]
    },
    "output": {
      "type": "object"
    },
    "success": {
      "type": "object"
    },
    "failure": {
      "type": "object"
    }
  }
}
