# at.dholms.bulletin.post

> Published by [spacy.dholms.at](https://lexicon.garden/identity/did:plc:ryh3lb5eac6cuxutrrx7pfln)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ryh3lb5eac6cuxutrrx7pfln/at.dholms.bulletin.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ryh3lb5eac6cuxutrrx7pfln/at.dholms.bulletin.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ryh3lb5eac6cuxutrrx7pfln/at.dholms.bulletin.post/examples)

## Definitions

### `at.dholms.bulletin.post`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `color` | `string` | No |  |
| `image` | `blob` | No |  |
| `imageAlt` | `string` | No |  |
| `position` | `object` | No |  |
| `rotation` | `integer` | No | Clockwise rotation in tenths of a degree. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "at.dholms.bulletin.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "color": {
            "type": "string",
            "knownValues": [
              "yellow",
              "pink",
              "blue",
              "green",
              "lavender"
            ]
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/jpeg",
              "image/png",
              "image/webp"
            ],
            "maxSize": 500000
          },
          "imageAlt": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "position": {
            "type": "object",
            "required": [
              "x",
              "y"
            ],
            "properties": {
              "x": {
                "type": "integer",
                "maximum": 1000,
                "minimum": 0
              },
              "y": {
                "type": "integer",
                "maximum": 1000,
                "minimum": 0
              }
            }
          },
          "rotation": {
            "type": "integer",
            "maximum": 25,
            "minimum": -25,
            "description": "Clockwise rotation in tenths of a degree."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
