# systems.sister.recipe

> Published by [vault.pds.sister.systems](https://lexicon.garden/identity/did:plc:e2gllbtzj3go3vaiimn4qmls)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:e2gllbtzj3go3vaiimn4qmls/systems.sister.recipe)
- [Documentation](https://lexicon.garden/lexicon/did:plc:e2gllbtzj3go3vaiimn4qmls/systems.sister.recipe/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:e2gllbtzj3go3vaiimn4qmls/systems.sister.recipe/examples)

## Definitions

### `systems.sister.recipe`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `inputs` | `array` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |
| `outputItemRkey` | `string` | Yes |  |

### `systems.sister.recipe#input`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `itemRkey` | `string` | Yes |  |
| `quantity` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "systems.sister.recipe",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "inputs",
          "outputItemRkey",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1
          },
          "inputs": {
            "type": "array",
            "items": {
              "ref": "#input",
              "type": "ref"
            },
            "maxLength": 20
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 4096
          },
          "outputItemRkey": {
            "type": "string",
            "maxLength": 256,
            "minLength": 1
          }
        }
      }
    },
    "input": {
      "type": "object",
      "required": [
        "itemRkey",
        "quantity"
      ],
      "properties": {
        "itemRkey": {
          "type": "string",
          "maxLength": 256,
          "minLength": 1
        },
        "quantity": {
          "type": "integer",
          "minimum": 1
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
