# social.twinkl.guestbook.post

> Published by [kandake.africa](https://lexicon.garden/identity/did:plc:lrphxvv25aibthe7xoc2eeyy)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/social.twinkl.guestbook.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/social.twinkl.guestbook.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/social.twinkl.guestbook.post/examples)

## Definitions

### `social.twinkl.guestbook.post`

**Type**: `record`

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.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `page` | `string` | No | Optional owner sub-page identifier this entry is signing; absent means the main page. |
| `text` | `string` | Yes | The guestbook message. |
| `subject` | `string` (did) | Yes | DID of the page owner whose guestbook this entry is signing. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "social.twinkl.guestbook.post",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
