bypass-network-lists-get

Contains bypass network lists for the specified configuration version.

API DiscoveryAPI SecurityCloud SecurityPosture ManagementRuntime ProtectionThreat Protection

Properties

Name Type Description
networkLists array The list of network list identifiers and names.
View JSON Schema on GitHub

JSON Schema

api-security-bypass-network-lists-get-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-bypass-network-lists-get-schema.json",
  "title": "bypass-network-lists-get",
  "description": "Contains bypass network lists for the specified configuration version.",
  "type": "object",
  "properties": {
    "networkLists": {
      "description": "The list of network list identifiers and names.",
      "items": {
        "additionalProperties": false,
        "properties": {
          "id": {
            "description": "Uniquely identifies the network list.",
            "type": "string"
          },
          "name": {
            "description": "The name of the network list.",
            "type": "string"
          }
        },
        "required": [
          "id"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "networkLists"
  ],
  "additionalProperties": false
}