No description available.
Record Key
literal:self
Fixed literal value
Properties
acceptsRepliesFrom
string
Optional
Hint to clients about who the operator intends to accept entries from. Not enforced by the protocol.
Known values:
anyone, followers, mutuals, noneDefault:
anyonecreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Optional context: who runs this guestbook, what you'd like people to say.
maxLength: 500 bytestitle
string
Required
Human-readable name shown in clients that render the marker (e.g. 'imlunahey.com guestbook').
maxLength: 120 bytesminLength: 1 bytesurl
string
uri
Required
Canonical URL visitors are expected to have arrived from.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"url",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL visitors are expected to have arrived from."
},
"title": {
"type": "string",
"maxLength": 120,
"minLength": 1,
"description": "Human-readable name shown in clients that render the marker (e.g. 'imlunahey.com guestbook')."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 500,
"description": "Optional context: who runs this guestbook, what you'd like people to say."
},
"acceptsRepliesFrom": {
"type": "string",
"default": "anyone",
"description": "Hint to clients about who the operator intends to accept entries from. Not enforced by the protocol.",
"knownValues": [
"anyone",
"followers",
"mutuals",
"none"
]
}
}
}
}