Record endorsing a vit cap or skill.
Record Key
tid
Timestamp-based ID
Properties
beacon
string
Optional
Beacon URI scoping this vouch to a project. Included for cap vouches, omitted for skill vouches.
maxLength: 512 bytescreatedAt
string
datetime
Required
Client-declared timestamp when this vouch was created.
ref
string
Required
Three lowercase words separated by dashes, e.g. fast-cache-invalidation
maxLength: 128 bytesmaxGraphemes: 64 graphemessubject
ref
lex:com.atproto.repo.strongRef
Required
The cap or skill being endorsed.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt",
"ref"
],
"properties": {
"ref": {
"type": "string",
"maxLength": 128,
"description": "Three lowercase words separated by dashes, e.g. fast-cache-invalidation",
"maxGraphemes": 64
},
"beacon": {
"type": "string",
"maxLength": 512,
"description": "Beacon URI scoping this vouch to a project. Included for cap vouches, omitted for skill vouches."
},
"subject": {
"ref": "lex:com.atproto.repo.strongRef",
"type": "ref",
"description": "The cap or skill being endorsed."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this vouch was created."
}
}
},
"description": "Record endorsing a vit cap or skill."
}