ai.syui.card.user

syui.ai

Documentation

User card collection

main record

User card collection

Record Key literal:self Fixed literal value

Properties

card array of object Required

No description available.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

updatedAt string datetime Required

An RFC 3339 formatted timestamp.

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "card",
      "createdAt",
      "updatedAt"
    ],
    "properties": {
      "card": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "id",
            "cp",
            "rare",
            "cid",
            "unique"
          ],
          "properties": {
            "cp": {
              "type": "integer",
              "description": "Card power"
            },
            "id": {
              "type": "integer",
              "description": "Card type ID"
            },
            "cid": {
              "type": "string",
              "description": "Unique card instance ID"
            },
            "rare": {
              "type": "integer",
              "description": "Rarity level"
            },
            "unique": {
              "type": "boolean",
              "description": "Unique card flag"
            }
          }
        }
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "User card collection"
}

Lexicon Garden

@