{
  "description": "GET request that returns address balances",
  "title": "AddressBalanceResponse",
  "additionalProperties": false,
  "type": "object",
  "required": ["stx", "fungible_tokens", "non_fungible_tokens"],
  "properties": {
    "stx": {
      "$ref": "../../entities/balance/stx-balance.schema.json"
    },
    "fungible_tokens": {
      "type": "object",
      "additionalProperties": {
        "anyOf": [
          {
            "$ref": "../../entities/balance/ft-balance.schema.json"
          }
        ]
      }
    },
    "non_fungible_tokens": {
      "type": "object",
      "additionalProperties": {
        "anyOf": [
          {
            "$ref": "../../entities/balance/nft-balance.schema.json"
          }
        ]
      }
    },
    "token_offering_locked": {
      "$ref": "../../entities/address/token-offering-locked.schema.json"
    }
  }
}
