mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-05-30 10:06:09 +08:00
26 lines
597 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|