place.stream.vod.draftDefs

did:web:stream.place

Documentation

draftView object

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

Properties

cid string Required

CID (sha256 of CBOR record bytes, base32) of the draft record.

record unknown Required

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.

uri string Required

The ats:// URI of the draft record.

View raw schema
{
  "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."
}

Lexicon Garden

@