Declares which code version is currently active for a kast. The rkey is the kast name, so there is exactly one pointer per kast name per user. Updating this record redeploys the kast without changing its URL.
any
Any valid record key
Properties
active
ref
com.atproto.repo.strongRef
Required
Strong reference to the currently active code record. May point to an me.wilb.code record today; future record types (e.g. me.wilb.project) are also valid targets.
name
string
Required
The kast name. Must mirror the record key (rkey). Used as the URL slug: kasta.app/{handle}/{name}.
maxLength: 128 bytesupdatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"active",
"updatedAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 128,
"description": "The kast name. Must mirror the record key (rkey). Used as the URL slug: kasta.app/{handle}/{name}."
},
"active": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the currently active code record. May point to an me.wilb.code record today; future record types (e.g. me.wilb.project) are also valid targets."
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Declares which code version is currently active for a kast. The rkey is the kast name, so there is exactly one pointer per kast name per user. Updating this record redeploys the kast without changing its URL."
}