Akamai API Security · JSON Structure

Api Security Waf Config Version Structure

Contains configuration version details.

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

waf-config-version is a JSON Structure definition published by Akamai API Security, describing 9 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

basedOn configId configName createDate createdBy production staging version versionNotes

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-waf-config-version-structure.json",
  "name": "waf-config-version",
  "description": "Contains configuration version details.",
  "type": "object",
  "properties": {
    "basedOn": {
      "description": "__Read-only__ The version from which you cloned this version.",
      "readOnly": true,
      "type": "int32"
    },
    "configId": {
      "description": "__Read-only__ Uniquely identifies the security configuration.",
      "readOnly": true,
      "type": "int32"
    },
    "configName": {
      "description": "The security configuration name.",
      "type": "string"
    },
    "createDate": {
      "description": "__Read-only__ The date when you created the configuration version.",
      "readOnly": true,
      "type": "string"
    },
    "createdBy": {
      "description": "__Read-only__ The user who created the configuration version.",
      "readOnly": true,
      "type": "string"
    },
    "production": {
      "additionalProperties": false,
      "description": "__Read-only__ The activation status of the configuration version in the production network.",
      "properties": {
        "action": {
          "description": "The action taken on the configuration version. Either `ACTIVATE` or `DEACTIVATE`.",
          "enum": [
            "ACTIVATE",
            "DEACTIVATE"
          ],
          "type": "string"
        },
        "status": {
          "description": "The activation status, either `Pending`, `Active`, `Inactive`, `Deactivated`, or `Failed`.",
          "enum": [
            "Pending",
            "Active",
            "Inactive",
            "Deactivated",
            "Failed"
          ],
          "type": "string"
        },
        "time": {
          "description": "The activation time.",
          "type": "string"
        }
      },
      "readOnly": true,
      "required": [
        "status"
      ],
      "type": "object"
    },
    "staging": {
      "additionalProperties": false,
      "description": "__Read-only__ The activation status of the configuration version in the staging network.",
      "properties": {
        "action": {
          "description": "The action taken on the configuration version. Either `ACTIVATE` or `DEACTIVATE`.",
          "enum": [
            "ACTIVATE",
            "DEACTIVATE"
          ],
          "type": "string"
        },
        "status": {
          "description": "The activation status, either `Pending`, `Active`, `Inactive`, `Deactivated`, or `Failed`.",
          "enum": [
            "Pending",
            "Active",
            "Inactive",
            "Deactivated",
            "Failed"
          ],
          "type": "string"
        },
        "time": {
          "description": "The ISO 8601 time stamp indicating the activation time.",
          "type": "string"
        }
      },
      "readOnly": true,
      "required": [
        "status"
      ],
      "type": "object"
    },
    "version": {
      "description": "__Read-only__ The security configuration version.",
      "readOnly": true,
      "type": "int32"
    },
    "versionNotes": {
      "description": "The notes you entered for the configuration version.",
      "type": "string"
    }
  },
  "required": [
    "configId",
    "configName",
    "version",
    "staging",
    "production"
  ],
  "additionalProperties": false
}