Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| payload | object | Payload - values assigned to the point |
| vector | object | Vector of the point |
| shard_key | object | Shard Key |
| order_value | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Record",
"title": "Record",
"description": "Point data",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"$ref": "#/components/schemas/ExtendedPointId"
},
"payload": {
"description": "Payload - values assigned to the point",
"anyOf": [
{
"$ref": "#/components/schemas/Payload"
},
{
"nullable": true
}
]
},
"vector": {
"description": "Vector of the point",
"anyOf": [
{
"$ref": "#/components/schemas/VectorStructOutput"
},
{
"nullable": true
}
]
},
"shard_key": {
"description": "Shard Key",
"anyOf": [
{
"$ref": "#/components/schemas/ShardKey"
},
{
"nullable": true
}
]
},
"order_value": {
"anyOf": [
{
"$ref": "#/components/schemas/OrderValue"
},
{
"nullable": true
}
]
}
}
}