social.arabica.alpha.recipe

arabica.social

Documentation

A reusable brewing recipe with parameters for repeatable coffee preparation

main record

A reusable brewing recipe with parameters for repeatable coffee preparation

Record Key tid Timestamp-based ID

Properties

brewerRef string at-uri Optional

AT-URI reference to a specific brewer record

brewerType string Optional

Fallback brewer type when no specific brewer is referenced (e.g., 'Pour-Over', 'French Press')

maxLength: 100 bytes
coffeeAmount integer Optional

Amount of coffee in tenths of grams (e.g., 180 = 18.0g)

minimum: 0
createdAt string datetime Required

Timestamp when the recipe was created

name string Required

User-given name for the recipe (e.g., 'James Hoffmann V60')

maxLength: 200 bytes
notes string Optional

Free-text instructions, tips, or notes about the recipe

maxLength: 2000 bytes
pours array of ref #pour Optional

Array of pour information for multi-pour methods

sourceRef string at-uri Optional

AT-URI of the recipe this was forked/copied from

waterAmount integer Optional

Amount of water in tenths of grams (e.g., 3000 = 300.0g)

minimum: 0
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 200,
        "description": "User-given name for the recipe (e.g., 'James Hoffmann V60')"
      },
      "notes": {
        "type": "string",
        "maxLength": 2000,
        "description": "Free-text instructions, tips, or notes about the recipe"
      },
      "pours": {
        "type": "array",
        "items": {
          "ref": "#pour",
          "type": "ref"
        },
        "description": "Array of pour information for multi-pour methods"
      },
      "brewerRef": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI reference to a specific brewer record"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the recipe was created"
      },
      "sourceRef": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the recipe this was forked/copied from"
      },
      "brewerType": {
        "type": "string",
        "maxLength": 100,
        "description": "Fallback brewer type when no specific brewer is referenced (e.g., 'Pour-Over', 'French Press')"
      },
      "waterAmount": {
        "type": "integer",
        "minimum": 0,
        "description": "Amount of water in tenths of grams (e.g., 3000 = 300.0g)"
      },
      "coffeeAmount": {
        "type": "integer",
        "minimum": 0,
        "description": "Amount of coffee in tenths of grams (e.g., 180 = 18.0g)"
      }
    }
  },
  "description": "A reusable brewing recipe with parameters for repeatable coffee preparation"
}
pour object

Information about a single pour in a multi-pour brewing method

Properties

timeSeconds integer Required

Time of this pour relative to brew start (seconds)

minimum: 0
waterAmount integer Required

Amount of water in this pour (grams or ml)

minimum: 0
View raw schema
{
  "type": "object",
  "required": [
    "waterAmount",
    "timeSeconds"
  ],
  "properties": {
    "timeSeconds": {
      "type": "integer",
      "minimum": 0,
      "description": "Time of this pour relative to brew start (seconds)"
    },
    "waterAmount": {
      "type": "integer",
      "minimum": 0,
      "description": "Amount of water in this pour (grams or ml)"
    }
  },
  "description": "Information about a single pour in a multi-pour brewing method"
}

Lexicon Garden

@