Files
stacks-blockchain-api/docs/api/search/search.schema.json
2021-08-31 09:11:03 -05:00

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"
}
]
}