Weaviate · Schema

ObjectsGetResponse

Weaviate ObjectsGetResponse schema

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes
View JSON Schema on GitHub

JSON Schema

weaviate-objects-get-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-objects-get-response-schema.json",
  "title": "ObjectsGetResponse",
  "description": "Weaviate ObjectsGetResponse schema",
  "allOf": [
    {
      "$ref": "#/components/schemas/Object"
    },
    {
      "properties": {
        "deprecations": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/Deprecation"
          }
        }
      }
    },
    {
      "properties": {
        "result": {
          "format": "object",
          "description": "Results for this specific object.",
          "properties": {
            "status": {
              "type": "string",
              "enum": [
                "SUCCESS",
                "FAILED"
              ],
              "default": "SUCCESS"
            },
            "errors": {
              "$ref": "#/components/schemas/ErrorResponse"
            }
          }
        }
      }
    }
  ]
}