{
"id": "com.imlunahey.guestbook.marker",
"defs": {
"main": {
"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"
]
}
}
}
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"description": "A marker record identifying a surface (a website, profile, project) that accepts com.imlunahey.guestbook.entry records. The marker lives on the operator's own PDS; entries reference it by AT-URI. Using `self` as the rkey means a single canonical guestbook per actor."
}