mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-12 15:48:52 +08:00
21 lines
547 B
JSON
21 lines
547 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "GET request that returns unanchored transactions",
|
|
"additionalProperties": false,
|
|
"title": "UnanchoredTransactionListResponse",
|
|
"type": "object",
|
|
"required": ["results", "total"],
|
|
"properties": {
|
|
"total": {
|
|
"type": "integer",
|
|
"description": "The number of unanchored transactions available"
|
|
},
|
|
"results": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "../../entities/transactions/transaction.schema.json"
|
|
}
|
|
}
|
|
}
|
|
}
|