# so.sprk.story.post

> Published by [sprk.so](https://lexicon.garden/identity/did:plc:cveom2iroj3mt747sd4qqnr2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cveom2iroj3mt747sd4qqnr2/so.sprk.story.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cveom2iroj3mt747sd4qqnr2/so.sprk.story.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cveom2iroj3mt747sd4qqnr2/so.sprk.story.post/examples)

## Definitions

### `so.sprk.story.post`

**Type**: `record`

Record containing a Spark story.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `media` | `union` | Yes |  |
| `sound` | `ref` → `com.atproto.repo.strongRef` | No |  |
| `embeds` | `ref` → `so.sprk.embed.defs#embeds` | No |  |
| `labels` | `union` | No | Self-label values for this story. Effectively content warnings. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this story was originally created. |

## Raw Schema

```json
{
  "id": "so.sprk.story.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "media"
        ],
        "properties": {
          "media": {
            "refs": [
              "so.sprk.media.image",
              "so.sprk.media.video"
            ],
            "type": "union"
          },
          "sound": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "embeds": {
            "ref": "so.sprk.embed.defs#embeds",
            "type": "ref"
          },
          "labels": {
            "refs": [
              "com.atproto.label.defs#selfLabels"
            ],
            "type": "union",
            "description": "Self-label values for this story. Effectively content warnings."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this story was originally created."
          }
        }
      },
      "description": "Record containing a Spark story."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
