Backfill in-progress. Some lexicons and records may be missing or incomplete.

net.anisota.beta.game.collection

anisota.net

Documentation

main record

Beta version: Record representing a collected specimen in a player's collection

Record Key tid Timestamp-based ID

Properties

acquiredAt string datetime Required

When the specimen was first acquired

commonName string Optional

Common name of the specimen

maxLength: 200 bytes
createdAt string datetime Required

When the record was created

family string Optional

Taxonomic family

maxLength: 100 bytes
genus string Optional

Taxonomic genus

maxLength: 100 bytes
lastModified string datetime Optional

When the record was last modified

lastSeen string datetime Optional

When the specimen was last encountered

logRecordUri string Optional

URI of the game.log record that documents the acquisition of this specimen

quantity integer Required

Number of specimens collected

minimum: 1
rarity string Optional

Rarity level of the specimen

Allowed: common, uncommon, rare, epic, legendary
scientificName string Optional

Scientific name of the specimen

maxLength: 200 bytes
source string Optional

How the specimen was acquired

Allowed: game_card, field_observation, trade, quest, research
species string Optional

Taxonomic species

maxLength: 100 bytes
specimenData ref #specimenData Optional

No description provided.

specimenId string Required

Unique identifier for the specimen

maxLength: 100 bytes
status string Optional

Collection status of this specimen

Allowed: seen, collected
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "specimenId",
      "quantity",
      "acquiredAt",
      "createdAt"
    ],
    "properties": {
      "genus": {
        "type": "string",
        "maxLength": 100,
        "description": "Taxonomic genus"
      },
      "family": {
        "type": "string",
        "maxLength": 100,
        "description": "Taxonomic family"
      },
      "rarity": {
        "enum": [
          "common",
          "uncommon",
          "rare",
          "epic",
          "legendary"
        ],
        "type": "string",
        "description": "Rarity level of the specimen"
      },
      "source": {
        "enum": [
          "game_card",
          "field_observation",
          "trade",
          "quest",
          "research"
        ],
        "type": "string",
        "description": "How the specimen was acquired"
      },
      "status": {
        "enum": [
          "seen",
          "collected"
        ],
        "type": "string",
        "description": "Collection status of this specimen"
      },
      "species": {
        "type": "string",
        "maxLength": 100,
        "description": "Taxonomic species"
      },
      "lastSeen": {
        "type": "string",
        "format": "datetime",
        "description": "When the specimen was last encountered"
      },
      "quantity": {
        "type": "integer",
        "minimum": 1,
        "description": "Number of specimens collected"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the record was created"
      },
      "acquiredAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the specimen was first acquired"
      },
      "commonName": {
        "type": "string",
        "maxLength": 200,
        "description": "Common name of the specimen"
      },
      "specimenId": {
        "type": "string",
        "maxLength": 100,
        "description": "Unique identifier for the specimen"
      },
      "lastModified": {
        "type": "string",
        "format": "datetime",
        "description": "When the record was last modified"
      },
      "logRecordUri": {
        "type": "string",
        "description": "URI of the game.log record that documents the acquisition of this specimen"
      },
      "specimenData": {
        "ref": "#specimenData",
        "type": "ref"
      },
      "sourceDetails": {
        "ref": "#sourceDetails",
        "type": "ref"
      },
      "scientificName": {
        "type": "string",
        "maxLength": 200,
        "description": "Scientific name of the specimen"
      }
    }
  },
  "description": "Beta version: Record representing a collected specimen in a player's collection"
}
sourceDetails object

Additional details about how the specimen was acquired

Properties

attempts integer Optional

Number of attempts before successful capture

catchProbability string Optional

Probability used when catching this specimen (decimal string, e.g. '0.75')

gameCardUri string Optional

URI of the game card that provided this specimen

location string Optional

Location where specimen was found or observed

View raw schema
{
  "type": "object",
  "properties": {
    "attempts": {
      "type": "integer",
      "description": "Number of attempts before successful capture"
    },
    "location": {
      "type": "string",
      "description": "Location where specimen was found or observed"
    },
    "gameCardUri": {
      "type": "string",
      "description": "URI of the game card that provided this specimen"
    },
    "catchProbability": {
      "type": "string",
      "description": "Probability used when catching this specimen (decimal string, e.g. '0.75')"
    }
  },
  "description": "Additional details about how the specimen was acquired"
}
specimenData object

Complete specimen information

Properties

authorship string Optional

Scientific authorship of the species

description string Optional

Detailed description of the specimen

View raw schema
{
  "type": "object",
  "properties": {
    "authorship": {
      "type": "string",
      "description": "Scientific authorship of the species"
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the specimen"
    }
  },
  "description": "Complete specimen information"
}

Lexicon Garden

@