# me.byjp.pebble-index.note

> Published by [byjp.me](https://lexicon.garden/identity/did:plc:ephkzpinhaqcabtkugtbzrwu)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ephkzpinhaqcabtkugtbzrwu/me.byjp.pebble-index.note)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ephkzpinhaqcabtkugtbzrwu/me.byjp.pebble-index.note/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ephkzpinhaqcabtkugtbzrwu/me.byjp.pebble-index.note/examples)

## Definitions

### `me.byjp.pebble-index.note`

**Type**: `record`

A note captured by Pebble Index, stored in the user's private me.byjp.pebble-index.space space.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The note content (usually a transcription of a voice capture). |
| `createdAt` | `string` (datetime) | Yes |  |
| `recordedAt` | `string` (datetime) | No | When the source voice capture was made, if different from createdAt. |

## Raw Schema

```json
{
  "id": "me.byjp.pebble-index.note",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "description": "The note content (usually a transcription of a voice capture).",
            "maxGraphemes": 10000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "recordedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the source voice capture was made, if different from createdAt."
          }
        }
      },
      "description": "A note captured by Pebble Index, stored in the user's private me.byjp.pebble-index.space space."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
