Weaviate ObjectsGetResponse schema
{ "$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" } } } } } ] }