# place.stream.vod.draftDefs

> 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.draftDefs)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.draftDefs/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.draftDefs/examples)

## Definitions

### `place.stream.vod.draftDefs#draftView`

**Type**: `object`

A draft VOD with its ats:// URI and CID, for list/get responses.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` | Yes | CID (sha256 of CBOR record bytes, base32) of the draft record. |
| `uri` | `string` | Yes | The ats:// URI of the draft record. |
| `record` | `unknown` | Yes | The place.stream.vod.draftVideo record body. Typed as unknown (matching commentView/livestreamView/videoView) because the @atproto/api client validator cannot validate a ref to a record-type lexicon. |

## Raw Schema

```json
{
  "id": "place.stream.vod.draftDefs",
  "defs": {
    "draftView": {
      "type": "object",
      "required": [
        "uri",
        "cid",
        "record"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "description": "CID (sha256 of CBOR record bytes, base32) of the draft record."
        },
        "uri": {
          "type": "string",
          "description": "The ats:// URI of the draft record."
        },
        "record": {
          "type": "unknown",
          "description": "The place.stream.vod.draftVideo record body. Typed as unknown (matching commentView/livestreamView/videoView) because the @atproto/api client validator cannot validate a ref to a record-type lexicon."
        }
      },
      "description": "A draft VOD with its ats:// URI and CID, for list/get responses."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
