blue.registry.itemRemoval

registry.blue

Documentation

Removes an item from a list. Stored in the list owner's repo.

main record

Removes an item from a list. Stored in the list owner's repo.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the item was removed.

item string at-uri Required

AT-URI of the item being removed.

list string at-uri Required

AT-URI of the list.

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 being removed."
      },
      "list": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the list."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the item was removed."
      }
    }
  },
  "description": "Removes an item from a list. Stored in the list owner's repo."
}

Lexicon Garden

@