# io.kich.recipe.collection

> Published by [kich.io](https://lexicon.garden/identity/did:plc:uxjwdy4wvuridijisalvxlxe)

✓ This is the authoritative definition for this NSID.

## Description

Record representing a public list of recipes. If it's on ATProto, it's public.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uxjwdy4wvuridijisalvxlxe/io.kich.recipe.collection)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uxjwdy4wvuridijisalvxlxe/io.kich.recipe.collection/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uxjwdy4wvuridijisalvxlxe/io.kich.recipe.collection/examples)

## Definitions

### `io.kich.recipe.collection`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Display name for the collection |
| `image` | `blob` | No | Cover image for the collection |
| `createdAt` | `string` (datetime) | Yes | When this collection was created |
| `updatedAt` | `string` (datetime) | No | When this collection was last updated |
| `description` | `string` | No | Optional description of the collection |

## Raw Schema

```json
{
  "id": "io.kich.recipe.collection",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 64,
            "minLength": 1,
            "description": "Display name for the collection"
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "description": "Cover image for the collection"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this collection was created"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this collection was last updated"
          },
          "description": {
            "type": "string",
            "maxLength": 3000,
            "description": "Optional description of the collection"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Record representing a public list of recipes. If it's on ATProto, it's public."
}
```
