# get

> Read the full document as an SDDocument structure.



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

## Expected result

Returns an SDDocument with body content projected into SDM/1 canonical shapes.

## Input schema

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

## Output schema

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "type": "object",
  "properties": {
    "modelVersion": {
      "const": "sdm/1"
    },
    "body": {
      "type": "array"
    }
  },
  "additionalProperties": false,
  "required": [
    "modelVersion",
    "body"
  ]
}
```

## Pre-apply throws

- None

## Non-applied receipt codes

- None

