{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/veli/refs/heads/main/json-structure/veli-asset-allocation-structure.json", "name": "AssetAllocation", "description": "Asset allocation within a strategy", "type": "object", "properties": { "symbol": { "type": "string", "description": "Crypto asset symbol", "example": "BTC" }, "name": { "type": "string", "description": "Asset name", "example": "Bitcoin" }, "weight": { "type": "double", "description": "Target allocation weight (0-1)", "minimum": 0, "maximum": 1, "example": 0.6 } } }