Akamai API Security · JSON Structure

Api Security Config Get Structure

Contains details about a security configuration.

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

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

Properties

description id latestVersion name productionHostnames productionVersion stagingVersion

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-config-get-structure.json",
  "name": "config-get",
  "description": "Contains details about a security configuration.",
  "type": "object",
  "properties": {
    "description": {
      "description": "__Read-only__ Describes the security configuration.",
      "readOnly": true,
      "type": "string"
    },
    "id": {
      "description": "__Read-only__ Uniquely identifies the security configuration.",
      "readOnly": true,
      "type": "int32"
    },
    "latestVersion": {
      "description": "__Read-only__ The latest version of the security configuration.",
      "readOnly": true,
      "type": "int32"
    },
    "name": {
      "description": "__Read-only__ The security configuration name.",
      "readOnly": true,
      "type": "string"
    },
    "productionHostnames": {
      "description": "__Read-only__ The list of hostnames protected by this security configuration in the production network.",
      "items": {
        "type": "string"
      },
      "readOnly": true,
      "type": "array"
    },
    "productionVersion": {
      "description": "__Read-only__ The latest security configuration version active in the production network.",
      "readOnly": true,
      "type": "int32"
    },
    "stagingVersion": {
      "description": "__Read-only__ The latest security configuration version active in the staging network.",
      "readOnly": true,
      "type": "int32"
    }
  },
  "required": [
    "id",
    "latestVersion",
    "name"
  ],
  "additionalProperties": false
}