mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-14 08:29:57 +08:00
32 lines
832 B
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"
|
|
}
|
|
}
|
|
}
|