Record representing a single honor or award.
Record Key
tid
Timestamp-based ID
Properties
awardedAt
string
datetime
Optional
Date the honor was awarded.
createdAt
string
datetime
Required
Client-declared timestamp when this record was originally created.
description
string
Optional
Description of the honor or award.
maxLength: 50000 bytesmaxGraphemes: 5000 graphemesissuer
string
Optional
Organization or entity that granted the honor.
maxLength: 1000 bytesmaxGraphemes: 100 graphemesissuerDid
string
did
Optional
DID of the issuing entity's ATproto account, if one exists.
title
string
Required
Honor or award title.
maxLength: 2000 bytesminLength: 1 bytesmaxGraphemes: 200 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 2000,
"minLength": 1,
"description": "Honor or award title.",
"maxGraphemes": 200
},
"issuer": {
"type": "string",
"maxLength": 1000,
"description": "Organization or entity that granted the honor.",
"maxGraphemes": 100
},
"awardedAt": {
"type": "string",
"format": "datetime",
"description": "Date the honor was awarded."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was originally created."
},
"issuerDid": {
"type": "string",
"format": "did",
"description": "DID of the issuing entity's ATproto account, if one exists."
},
"description": {
"type": "string",
"maxLength": 50000,
"description": "Description of the honor or award.",
"maxGraphemes": 5000
}
}
},
"description": "Record representing a single honor or award."
}