Akamai API Security · JSON Structure

Api Security Tls Fingerprint Condition Structure

Collects data needed for condition matches on TLS fingerprints.

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

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

Properties

className positiveMatch value

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-tls-fingerprint-condition-structure.json",
  "name": "tls-fingerprint-condition",
  "description": "Collects data needed for condition matches on TLS fingerprints.",
  "type": "object",
  "properties": {
    "className": {
      "description": "The type of condition. In this case, `TlsFingerprintCondition`.",
      "enum": [
        "TlsFingerprintCondition"
      ],
      "type": "string"
    },
    "positiveMatch": {
      "description": "Whether the condition triggers on a match or lack of match.",
      "type": "boolean"
    },
    "value": {
      "description": "A list of unique TLS fingerprints.",
      "items": {
        "minLength": 1,
        "type": "string"
      },
      "minItems": 1,
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "className",
    "value"
  ],
  "additionalProperties": false
}