Skip to content

place.stream.defs

Lexicon Version: 1

Type: object

Properties:

NameTypeReq’dDescriptionConstraints
uristringFormat: at-uri
cidstringFormat: cid
blockerapp.bsky.actor.defs#profileViewBasic
recordapp.bsky.graph.block
indexedAtstringFormat: datetime

Type: object

Properties:

NameTypeReq’dDescriptionConstraints
renditionsArray of #rendition

Type: object

Properties:

NameTypeReq’dDescriptionConstraints
namestring

{
"lexicon": 1,
"id": "place.stream.defs",
"defs": {
"blockView": {
"type": "object",
"required": ["uri", "cid", "blocker", "record", "indexedAt"],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"cid": {
"type": "string",
"format": "cid"
},
"blocker": {
"type": "ref",
"ref": "app.bsky.actor.defs#profileViewBasic"
},
"record": {
"type": "ref",
"ref": "app.bsky.graph.block"
},
"indexedAt": {
"type": "string",
"format": "datetime"
}
}
},
"renditions": {
"type": "object",
"required": ["renditions"],
"properties": {
"renditions": {
"type": "array",
"items": {
"type": "ref",
"ref": "#rendition"
}
}
}
},
"rendition": {
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string"
}
}
}
}
}