mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-16 01:24:23 +08:00
35 lines
793 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|