# tech.tokimeki.takibi.spark

> Published by [tokimeki.blue](https://lexicon.garden/identity/did:plc:4tr5dqti7nmu6g2czpthntak)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.takibi.spark)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.takibi.spark/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.takibi.spark/examples)

## Definitions

### `tech.tokimeki.takibi.spark`

**Type**: `record`

A spark record - throwing a short message into the fire. Something you like or words that cheer you up.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | Short text (up to 30 graphemes) |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "tech.tokimeki.takibi.spark",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 100,
            "description": "Short text (up to 30 graphemes)",
            "maxGraphemes": 30
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A spark record - throwing a short message into the fire. Something you like or words that cheer you up."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
