# blue.flashes.feed.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.feed.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:24kqkpfy6z7avtgu3qg57vvl/blue.flashes.feed.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:24kqkpfy6z7avtgu3qg57vvl/blue.flashes.feed.post/examples)

## Definitions

### `blue.flashes.feed.post`

**Type**: `record`

A feed post record for the Flashes app. EXIF metadata is stored separately in blue.flashes.photo.exif sidecar records.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes |  |
| `childrenPostURIs` | `array` | No | Optional array of child post URIs for threaded content |

## Raw Schema

```json
{
  "id": "blue.flashes.feed.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "childrenPostURIs": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri",
              "maxLength": 512
            },
            "description": "Optional array of child post URIs for threaded content"
          }
        }
      },
      "description": "A feed post record for the Flashes app. EXIF metadata is stored separately in blue.flashes.photo.exif sidecar records."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
