# at.noted.note

> Published by [noted.at](https://lexicon.garden/identity/did:plc:2aa6fahtis66ymq7rd2yxdwu)

✓ This is the authoritative definition for this NSID.

## Description

A brief note

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.note)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.note/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.note/examples)

## Definitions

### `at.noted.note`

**Type**: `record`

Record representing a single note

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | Yes |  |
| `title` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "at.noted.note",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "body",
          "createdAt"
        ],
        "properties": {
          "body": {
            "type": "string",
            "maxLength": 5000
          },
          "title": {
            "type": "string",
            "maxLength": 500
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record representing a single note"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A brief note"
}
```
