# at.dholms.bulletin.position

> 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.position)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ryh3lb5eac6cuxutrrx7pfln/at.dholms.bulletin.position/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ryh3lb5eac6cuxutrrx7pfln/at.dholms.bulletin.position/examples)

## Definitions

### `at.dholms.bulletin.position`

**Type**: `record`

A board-owner position override for a specific version of a note.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `position` | `object` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "at.dholms.bulletin.position",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "position",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "position": {
            "type": "object",
            "required": [
              "x",
              "y"
            ],
            "properties": {
              "x": {
                "type": "integer",
                "maximum": 1000,
                "minimum": 0
              },
              "y": {
                "type": "integer",
                "maximum": 1000,
                "minimum": 0
              }
            }
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A board-owner position override for a specific version of a note."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
