Akamai · Schema

request-body

Contains the size limits for a request body.

CDNCloudEdge ComputingNetworksPlatformSecurity

Properties

Name Type Description
requestBodyInspectionLimitInKB string Request body size in KB, either `8`, `16`, or `32` as string-formatted integers, or `default` to use Akamai's best practice value.
View JSON Schema on GitHub

JSON Schema

akamai-request-body-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/request-body",
  "title": "request-body",
  "additionalProperties": false,
  "description": "Contains the size limits for a request body.",
  "properties": {
    "requestBodyInspectionLimitInKB": {
      "description": "Request body size in KB, either `8`, `16`, or `32` as string-formatted integers, or `default` to use Akamai's best practice value.",
      "enum": [
        "8",
        "16",
        "32",
        "default"
      ],
      "type": "string"
    }
  },
  "type": "object",
  "x-akamai": {
    "file-path": "schemas/request-body.yaml"
  }
}