mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-01-12 22:43:42 +08:00
26 lines
636 B
JSON
26 lines
636 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "GET request that returns transactions",
|
|
"title": "PostCoreNodeTransactionsError",
|
|
"type": "object",
|
|
"required": ["error", "reason", "reason_data", "txid"],
|
|
"properties": {
|
|
"error": {
|
|
"type": "string",
|
|
"description": "The error"
|
|
},
|
|
"reason": {
|
|
"type": "string",
|
|
"description": "The reason for the error"
|
|
},
|
|
"reason_data": {
|
|
"type": "object",
|
|
"description": "More details about the reason"
|
|
},
|
|
"txid": {
|
|
"type": "string",
|
|
"description": "The relevant transaction id"
|
|
}
|
|
}
|
|
}
|