Akamai · Schema

bypass-network-lists-get

Contains bypass network lists for the specified configuration version.

CDNCloudEdge ComputingNetworksPlatformSecurity

Properties

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

JSON Schema

akamai-bypass-network-lists-get-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/bypass-network-lists-get",
  "title": "bypass-network-lists-get",
  "additionalProperties": false,
  "description": "Contains bypass network lists for the specified configuration version.",
  "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"
  ],
  "type": "object",
  "x-akamai": {
    "file-path": "schemas/bypass-network-lists-get.yaml"
  }
}