Manticore Search · Schema

responseErrorDetails

Detailed error information returned in case of an error response

SearchFull-Text SearchVector SearchElasticsearch CompatibleOpen SourceDatabase

Properties

Name Type Description
type string Type or category of the error
reason stringnull Detailed explanation of why the error occurred
table stringnull The table related to the error, if applicable
View JSON Schema on GitHub

JSON Schema

responseErrorDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/manticore/main/json-schema/responseErrorDetails.json",
  "title": "responseErrorDetails",
  "description": "Detailed error information returned in case of an error response",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "Type or category of the error"
    },
    "reason": {
      "type": [
        "string",
        "null"
      ],
      "description": "Detailed explanation of why the error occurred"
    },
    "table": {
      "type": [
        "string",
        "null"
      ],
      "description": "The table related to the error, if applicable"
    }
  }
}