{
"id": "me.wilb.kasta.pointer",
"defs": {
"main": {
"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."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}