# am.noz.atgallery.alpha.libraryMembership

> Published by [noz.am](https://lexicon.garden/identity/did:plc:lmkzmvv6sdxntwtyxpg7fqqq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.atgallery.alpha.libraryMembership)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.atgallery.alpha.libraryMembership/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.atgallery.alpha.libraryMembership/examples)

## Definitions

### `am.noz.atgallery.alpha.libraryMembership`

**Type**: `record`

A private many-to-many placement of one media item in one album.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `album` | `string` (at-uri) | Yes | Private Library album record. |
| `media` | `string` (at-uri) | Yes | Private Library media record. |
| `addedAt` | `string` (datetime) | Yes |  |
| `position` | `integer` | Yes |  |
| `formatVersion` | `integer` | Yes |  |
| `altTextOverride` | `string` | No |  |
| `captionOverride` | `string` | No |  |
| `decorativeOverride` | `boolean` | No |  |

## Raw Schema

```json
{
  "id": "am.noz.atgallery.alpha.libraryMembership",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "formatVersion",
          "album",
          "media",
          "position",
          "addedAt"
        ],
        "properties": {
          "album": {
            "type": "string",
            "format": "at-uri",
            "description": "Private Library album record."
          },
          "media": {
            "type": "string",
            "format": "at-uri",
            "description": "Private Library media record."
          },
          "addedAt": {
            "type": "string",
            "format": "datetime"
          },
          "position": {
            "type": "integer",
            "minimum": 0
          },
          "formatVersion": {
            "type": "integer",
            "const": 1
          },
          "altTextOverride": {
            "type": "string",
            "maxGraphemes": 2000
          },
          "captionOverride": {
            "type": "string",
            "maxGraphemes": 5000
          },
          "decorativeOverride": {
            "type": "boolean"
          }
        }
      },
      "description": "A private many-to-many placement of one media item in one album."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
