blue.registry.donation

registry.blue

Documentation

Records a donation to an item. Stored in the donor's repo. Multiple donations to the same item are allowed.

main record

Records a donation to an item. Stored in the donor's repo. Multiple donations to the same item are allowed.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp of the donation.

item string at-uri Required

AT-URI of the donation item.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "item",
      "createdAt"
    ],
    "properties": {
      "item": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the donation item."
      },
      "amount": {
        "ref": "blue.registry.item#money",
        "type": "ref",
        "description": "Amount donated."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of the donation."
      }
    }
  },
  "description": "Records a donation to an item. Stored in the donor's repo. Multiple donations to the same item are allowed."
}

Lexicon Garden

@