Properties
| Name | Type | Description |
|---|---|---|
| shard_key | object | Specify in which shards to look for the points, if not specified - look in all shards |
| ids | array | Look for points with ids |
| with_payload | object | Select which payload to return with the response. Default is true. |
| with_vector | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PointRequest",
"title": "PointRequest",
"type": "object",
"required": [
"ids"
],
"properties": {
"shard_key": {
"description": "Specify in which shards to look for the points, if not specified - look in all shards",
"anyOf": [
{
"$ref": "#/components/schemas/ShardKeySelector"
},
{
"nullable": true
}
]
},
"ids": {
"description": "Look for points with ids",
"type": "array",
"items": {
"$ref": "#/components/schemas/ExtendedPointId"
}
},
"with_payload": {
"description": "Select which payload to return with the response. Default is true.",
"anyOf": [
{
"$ref": "#/components/schemas/WithPayloadInterface"
},
{
"nullable": true
}
]
},
"with_vector": {
"$ref": "#/components/schemas/WithVector"
}
}
}