Gainsight · Schema
SearchResponse
Properties
| Name | Type | Description |
|---|---|---|
| result | boolean | |
| data | object |
JSON Schema
{
"$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"
}
}
}
}
}