A guestbook entry written to the commenter's own repo. The owner's guestbook is assembled from these records via backlink (constellation) lookups targeting the owner DID at path .subject.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
page
string
Optional
Optional owner sub-page identifier this entry is signing; absent means the main page.
subject
string
did
Required
DID of the page owner whose guestbook this entry is signing.
text
string
Required
The guestbook message.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"page": {
"type": "string",
"description": "Optional owner sub-page identifier this entry is signing; absent means the main page."
},
"text": {
"type": "string",
"maxLength": 3000,
"description": "The guestbook message.",
"maxGraphemes": 300
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the page owner whose guestbook this entry is signing."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A guestbook entry written to the commenter's own repo. The owner's guestbook is assembled from these records via backlink (constellation) lookups targeting the owner DID at path .subject."
}