# garden.lexicon.nourishing-earthworm.photoProjectDraft

> Published by [sten.laugh.town](https://lexicon.garden/identity/did:plc:52a5dhsnyfu6csd3pupxgodl)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:52a5dhsnyfu6csd3pupxgodl/garden.lexicon.nourishing-earthworm.photoProjectDraft)
- [Documentation](https://lexicon.garden/lexicon/did:plc:52a5dhsnyfu6csd3pupxgodl/garden.lexicon.nourishing-earthworm.photoProjectDraft/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:52a5dhsnyfu6csd3pupxgodl/garden.lexicon.nourishing-earthworm.photoProjectDraft/examples)

## Definitions

### `garden.lexicon.nourishing-earthworm.photoProjectDraft`

**Type**: `record`

A photography collection: its /photo/<slug> gallery plus its cover tile on the /photo index grid.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No |  |
| `slug` | `string` | Yes | URL + gallery-folder id, derived from the title. |
| `cover` | `string` | No |  |
| `order` | `integer` | No |  |
| `title` | `string` | Yes |  |
| `images` | `array` | No |  |
| `deleted` | `boolean` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `comingSoon` | `boolean` | No |  |
| `coverImage` | `object` | No |  |

## Raw Schema

```json
{
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "slug",
          "title",
          "createdAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxGraphemes": 300
          },
          "slug": {
            "type": "string",
            "maxLength": 128,
            "description": "URL + gallery-folder id, derived from the title."
          },
          "cover": {
            "type": "string"
          },
          "order": {
            "type": "integer"
          },
          "title": {
            "type": "string",
            "maxGraphemes": 300
          },
          "images": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "image"
              ],
              "properties": {
                "alt": {
                  "type": "string",
                  "maxGraphemes": 500
                },
                "image": {
                  "type": "blob",
                  "accept": [
                    "image/webp",
                    "image/jpeg",
                    "image/png"
                  ],
                  "maxSize": 6000000
                }
              }
            }
          },
          "deleted": {
            "type": "boolean",
            "default": false
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "comingSoon": {
            "type": "boolean",
            "default": false
          },
          "coverImage": {
            "type": "object",
            "required": [
              "image"
            ],
            "properties": {
              "alt": {
                "type": "string",
                "maxGraphemes": 500
              },
              "image": {
                "type": "blob",
                "accept": [
                  "image/webp",
                  "image/jpeg",
                  "image/png"
                ],
                "maxSize": 6000000
              }
            }
          }
        }
      },
      "description": "A photography collection: its /photo/<slug> gallery plus its cover tile on the /photo index grid."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
