# social.luminance.portfolio.photo

> Published by [klee.photos](https://lexicon.garden/identity/did:plc:ka5oytd2d6rhs2r6yrvt6yb2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ka5oytd2d6rhs2r6yrvt6yb2/social.luminance.portfolio.photo)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ka5oytd2d6rhs2r6yrvt6yb2/social.luminance.portfolio.photo/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ka5oytd2d6rhs2r6yrvt6yb2/social.luminance.portfolio.photo/examples)

## Definitions

### `social.luminance.portfolio.photo#exif`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `iso` | `integer` | No |  |
| `lens` | `string` | No |  |
| `camera` | `string` | No |  |
| `fNumber` | `string` | No |  |
| `focalLength` | `string` | No |  |
| `shutterSpeed` | `string` | No |  |

### `social.luminance.portfolio.photo`

**Type**: `record`

A single portfolio photograph.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `alt` | `string` | No |  |
| `exif` | `ref` → `#exif` | No |  |
| `tags` | `array` | No |  |
| `image` | `blob` | Yes |  |
| `title` | `string` | No |  |
| `labels` | `union` | No |  |
| `caption` | `string` | No |  |
| `license` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `capturedAt` | `string` (datetime) | No |  |
| `aspectRatio` | `ref` → `#aspectRatio` | No |  |

### `social.luminance.portfolio.photo#aspectRatio`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `width` | `integer` | Yes |  |
| `height` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "social.luminance.portfolio.photo",
  "defs": {
    "exif": {
      "type": "object",
      "properties": {
        "iso": {
          "type": "integer",
          "minimum": 1
        },
        "lens": {
          "type": "string",
          "maxGraphemes": 100
        },
        "camera": {
          "type": "string",
          "maxGraphemes": 100
        },
        "fNumber": {
          "type": "string",
          "maxGraphemes": 10
        },
        "focalLength": {
          "type": "string",
          "maxGraphemes": 20
        },
        "shutterSpeed": {
          "type": "string",
          "maxGraphemes": 20
        }
      }
    },
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "image",
          "createdAt"
        ],
        "properties": {
          "alt": {
            "type": "string",
            "maxGraphemes": 2000
          },
          "exif": {
            "ref": "#exif",
            "type": "ref"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxGraphemes": 40
            },
            "maxLength": 10
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "maxSize": 20971520
          },
          "title": {
            "type": "string",
            "maxGraphemes": 200
          },
          "labels": {
            "refs": [
              "com.atproto.label.defs#selfLabels"
            ],
            "type": "union"
          },
          "caption": {
            "type": "string",
            "maxGraphemes": 3000
          },
          "license": {
            "type": "string",
            "maxGraphemes": 100
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "capturedAt": {
            "type": "string",
            "format": "datetime"
          },
          "aspectRatio": {
            "ref": "#aspectRatio",
            "type": "ref"
          }
        }
      },
      "description": "A single portfolio photograph."
    },
    "aspectRatio": {
      "type": "object",
      "required": [
        "width",
        "height"
      ],
      "properties": {
        "width": {
          "type": "integer",
          "minimum": 1
        },
        "height": {
          "type": "integer",
          "minimum": 1
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
