# place.stream.vod.getDraft

> Published by [did:web:stream.place](https://lexicon.garden/identity/did:web:stream.place)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.getDraft)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.getDraft/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.getDraft/examples)

## Definitions

### `place.stream.vod.getDraft`

**Type**: `query`

Get a single draft VOD by its ats:// URI. Only accessible by the draft's author.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` | Yes | The ats:// URI of the draft record. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `draft` | `ref` → `place.stream.vod.draftDefs#draftView` | Yes |  |

#### Errors

- **NotFound**: No draft exists with the given URI for the authenticated user.

## Raw Schema

```json
{
  "id": "place.stream.vod.getDraft",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "NotFound",
          "description": "No draft exists with the given URI for the authenticated user."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "draft"
          ],
          "properties": {
            "draft": {
              "ref": "place.stream.vod.draftDefs#draftView",
              "type": "ref"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "uri"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "description": "The ats:// URI of the draft record."
          }
        }
      },
      "description": "Get a single draft VOD by its ats:// URI. Only accessible by the draft's author."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
