{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SearchResponse", "title": "SearchResponse", "type": "object", "properties": { "result": { "type": "boolean" }, "data": { "type": "object", "properties": { "records": { "type": "array", "items": { "$ref": "#/components/schemas/CompanyRecord" } }, "totalCount": { "type": "integer" }, "count": { "type": "integer" } } } } }