Cache lifetime and invalidation tags returned by XRPC components.
Properties
How frequently the underlying data changes
maxLength: 32 bytes
Known values: seconds, minutes, hours, max
Data dependencies for cache invalidation
View raw schema
{
"type": "object",
"properties": {
"life": {
"type": "string",
"maxLength": 32,
"description": "How frequently the underlying data changes",
"knownValues": [
"seconds",
"minutes",
"hours",
"max"
]
},
"tags": {
"type": "array",
"items": {
"refs": [
"#tagRecord",
"#tagLink"
],
"type": "union"
},
"description": "Data dependencies for cache invalidation"
}
},
"description": "Cache lifetime and invalidation tags returned by XRPC components."
}
A renderable Inlay element.
Properties
Stable key that identifies the component among its siblings.
maxLength: 256 bytes
Properties to pass to the component.
NSID of the component to render.
View raw schema
{
"type": "object",
"required": [
"type"
],
"properties": {
"key": {
"type": "string",
"maxLength": 256,
"description": "Stable key that identifies the component among its siblings."
},
"type": {
"type": "string",
"format": "nsid",
"description": "NSID of the component to render."
},
"props": {
"type": "unknown",
"description": "Properties to pass to the component."
}
},
"description": "A renderable Inlay element."
}
Standard response from a component render call.
Properties
Cache lifetime and invalidation tags
View raw schema
{
"type": "object",
"required": [
"node",
"cache"
],
"properties": {
"node": {
"ref": "#element",
"type": "ref",
"description": "Rendered element tree"
},
"cache": {
"ref": "#cachePolicy",
"type": "ref",
"description": "Cache lifetime and invalidation tags"
}
},
"description": "Standard response from a component render call."
}
Cache tag: depend on backlink relationships to a subject.
Properties
Collection NSID of the linking records. Omit for any collection.
Subject AT URI that is linked to
View raw schema
{
"type": "object",
"required": [
"subject"
],
"properties": {
"from": {
"type": "string",
"format": "nsid",
"description": "Collection NSID of the linking records. Omit for any collection."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "Subject AT URI that is linked to"
}
},
"description": "Cache tag: depend on backlink relationships to a subject."
}
Cache tag: depend on a specific record, collection, or identity.
Properties
AT URI at record, collection, or identity granularity
View raw schema
{
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT URI at record, collection, or identity granularity"
}
},
"description": "Cache tag: depend on a specific record, collection, or identity."
}
No description available.
Properties
Val Town val UUID
maxLength: 128 bytes
View raw schema
{
"type": "object",
"required": [
"valId"
],
"properties": {
"valId": {
"type": "string",
"maxLength": 128,
"description": "Val Town val UUID"
}
}
}