# social.arabica.alpha.grinder

> 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.grinder)
- [Documentation](https://lexicon.garden/lexicon/did:plc:chqc2ockzmyvlrasfb66x64a/social.arabica.alpha.grinder/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:chqc2ockzmyvlrasfb66x64a/social.arabica.alpha.grinder/examples)

## Definitions

### `social.arabica.alpha.grinder`

**Type**: `record`

A coffee grinder used for grinding beans

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `link` | `string` (uri) | No | Optional product, manual, or information URL for the grinder |
| `name` | `string` | Yes | Name or model of the grinder (e.g., 'Baratza Encore', '1Zpresso JX') |
| `notes` | `string` | No | Additional notes about the grinder |
| `burrType` | `string` | No | Type of burr (empty string for unknown) |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the grinder record was created |
| `sourceRef` | `string` (at-uri) | No | AT-URI of the record this entity was sourced from |
| `grinderType` | `string` | No | Type of grinder mechanism |

## Raw Schema

```json
{
  "id": "social.arabica.alpha.grinder",
  "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 grinder"
          },
          "name": {
            "type": "string",
            "maxLength": 200,
            "description": "Name or model of the grinder (e.g., 'Baratza Encore', '1Zpresso JX')"
          },
          "notes": {
            "type": "string",
            "maxLength": 1000,
            "description": "Additional notes about the grinder"
          },
          "burrType": {
            "enum": [
              "conical",
              "flat",
              "blade",
              ""
            ],
            "type": "string",
            "maxLength": 20,
            "description": "Type of burr (empty string for unknown)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the grinder record was created"
          },
          "sourceRef": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the record this entity was sourced from"
          },
          "grinderType": {
            "enum": [
              "hand",
              "electric",
              "portable_electric"
            ],
            "type": "string",
            "maxLength": 20,
            "description": "Type of grinder mechanism"
          }
        }
      },
      "description": "A coffee grinder used for grinding beans"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
