Manticore Search · Schema

bulkResponse

Success response for bulk search requests

SearchFull-Text SearchVector SearchElasticsearch CompatibleOpen-SourceDatabase

Properties

Name Type Description
items array List of results
errors boolean Errors occurred during the bulk operation
error string Error message describing an error if such occurred
current_line integer Number of the row returned in the response
skipped_lines integer Number of rows skipped in the response
View JSON Schema on GitHub

JSON Schema

bulkResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/manticore/main/json-schema/bulkResponse.json",
  "title": "bulkResponse",
  "description": "Success response for bulk search requests",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "List of results"
    },
    "errors": {
      "type": "boolean",
      "description": "Errors occurred during the bulk operation"
    },
    "error": {
      "type": "string",
      "description": "Error message describing an error if such occurred"
    },
    "current_line": {
      "type": "integer",
      "description": "Number of the row returned in the response"
    },
    "skipped_lines": {
      "type": "integer",
      "description": "Number of rows skipped in the response"
    }
  }
}