Properties
| Name | Type | Description |
|---|---|---|
| responseStatus | string | |
| responseDetails | object | |
| data | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/veeva/refs/heads/main/json-schema/veeva-vault-query-response-schema.json",
"title": "QueryResponse",
"description": "QueryResponse schema from Veeva Vault REST API",
"type": "object",
"properties": {
"responseStatus": {
"type": "string"
},
"responseDetails": {
"type": "object",
"properties": {
"limit": {
"type": "integer"
},
"offset": {
"type": "integer"
},
"size": {
"type": "integer"
},
"total": {
"type": "integer"
},
"url": {
"type": "string",
"format": "uri"
}
}
},
"data": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
}
}
}