Files
stacks-blockchain-api/docs/api/address/get-address-transactions.schema.json
2021-07-15 13:07:39 -05:00

35 lines
793 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request that returns account transactions",
"title": "AddressTransactionsListResponse",
"type": "object",
"additionalProperties": false,
"required": ["results", "limit", "offset", "total"],
"properties": {
"limit": {
"type": "integer",
"maximum": 30
},
"offset": {
"type": "integer"
},
"total": {
"type": "integer"
},
"results": {
"type": "array",
"items": {
"type": "object",
"anyOf": [
{
"$ref": "../../entities/mempool-transactions/transaction.schema.json"
},
{
"$ref": "../../entities/transactions/transaction.schema.json"
}
]
}
}
}
}