{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://www.cryptocompare.com/schemas/cryptocompare/asset.json", "title": "CCData Asset", "description": "Asset record returned by data-api /asset/v1/data/by/symbol. Includes supply, classifications, consensus, industries, and supported platforms.", "type": "object", "required": ["ID", "SYMBOL", "NAME"], "properties": { "ID": {"type": "integer"}, "SYMBOL": {"type": "string"}, "ASSET_TYPE": {"type": "string", "enum": ["BLOCKCHAIN", "TOKEN", "STABLECOIN", "FIAT", "WRAPPED"]}, "NAME": {"type": "string"}, "LOGO_URL": {"type": "string"}, "LAUNCH_DATE": {"type": "integer"}, "DESCRIPTION": {"type": "string"}, "ASSET_DESCRIPTION_SUMMARY": {"type": "string"}, "CONSENSUS_MECHANISMS": {"type": "array", "items": {"type": "object"}}, "HASHING_ALGORITHMS": {"type": "array", "items": {"type": "object"}}, "PREVIOUS_ASSET_SYMBOLS": {"type": "array", "items": {"type": "string"}}, "SUPPLY_MAX": {"type": "number"}, "SUPPLY_TOTAL": {"type": "number"}, "SUPPLY_CIRCULATING": {"type": "number"}, "SUPPLY_STAKED": {"type": "number"}, "SUPPLY_BURNT": {"type": "number"}, "SUPPLY_FUTURE": {"type": "number"}, "ASSET_INDUSTRIES": {"type": "array", "items": {"type": "object"}}, "SUPPORTED_PLATFORMS": {"type": "array", "items": {"type": "object"}}, "CLASSIFICATIONS": {"type": "array", "items": {"type": "object"}}, "WEBSITE_URL": {"type": "string"}, "BLOG_URL": {"type": "string"}, "WHITE_PAPER_URL": {"type": "string"}, "TWITTER_HANDLE": {"type": "string"} } }