Files
stacks-blockchain-api/docs/api/address/get-address-balances.schema.json

32 lines
832 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request that returns address balances",
"title": "AddressBalanceResponse",
"type": "object",
"required": ["stx", "fungible_tokens", "non_fungible_tokens"],
"properties": {
"stx": {
"$ref": "../../entities/balance/stx-balance.schema.json"
},
"fungible_tokens": {
"type": "object",
"patternProperties": {
"*": {
"$ref": "../../entities/balance/ft-balance.schema.json"
}
}
},
"non_fungible_tokens": {
"type": "object",
"patternProperties": {
"*": {
"$ref": "../../entities/balance/nft-balance.schema.json"
}
}
},
"token_offering_locked": {
"$ref": "../../entities/address/token-offering-locked.schema.json"
}
}
}