place.stream.vod.draftDefs
Lexicon Version: 1
Definitions
Section titled “Definitions”draftView
Section titled “draftView”Type: object
A draft VOD with its ats:// URI and CID, for list/get responses.
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
uri | string | ✅ | The ats:// URI of the draft record. | |
cid | string | ✅ | CID (sha256 of CBOR record bytes, base32) of the draft record. | |
record | unknown | ✅ | 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. |
Lexicon Source
Section titled “Lexicon Source”{ "lexicon": 1, "id": "place.stream.vod.draftDefs", "defs": { "draftView": { "type": "object", "description": "A draft VOD with its ats:// URI and CID, for list/get responses.", "required": ["uri", "cid", "record"], "properties": { "uri": { "type": "string", "description": "The ats:// URI of the draft record." }, "cid": { "type": "string", "description": "CID (sha256 of CBOR record bytes, base32) 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." } } } }}