Akamai API Security · JSON Structure

Api Security Match Targets Sequence Structure

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

Type: object Properties: 2 Required: 2
API DiscoveryAPI SecurityCloud SecurityPosture ManagementRuntime ProtectionThreat Protection

match-targets-sequence is a JSON Structure definition published by Akamai API Security, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

targetSequence type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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
}