{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EndpointHints", "title": "EndpointHints", "type": "object", "description": "Routing hints that guide topology-aware routing decisions, directing clients to geographically or logically proximate endpoints.", "properties": { "forZones": { "type": "array", "description": "Zones that should prefer routing to this endpoint.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the zone (e.g. us-east-1a)." } } } }, "forNodes": { "type": "array", "description": "Nodes that should prefer routing to this endpoint.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the node." } } } } } }