# social.arabica.alpha.brewer

> Published by [arabica.social](https://lexicon.garden/identity/did:plc:chqc2ockzmyvlrasfb66x64a)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:chqc2ockzmyvlrasfb66x64a/social.arabica.alpha.brewer)
- [Documentation](https://lexicon.garden/lexicon/did:plc:chqc2ockzmyvlrasfb66x64a/social.arabica.alpha.brewer/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:chqc2ockzmyvlrasfb66x64a/social.arabica.alpha.brewer/examples)

## Definitions

### `social.arabica.alpha.brewer`

**Type**: `record`

A coffee brewing device or method

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `link` | `string` (uri) | No | Optional product, manual, or information URL for the brewer |
| `name` | `string` | Yes | Name of the brewer (e.g., 'V60', 'Aeropress', 'Chemex') |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the brewer record was created |
| `sourceRef` | `string` (at-uri) | No | AT-URI of the record this entity was sourced from |
| `brewerType` | `string` | No | Category of brewer. Known values: pourover, espresso, immersion, mokapot, coldbrew, cupping, other |
| `description` | `string` | No | Description or notes about the brewer |

## Raw Schema

```json
{
  "id": "social.arabica.alpha.brewer",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "link": {
            "type": "string",
            "format": "uri",
            "maxLength": 500,
            "description": "Optional product, manual, or information URL for the brewer"
          },
          "name": {
            "type": "string",
            "maxLength": 200,
            "description": "Name of the brewer (e.g., 'V60', 'Aeropress', 'Chemex')"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the brewer record was created"
          },
          "sourceRef": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the record this entity was sourced from"
          },
          "brewerType": {
            "type": "string",
            "maxLength": 100,
            "description": "Category of brewer. Known values: pourover, espresso, immersion, mokapot, coldbrew, cupping, other",
            "knownValues": [
              "pourover",
              "espresso",
              "immersion",
              "mokapot",
              "coldbrew",
              "cupping",
              "other"
            ]
          },
          "description": {
            "type": "string",
            "maxLength": 1000,
            "description": "Description or notes about the brewer"
          }
        }
      },
      "description": "A coffee brewing device or method"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
