# systems.numina.site.curation

> Published by [scoiattolo.mountainherder.xyz](https://lexicon.garden/identity/did:plc:uyqnubfj3qlho6psy6uvvt6u)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uyqnubfj3qlho6psy6uvvt6u/systems.numina.site.curation)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uyqnubfj3qlho6psy6uvvt6u/systems.numina.site.curation/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uyqnubfj3qlho6psy6uvvt6u/systems.numina.site.curation/examples)

## Definitions

### `systems.numina.site.curation`

**Type**: `record`

Editorial curation for the scarnecchia.net site: photography selection and order, design portfolio pieces, pinned documents.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `design` | `array` | No |  |
| `pinned` | `array` | No |  |
| `photography` | `array` | No |  |

### `systems.numina.site.curation#photoEntry`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `feature` | `boolean` | No |  |
| `subject` | `string` (at-uri) | Yes |  |
| `position` | `integer` | Yes |  |
| `flickrUrl` | `string` (uri) | No |  |

### `systems.numina.site.curation#designEntry`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `year` | `integer` | Yes |  |
| `image` | `blob` | Yes |  |
| `title` | `string` | Yes |  |
| `medium` | `string` | Yes |  |
| `position` | `integer` | Yes |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "systems.numina.site.curation",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "design": {
            "type": "array",
            "items": {
              "ref": "#designEntry",
              "type": "ref"
            }
          },
          "pinned": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            }
          },
          "photography": {
            "type": "array",
            "items": {
              "ref": "#photoEntry",
              "type": "ref"
            }
          }
        }
      },
      "description": "Editorial curation for the scarnecchia.net site: photography selection and order, design portfolio pieces, pinned documents."
    },
    "photoEntry": {
      "type": "object",
      "required": [
        "subject",
        "position"
      ],
      "properties": {
        "feature": {
          "type": "boolean"
        },
        "subject": {
          "type": "string",
          "format": "at-uri"
        },
        "position": {
          "type": "integer"
        },
        "flickrUrl": {
          "type": "string",
          "format": "uri"
        }
      }
    },
    "designEntry": {
      "type": "object",
      "required": [
        "title",
        "year",
        "medium",
        "image",
        "position"
      ],
      "properties": {
        "year": {
          "type": "integer"
        },
        "image": {
          "type": "blob",
          "accept": [
            "image/jpeg",
            "image/png",
            "image/webp"
          ],
          "maxSize": 2000000
        },
        "title": {
          "type": "string",
          "maxLength": 200
        },
        "medium": {
          "type": "string",
          "maxLength": 100
        },
        "position": {
          "type": "integer"
        },
        "description": {
          "type": "string",
          "maxLength": 2000
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
