garden.goals.category

lexicon.store View official

Documentation

A category for organizing goals.

main record

A category for organizing goals.

Record Key tid Timestamp-based ID

Properties

categoryId string Required

Unique identifier for the category (UUID)

maxLength: 64 bytes
createdAt string datetime Required

Timestamp when the category was created

name string Required

Display name of the category

maxLength: 100 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "categoryId",
      "name",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 100,
        "description": "Display name of the category"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the category was created"
      },
      "categoryId": {
        "type": "string",
        "maxLength": 64,
        "description": "Unique identifier for the category (UUID)"
      }
    }
  },
  "description": "A category for organizing goals."
}

Lexicon Garden

@