{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/match-targets-sequence", "title": "match-targets-sequence", "additionalProperties": false, "description": "Contains match target settings and a list of objects containing match targets with their assigned sequence number.", "properties": { "targetSequence": { "description": "Contains the ID and sequence of a match target.", "items": { "additionalProperties": false, "properties": { "sequence": { "description": "The position in the sequence of match targets.", "type": "integer" }, "targetId": { "description": "Uniquely identifies the match target.", "type": "integer" } }, "required": [ "sequence", "targetId" ], "type": "object" }, "type": "array" }, "type": { "description": "Describes the type of match target, either `WEBSITE` or `API`.", "enum": [ "WEBSITE", "API" ], "type": "string" } }, "required": [ "type", "targetSequence" ], "type": "object", "x-akamai": { "file-path": "schemas/match-targets-sequence.yaml" } }