{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Target", "type": "object", "description": "A Target is an IP address/hostname with a port that identifies an instance of a backend service.", "properties": { "id": { "type": "string" }, "target": { "type": "string", "description": "The target address (IP or hostname) and port (host:port)." }, "weight": { "type": "integer", "description": "The weight this target gets within the upstream (0-65535). 0 means the target is disabled." }, "tags": { "type": "array" }, "upstream": { "type": "object" }, "created_at": { "type": "number" }, "updated_at": { "type": "number" } } }