place.stream.media.origin

did:web:stream.place

Documentation

An attestation that a MUXL blob is available for download from the publishing node, retrievable via XRPC (com.atproto.repo.getBlob and similar). Published by the Streamplace node that hosts the blob, not by the user who owns the underlying video. The rkey is conventionally the blob's BDASL CID — atproto lexicon doesn't yet have a literal-rkey syntax so we settle for `key: any` and rely on the convention.

main record

An attestation that a MUXL blob is available for download from the publishing node, retrievable via XRPC (com.atproto.repo.getBlob and similar). Published by the Streamplace node that hosts the blob, not by the user who owns the underlying video. The rkey is conventionally the blob's BDASL CID — atproto lexicon doesn't yet have a literal-rkey syntax so we settle for `key: any` and rely on the convention.

Record Key any Any valid record key

Properties

blob string Required

BLAKE-3 content hash (BDASL CID) of the blob.

mimeType string Required

MIME type of the blob (e.g. video/mp4).

size integer Required

Size of the blob in bytes.

View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "blob",
      "size",
      "mimeType"
    ],
    "properties": {
      "blob": {
        "type": "string",
        "description": "BLAKE-3 content hash (BDASL CID) of the blob."
      },
      "size": {
        "type": "integer",
        "description": "Size of the blob in bytes."
      },
      "mimeType": {
        "type": "string",
        "description": "MIME type of the blob (e.g. video/mp4)."
      }
    }
  },
  "description": "An attestation that a MUXL blob is available for download from the publishing node, retrievable via XRPC (com.atproto.repo.getBlob and similar). Published by the Streamplace node that hosts the blob, not by the user who owns the underlying video. The rkey is conventionally the blob's BDASL CID — atproto lexicon doesn't yet have a literal-rkey syntax so we settle for `key: any` and rely on the convention."
}

Lexicon Garden

@