{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/akamai-api-security/refs/heads/main/json-structure/api-security-match-targets-sequence-structure.json", "name": "match-targets-sequence", "description": "Contains match target settings and a list of objects containing match targets with their assigned sequence number.", "type": "object", "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": "int32" }, "targetId": { "description": "Uniquely identifies the match target.", "type": "int32" } }, "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" ], "additionalProperties": false }