social.arabica.alpha.grinder

arabica.social

Documentation

A coffee grinder used for grinding beans

main record

A coffee grinder used for grinding beans

Record Key tid Timestamp-based ID

Properties

burrType string Optional

Type of burr (empty string for unknown)

maxLength: 20 bytes
Allowed: conical, flat, blade,
createdAt string datetime Required

Timestamp when the grinder record was created

grinderType string Optional

Type of grinder mechanism

maxLength: 20 bytes
Allowed: hand, electric, portable_electric
name string Required

Name or model of the grinder (e.g., 'Baratza Encore', '1Zpresso JX')

maxLength: 200 bytes
notes string Optional

Additional notes about the grinder

maxLength: 1000 bytes
sourceRef string at-uri Optional

AT-URI of the record this entity was sourced from

View raw schema
{
  "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"
}

Lexicon Garden

@