{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Vector", "title": "Vector", "description": "Vector Data Vectors can be described directly with values Or specified with source \"objects\" for inference", "anyOf": [ { "type": "array", "items": { "type": "number", "format": "float" } }, { "$ref": "#/components/schemas/SparseVector" }, { "type": "array", "items": { "type": "array", "items": { "type": "number", "format": "float" } } }, { "$ref": "#/components/schemas/Document" }, { "$ref": "#/components/schemas/Image" }, { "$ref": "#/components/schemas/InferenceObject" } ] }