# com.natespilman.guestbook.entry

> Published by [natespilman.at](https://lexicon.garden/identity/did:plc:c7frv4rcitff3p2nh7of5bcv)

## Description

An entry signed in Nate's guestbook.

## Links

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

## Definitions

### `com.natespilman.guestbook.entry`

**Type**: `record`

A signed guestbook entry.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The message left in the guestbook. |
| `subject` | `string` (did) | Yes | The DID of the person whose guestbook this entry is signed for. |
| `createdAt` | `string` (datetime) | Yes | When the entry was signed. |

## Raw Schema

```json
{
  "id": "com.natespilman.guestbook.entry",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 2000,
            "description": "The message left in the guestbook.",
            "maxGraphemes": 500
          },
          "subject": {
            "type": "string",
            "format": "did",
            "description": "The DID of the person whose guestbook this entry is signed for."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the entry was signed."
          }
        }
      },
      "description": "A signed guestbook entry."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "An entry signed in Nate's guestbook."
}
```
