{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PointIdsList", "title": "PointIdsList", "type": "object", "required": [ "points" ], "properties": { "points": { "type": "array", "items": { "$ref": "#/components/schemas/ExtendedPointId" } }, "shard_key": { "anyOf": [ { "$ref": "#/components/schemas/ShardKeySelector" }, { "nullable": true } ] } } }