No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-supplied creation timestamp. UTC.
langs
array
of
string
language
Optional
BCP-47 tags describing the language(s) of `text`.
maxLength: 3 itemsreplyTo
string
at-uri
Optional
Optional — AT-URI of another guestbook entry this one is threading under.
subject
string
at-uri
Required
AT-URI of the com.imlunahey.guestbook.marker record this entry is signing.
text
string
Required
The visible entry body. Short prose, no markdown.
maxLength: 1000 bytesminLength: 1 bytesmaxGraphemes: 1000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"subject",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 1000,
"minLength": 1,
"description": "The visible entry body. Short prose, no markdown.",
"maxGraphemes": 1000
},
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 3,
"description": "BCP-47 tags describing the language(s) of `text`."
},
"replyTo": {
"type": "string",
"format": "at-uri",
"description": "Optional — AT-URI of another guestbook entry this one is threading under."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the com.imlunahey.guestbook.marker record this entry is signing."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-supplied creation timestamp. UTC."
}
}
}
}