Akamai · Schema

logging-option

Condition to be logged.

CDNCloudEdge ComputingNetworksPlatformSecurity

Properties

Name Type Description
id string The unique identifier for each logging option. See [Logging option values](https://techdocs.akamai.com/application-security/reference/logging-option-values).
name string A description of the logging option type.
value string The value on which to match when determining whether to log the custom rule condition.
View JSON Schema on GitHub

JSON Schema

akamai-logging-option-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/logging-option",
  "title": "logging-option",
  "additionalProperties": false,
  "description": "Condition to be logged.",
  "properties": {
    "id": {
      "description": "The unique identifier for each logging option. See [Logging option values](https://techdocs.akamai.com/application-security/reference/logging-option-values).",
      "enum": [
        "CLIENT_TLS_FINGERPRINT_MATCH",
        "HEADER_ORDER_MATCH",
        "REQUEST_HEADER_MATCH",
        "COOKIE_MATCH",
        "URI_QUERY_MATCH",
        "ARGS_POST_MATCH"
      ],
      "type": "string"
    },
    "name": {
      "description": "A description of the logging option type.",
      "type": "string"
    },
    "value": {
      "description": "The value on which to match when determining whether to log the custom rule condition.",
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object",
  "x-akamai": {
    "file-path": "schemas/logging-option.yaml"
  }
}