# dev.nekono.skyshare.defs

> Published by [nekono.dev](https://lexicon.garden/identity/did:plc:arvsmkkcflx2hdfum5jk54n3)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:arvsmkkcflx2hdfum5jk54n3/dev.nekono.skyshare.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:arvsmkkcflx2hdfum5jk54n3/dev.nekono.skyshare.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:arvsmkkcflx2hdfum5jk54n3/dev.nekono.skyshare.defs/examples)

## Definitions

### `dev.nekono.skyshare.defs#manifest`

**Type**: `object`

A fixed, human-facing manifestation of a source record.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `visual` | `blob` | Yes |  |
| `caption` | `string` | No | Optional caption providing additional context for the visual. |
| `heading` | `string` | No | A short human-readable heading identifying the source. |

## Raw Schema

```json
{
  "id": "dev.nekono.skyshare.defs",
  "defs": {
    "manifest": {
      "type": "object",
      "required": [
        "visual"
      ],
      "properties": {
        "visual": {
          "type": "blob",
          "accept": [
            "image/png",
            "image/jpeg",
            "image/webp"
          ]
        },
        "caption": {
          "type": "string",
          "maxLength": 300,
          "description": "Optional caption providing additional context for the visual."
        },
        "heading": {
          "type": "string",
          "maxLength": 100,
          "description": "A short human-readable heading identifying the source."
        }
      },
      "description": "A fixed, human-facing manifestation of a source record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
