# com.cyclonopedia.food.recipe

> Published by [stegano.cyclonopedia.com](https://lexicon.garden/identity/did:plc:mov3spywnp5iakegklmcptkk)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mov3spywnp5iakegklmcptkk/com.cyclonopedia.food.recipe)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mov3spywnp5iakegklmcptkk/com.cyclonopedia.food.recipe/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mov3spywnp5iakegklmcptkk/com.cyclonopedia.food.recipe/examples)

## Definitions

### `com.cyclonopedia.food.recipe`

**Type**: `record`

식빵 레시피 1건

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `variant` | `string` | No |  |
| `ingredients` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "com.cyclonopedia.food.recipe",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "ingredients"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "variant": {
            "type": "string"
          },
          "ingredients": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "item",
                "amount",
                "unit"
              ],
              "properties": {
                "item": {
                  "type": "string"
                },
                "unit": {
                  "type": "string"
                },
                "amount": {
                  "type": "integer"
                }
              }
            }
          }
        }
      },
      "description": "식빵 레시피 1건"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
