A tile with a name and associated resource or bundle.
tid
Timestamp-based ID
Properties
aspectRatio
string
Optional
Declared aspect ratio for tile rendering.
1:1, 2:1, 3:1, 1:2, 1:3content
union
Required
The tile content, either a single resource or a bundle.
description
string
Optional
Optional rich text description of the tile.
maxLength: 3000 bytesfacets
array
of
ref
app.bsky.richtext.facet
Optional
Rich text facets for the description (links, mentions, hashtags).
icon
blob
Optional
Optional icon image for the tile.
maxSize: 1.0 MBinteractions
ref
#interactions
Optional
Declaration of the XRPC methods, collections, and services this tile interacts with.
loadingImage
blob
Optional
Optional loading screen image for the tile.
maxSize: 1.0 MBname
string
Required
The name of the tile.
params
array
of
ref
#param
Optional
Input parameters this tile accepts. When present, the tile runtime shows a configuration form for required parameters without defaults before loading the tile.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"content"
],
"properties": {
"icon": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1048576,
"description": "Optional icon image for the tile."
},
"name": {
"type": "string",
"description": "The name of the tile."
},
"facets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
},
"description": "Rich text facets for the description (links, mentions, hashtags)."
},
"params": {
"type": "array",
"items": {
"ref": "#param",
"type": "ref"
},
"description": "Input parameters this tile accepts. When present, the tile runtime shows a configuration form for required parameters without defaults before loading the tile."
},
"content": {
"refs": [
"garden.lexicon.exultant-zebra.masl#resource",
"garden.lexicon.exultant-zebra.masl#main"
],
"type": "union",
"description": "The tile content, either a single resource or a bundle."
},
"aspectRatio": {
"type": "string",
"description": "Declared aspect ratio for tile rendering.",
"knownValues": [
"1:1",
"2:1",
"3:1",
"1:2",
"1:3"
]
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Optional rich text description of the tile."
},
"interactions": {
"ref": "#interactions",
"type": "ref",
"description": "Declaration of the XRPC methods, collections, and services this tile interacts with."
},
"loadingImage": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1048576,
"description": "Optional loading screen image for the tile."
}
}
},
"description": "A tile with a name and associated resource or bundle."
}