Weaviate · Schema

ObjectsListResponse

List of objects.

Vector DatabaseArtificial IntelligenceMachine-LearningSemantic SearchOpen-SourceGraphQLKubernetes

Properties

Name Type Description
objects array The actual list of objects.
deprecations array
totalResults integer The total number of objects for the query. The number of items in a response may be smaller due to paging.
View JSON Schema on GitHub

JSON Schema

weaviate-objectslistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ObjectsListResponse",
  "title": "ObjectsListResponse",
  "type": "object",
  "description": "List of objects.",
  "properties": {
    "objects": {
      "type": "array",
      "description": "The actual list of objects.",
      "items": {
        "$ref": "#/components/schemas/Object"
      }
    },
    "deprecations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Deprecation"
      }
    },
    "totalResults": {
      "type": "integer",
      "format": "int64",
      "description": "The total number of objects for the query. The number of items in a response may be smaller due to paging."
    }
  }
}