{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-objects-list-response-schema.json", "title": "ObjectsListResponse", "description": "List of objects.", "type": "object", "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." } } }