# cafe.dummy.lsky.post

> Published by [lsky-publisher.dummy.to](https://lexicon.garden/identity/did:plc:yuilafccwsaj7a4qkkzhttdn)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:yuilafccwsaj7a4qkkzhttdn/cafe.dummy.lsky.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:yuilafccwsaj7a4qkkzhttdn/cafe.dummy.lsky.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:yuilafccwsaj7a4qkkzhttdn/cafe.dummy.lsky.post/examples)

## Definitions

### `cafe.dummy.lsky.post`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `facets` | `array` | No | Text formatting and annotations (bold/italics/etc, mentions...) |
| `labels` | `union` | No | Self-label values for this post. Effectively content warnings. |
| `content` | `string` | Yes | May be an empty string, if there are embeds. |
| `followup` | `ref` → `#followupRef` | No |  |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this post was originally created. |

### `cafe.dummy.lsky.post#followupRef`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `root` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `parent` | `ref` → `com.atproto.repo.strongRef` | Yes |  |

## Raw Schema

```json
{
  "id": "cafe.dummy.lsky.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "content",
          "createdAt"
        ],
        "properties": {
          "facets": {
            "type": "array",
            "items": {
              "ref": "cafe.dummy.lsky.facet",
              "type": "ref"
            },
            "description": "Text formatting and annotations (bold/italics/etc, mentions...)"
          },
          "labels": {
            "refs": [
              "com.atproto.label.defs#selfLabels"
            ],
            "type": "union",
            "description": "Self-label values for this post. Effectively content warnings."
          },
          "content": {
            "type": "string",
            "maxLength": 1000000,
            "description": "May be an empty string, if there are embeds.",
            "maxGraphemes": 100000
          },
          "followup": {
            "ref": "#followupRef",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this post was originally created."
          }
        }
      }
    },
    "followupRef": {
      "type": "object",
      "required": [
        "root",
        "parent"
      ],
      "properties": {
        "root": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        },
        "parent": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
