mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-04-30 05:45:37 +08:00
25 lines
537 B
JSON
25 lines
537 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"title": "TransactionFound",
|
|
"description": "This object returns transaction for found true",
|
|
"additionalProperties": false,
|
|
"required": ["found", "result"],
|
|
"properties": {
|
|
"found": {
|
|
"type": "boolean",
|
|
"enum": [true]
|
|
},
|
|
"result": {
|
|
"anyOf":[
|
|
{
|
|
"$ref": "../mempool-transactions/transaction.schema.json"
|
|
},
|
|
{
|
|
"$ref": "./transaction.schema.json"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|