# images.get

> Get details for a specific image by its stable ID.



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

## Expected result

Returns an ImageSummary with full image properties.

## Input schema

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

## Output schema

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

## Pre-apply throws

- `TARGET_NOT_FOUND`
- `AMBIGUOUS_TARGET`

## Non-applied receipt codes

- None

