# com.imlunahey.guestbook.entry

> Published by [imlunahey.com](https://lexicon.garden/identity/did:plc:k6acu4chiwkixvdedcmdgmal)

✓ This is the authoritative definition for this NSID.

## 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.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:k6acu4chiwkixvdedcmdgmal/com.imlunahey.guestbook.entry)
- [Documentation](https://lexicon.garden/lexicon/did:plc:k6acu4chiwkixvdedcmdgmal/com.imlunahey.guestbook.entry/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:k6acu4chiwkixvdedcmdgmal/com.imlunahey.guestbook.entry/examples)

## Definitions

### `com.imlunahey.guestbook.entry`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The visible entry body. Short prose, no markdown. |
| `langs` | `array` | No | BCP-47 tags describing the language(s) of `text`. |
| `replyTo` | `string` (at-uri) | No | Optional — AT-URI of another guestbook entry this one is threading under. |
| `subject` | `string` (at-uri) | Yes | AT-URI of the com.imlunahey.guestbook.marker record this entry is signing. |
| `createdAt` | `string` (datetime) | Yes | Client-supplied creation timestamp. UTC. |

## Raw Schema

```json
{
  "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."
}
```
