# fields.get

> Get detailed information about a specific field.



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

## Expected result

Returns a FieldInfo object with the field's instruction, result text, and nesting data.

## Input schema

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "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 schema

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

## Pre-apply throws

- `TARGET_NOT_FOUND`
- `CAPABILITY_UNAVAILABLE`

## Non-applied receipt codes

- None

