mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-14 00:22:42 +08:00
16 lines
322 B
JSON
16 lines
322 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"title": "SearchResult",
|
|
"description": "complete search result for terms",
|
|
"additionalProperties": false,
|
|
"anyOf": [
|
|
{
|
|
"$ref": "./search-error.schema.json"
|
|
},
|
|
{
|
|
"$ref": "./search-success.schema.json"
|
|
}
|
|
]
|
|
}
|