{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "operationId": "fields.get",
  "schemas": {
    "input": {
      "type": "object",
      "properties": {
        "target": {
          "type": "object",
          "properties": {
            "kind": {
              "const": "field"
            },
            "blockId": {
              "type": "string"
            },
            "occurrenceIndex": {
              "type": "integer"
            },
            "nestingDepth": {
              "type": "integer"
            },
            "storyId": {
              "type": "string"
            },
            "fieldId": {
              "type": "string"
            }
          },
          "additionalProperties": false,
          "required": [
            "kind",
            "blockId",
            "occurrenceIndex"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "target"
      ]
    },
    "output": {
      "type": "object"
    }
  }
}
