# blue.flashes.story.post

> Published by [flashes.blue](https://lexicon.garden/identity/did:plc:24kqkpfy6z7avtgu3qg57vvl)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:24kqkpfy6z7avtgu3qg57vvl/blue.flashes.story.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:24kqkpfy6z7avtgu3qg57vvl/blue.flashes.story.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:24kqkpfy6z7avtgu3qg57vvl/blue.flashes.story.post/examples)

## Definitions

### `blue.flashes.story.post`

**Type**: `record`

A story record for the Flashes app - ephemeral content that expires after a specified duration

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | No | Optional text overlay on the story |
| `image` | `blob` | Yes |  |
| `facets` | `array` | No | Rich text facets for mentions, links, and tags |
| `createdAt` | `string` (datetime) | Yes |  |
| `expiresInMinutes` | `integer` | No | Number of minutes until this story expires (default: 24 hours) |

## Raw Schema

```json
{
  "id": "blue.flashes.story.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "image",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 2000,
            "description": "Optional text overlay on the story"
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/jpeg",
              "image/png",
              "image/webp"
            ],
            "maxSize": 10485760
          },
          "facets": {
            "type": "array",
            "items": {
              "ref": "app.bsky.richtext.facet",
              "type": "ref"
            },
            "description": "Rich text facets for mentions, links, and tags"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "expiresInMinutes": {
            "type": "integer",
            "default": 1440,
            "maximum": 10080,
            "minimum": 1,
            "description": "Number of minutes until this story expires (default: 24 hours)"
          }
        }
      },
      "description": "A story record for the Flashes app - ephemeral content that expires after a specified duration"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
