# me.byjp.pebble-index.reminder

> 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.reminder)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ephkzpinhaqcabtkugtbzrwu/me.byjp.pebble-index.reminder/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ephkzpinhaqcabtkugtbzrwu/me.byjp.pebble-index.reminder/examples)

## Definitions

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

**Type**: `record`

A reminder 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 |  |
| `dueAt` | `string` (datetime) | No | When the reminder is due, if a time was recognised. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "me.byjp.pebble-index.reminder",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxGraphemes": 10000
          },
          "dueAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the reminder is due, if a time was recognised."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A reminder captured by Pebble Index, stored in the user's private me.byjp.pebble-index.space space."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
