Files
stacks-blockchain-api/docs/api/address/get-address-stx-inbound.schema.json
2021-02-15 15:20:40 +01:00

26 lines
597 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request that returns a list of inbound STX transfers with a memo",
"title": "AddressStxInboundListResponse",
"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/transfers/inbound-stx-transfer.schema.json"
}
}
}
}