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

26 lines
570 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request that returns address assets",
"title": "AddressAssetsListResponse",
"type": "object",
"required": ["results", "limit", "offset", "total"],
"properties": {
"limit": {
"type": "integer",
"maximum": 30
},
"offset": {
"type": "integer"
},
"total": {
"type": "integer"
},
"results": {
"type": "array",
"items": {
"$ref": "../../entities/transaction-events/transaction-event.schema.json"
}
}
}
}