Akamai API Security · JSON Structure

Api Security Config Post Structure

Specifies the details of a security config.

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

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

Properties

contractId createFrom description groupId hostnames name

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-post-structure.json",
  "name": "config-post",
  "description": "Specifies the details of a security config.",
  "type": "object",
  "properties": {
    "contractId": {
      "description": "Contract ID.",
      "type": "string"
    },
    "createFrom": {
      "additionalProperties": false,
      "description": "Contains details about a source configuration and version for cloning a new security configuration.",
      "properties": {
        "configId": {
          "description": "Uniquely identifies the security configuration.",
          "type": "int32"
        },
        "version": {
          "description": "The configuration version to clone from.",
          "type": "int32"
        }
      },
      "required": [
        "configId",
        "version"
      ],
      "type": "object"
    },
    "description": {
      "description": "Describes the security configuration.",
      "type": "string"
    },
    "groupId": {
      "description": "Group ID.",
      "type": "int32"
    },
    "hostnames": {
      "description": "List of hostnames to be added to the configuration.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "name": {
      "description": "The name you assigned to the security configuration.",
      "type": "string"
    }
  },
  "required": [
    "name",
    "description",
    "hostnames"
  ],
  "additionalProperties": false
}