Properties
| Name | Type | Description |
|---|---|---|
| errors | object | |
| messages | object | |
| result | object | |
| success | boolean | Whether the API call was successful |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/vectorize_api-response-common",
"title": "vectorize_api-response-common",
"properties": {
"errors": {
"$ref": "#/components/schemas/vectorize_messages"
},
"messages": {
"$ref": "#/components/schemas/vectorize_messages"
},
"result": {
"anyOf": [
{
"type": "object"
},
{
"items": {},
"type": "array"
},
{
"type": "string"
}
]
},
"success": {
"description": "Whether the API call was successful",
"enum": [
true
],
"example": true,
"type": "boolean"
}
},
"required": [
"success",
"errors",
"messages",
"result"
],
"type": "object"
}