{
"id": "com.imlunahey.guestbook.entry",
"defs": {
"main": {
"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."
}
}
}
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"description": "A signed guestbook entry left on another actor's guestbook marker. The entry record lives on the author's own PDS; the marker it references is owned by the site operator."
}