mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-10 06:30:20 +08:00
25 lines
491 B
JSON
25 lines
491 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"title": "SearchSuccessResult",
|
|
"description": "Search success result",
|
|
"additionalProperties": false,
|
|
"anyOf": [
|
|
{
|
|
"$ref": "./search-address.schema.json"
|
|
},
|
|
{
|
|
"$ref": "./search-block.schema.json"
|
|
},
|
|
{
|
|
"$ref": "./search-contract.schema.json"
|
|
},
|
|
{
|
|
"$ref": "./search-mempool.schema.json"
|
|
},
|
|
{
|
|
"$ref": "./search-tx-id.schema.json"
|
|
}
|
|
]
|
|
}
|