A label applied to a log entry.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this label was originally applied.
subject
ref
com.atproto.repo.strongRef
Required
The entry being labeled.
text
string
Required
The label text.
maxLength: 320 bytesmaxGraphemes: 32 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 320,
"description": "The label text.",
"maxGraphemes": 32
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The entry being labeled."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this label was originally applied."
}
}
},
"description": "A label applied to a log entry."
}