mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-14 00:22:42 +08:00
29 lines
749 B
JSON
29 lines
749 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "GET request that returns transactions",
|
|
"title": "TransactionResults",
|
|
"type": "object",
|
|
"required": ["results", "limit", "offset", "total"],
|
|
"properties": {
|
|
"limit": {
|
|
"type": "integer",
|
|
"maximum": 200,
|
|
"description": "The number of transactions to return"
|
|
},
|
|
"offset": {
|
|
"type": "integer",
|
|
"description": "The number to transactions to skip (starting at `0`)"
|
|
},
|
|
"total": {
|
|
"type": "integer",
|
|
"description": "The number of transactions available"
|
|
},
|
|
"results": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "../../entities/transactions/transaction.schema.json"
|
|
}
|
|
}
|
|
}
|
|
}
|