com.deckbelcher.collection.list

deckbelcher.com

Documentation

A curated list of cards and/or decks.

main record

A curated list of cards and/or decks.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the list was created.

name string Required

Name of the list.

maxLength: 1280 bytesmaxGraphemes: 128 graphemes
updatedAt string datetime Optional

Timestamp when the list was last updated.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "items",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 1280,
        "description": "Name of the list.",
        "maxGraphemes": 128
      },
      "items": {
        "type": "array",
        "items": {
          "refs": [
            "#cardItem",
            "#deckItem"
          ],
          "type": "union"
        },
        "description": "Items in the list."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the list was created."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the list was last updated."
      },
      "description": {
        "ref": "com.deckbelcher.richtext#document",
        "type": "ref",
        "description": "Description of the list."
      }
    }
  },
  "description": "A curated list of cards and/or decks."
}
cardItem object

A card saved to the list.

Properties

addedAt string datetime Required

Timestamp when this item was added to the list.

View raw schema
{
  "type": "object",
  "required": [
    "ref",
    "addedAt"
  ],
  "properties": {
    "ref": {
      "ref": "com.deckbelcher.defs#cardRef",
      "type": "ref",
      "description": "Reference to the card (scryfall printing + oracle card)."
    },
    "addedAt": {
      "type": "string",
      "format": "datetime",
      "description": "Timestamp when this item was added to the list."
    }
  },
  "description": "A card saved to the list."
}
deckItem object

A deck saved to the list.

Properties

addedAt string datetime Required

Timestamp when this item was added to the list.

View raw schema
{
  "type": "object",
  "required": [
    "ref",
    "addedAt"
  ],
  "properties": {
    "ref": {
      "ref": "com.atproto.repo.strongRef",
      "type": "ref",
      "description": "Reference to the deck record."
    },
    "addedAt": {
      "type": "string",
      "format": "datetime",
      "description": "Timestamp when this item was added to the list."
    }
  },
  "description": "A deck saved to the list."
}

Lexicon Garden

@