{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "IntegrationAssetEntity", "type": "object", "properties": { "id": { "type": "string", "description": "Asset address" }, "symbol": { "type": "string", "description": "Asset symbol" }, "name": { "type": "string", "description": "Asset name" }, "decimals": { "type": "number", "description": "Asset decimals" } }, "required": [ "id", "symbol", "name", "decimals" ] }