# wiki.lichen.note

> Published by [lichen.wiki](https://lexicon.garden/identity/did:plc:xfs42pjf3n7imvgrdrp7xvez)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xfs42pjf3n7imvgrdrp7xvez/wiki.lichen.note)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xfs42pjf3n7imvgrdrp7xvez/wiki.lichen.note/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xfs42pjf3n7imvgrdrp7xvez/wiki.lichen.note/examples)

## Definitions

### `wiki.lichen.note`

**Type**: `record`

A note within a wiki. The rkey is a TID. Human-readable slug lives in the record body.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `slug` | `string` | Yes | Permanent human-readable identifier, used in URLs. Never changes once set. |
| `title` | `string` | Yes | Display name for the note. Can be updated freely. |
| `wikiRef` | `string` (at-uri) | Yes | AT-URI of the parent wiki record. |
| `createdAt` | `string` (datetime) | Yes | When the note was created. |

## Raw Schema

```json
{
  "id": "wiki.lichen.note",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "slug",
          "title",
          "wikiRef",
          "createdAt"
        ],
        "properties": {
          "slug": {
            "type": "string",
            "maxLength": 2560,
            "description": "Permanent human-readable identifier, used in URLs. Never changes once set.",
            "maxGraphemes": 256
          },
          "title": {
            "type": "string",
            "maxLength": 2560,
            "description": "Display name for the note. Can be updated freely.",
            "maxGraphemes": 256
          },
          "wikiRef": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the parent wiki record."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the note was created."
          }
        }
      },
      "description": "A note within a wiki. The rkey is a TID. Human-readable slug lives in the record body."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
