Veli · JSON Structure

Veli Asset Allocation Structure

Asset allocation within a strategy

Type: object Properties: 3
CryptoDeFiFinanceInvestmentPortfolio Management

AssetAllocation is a JSON Structure definition published by Veli, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

symbol name weight

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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
    }
  }
}