place.stream.defs
Lexicon Version: 1
Definitions
Section titled “Definitions”blockView
Section titled “blockView”Type: object
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
uri | string | ✅ | Format: at-uri | |
cid | string | ✅ | Format: cid | |
blocker | app.bsky.actor.defs#profileViewBasic | ✅ | ||
record | app.bsky.graph.block | ✅ | ||
indexedAt | string | ✅ | Format: datetime |
renditions
Section titled “renditions”Type: object
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
renditions | Array of #rendition | ✅ |
rendition
Section titled “rendition”Type: object
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
name | string | ✅ |
activityGame
Section titled “activityGame”Type: object
A game from the gamesgamesgamesgames catalog, identified by its AT URI.
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
uri | string | ✅ | Format: at-uri | |
name | string | ❌ | Cached display name of the game. |
activityLabel
Section titled “activityLabel”Type: object
A non-game activity with a well-known label.
Properties:
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
label | string | ✅ | Known Values: events, just_chatting, music, art, software_dev, cooking, miniatures, makers_crafting, fitness, sports |
Lexicon Source
Section titled “Lexicon Source”{ "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" } } }, "activityGame": { "type": "object", "description": "A game from the gamesgamesgamesgames catalog, identified by its AT URI.", "required": ["uri"], "properties": { "uri": { "type": "string", "format": "at-uri" }, "name": { "type": "string", "description": "Cached display name of the game." } } }, "activityLabel": { "type": "object", "description": "A non-game activity with a well-known label.", "required": ["label"], "properties": { "label": { "type": "string", "knownValues": [ "events", "just_chatting", "music", "art", "software_dev", "cooking", "miniatures", "makers_crafting", "fitness", "sports" ] } } } }}