io.kich.cookinglog

kich.io

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

When this cooking log was created.

notes string Optional

Optional user notes captured at completion.

maxLength: 500 bytes
scaledServings unknown Optional

Optional servings value used while cooking.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "createdAt"
    ],
    "properties": {
      "notes": {
        "type": "string",
        "maxLength": 500,
        "description": "Optional user notes captured at completion."
      },
      "subject": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "Reference to the cooked recipe record (io.kich.recipe.recipe)."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When this cooking log was created."
      },
      "scaledServings": {
        "type": "unknown",
        "description": "Optional servings value used while cooking."
      }
    }
  }
}

Lexicon Garden

@