blue.registry.listItem

registry.blue

Documentation

A join record linking an item to a list.

main record

A join record linking an item to a list.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the item was added to the list.

item string at-uri Required

AT-URI of the item record.

list string at-uri Required

AT-URI of the list record.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "list",
      "item",
      "createdAt"
    ],
    "properties": {
      "item": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the item record."
      },
      "list": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the list record."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the item was added to the list."
      }
    }
  },
  "description": "A join record linking an item to a list."
}

Lexicon Garden

@