{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "WeightedTarget", "description": "An object that represents a target and its relative weight. Traffic is distributed across targets according to their relative weight. For example, a weighted target with a relative weight of 50 receives five times as much traffic as one with a relative weight of 10. The total weight for all targets combined must be less than or equal to 100.", "type": "object", "properties": { "port": {}, "virtualNode": {}, "weight": {} }, "required": [ "virtualNode", "weight" ] }