# is.danny.scrapbook.note

> Published by [danny.is](https://lexicon.garden/identity/did:plc:aes3lokiqtv63fk62nwnjeuf)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:aes3lokiqtv63fk62nwnjeuf/is.danny.scrapbook.note)
- [Documentation](https://lexicon.garden/lexicon/did:plc:aes3lokiqtv63fk62nwnjeuf/is.danny.scrapbook.note/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:aes3lokiqtv63fk62nwnjeuf/is.danny.scrapbook.note/examples)

## Definitions

### `is.danny.scrapbook.note`

**Type**: `record`

A private note, kept in a space rather than in the public repo.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The note itself. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "is.danny.scrapbook.note",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "description": "The note itself.",
            "maxGraphemes": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A private note, kept in a space rather than in the public repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
