match-targets-sequence

Contains match target settings and a list of objects containing match targets with their assigned sequence number.

API DiscoveryAPI SecurityCloud SecurityPosture ManagementRuntime ProtectionThreat Protection

Properties

Name Type Description
targetSequence array Contains the ID and sequence of a match target.
type string Describes the type of match target, either `WEBSITE` or `API`.
View JSON Schema on GitHub

JSON Schema

api-security-match-targets-sequence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/akamai-api-security/refs/heads/main/json-schema/api-security-match-targets-sequence-schema.json",
  "title": "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": "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"
  ],
  "additionalProperties": false
}