tls-fingerprint-condition

Collects data needed for condition matches on TLS fingerprints.

API DiscoveryAPI SecurityCloud SecurityPosture ManagementRuntime ProtectionThreat Protection

Properties

Name Type Description
className string The type of condition. In this case, `TlsFingerprintCondition`.
positiveMatch boolean Whether the condition triggers on a match or lack of match.
value array A list of unique TLS fingerprints.
View JSON Schema on GitHub

JSON Schema

api-security-tls-fingerprint-condition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/akamai-api-security/refs/heads/main/json-schema/api-security-tls-fingerprint-condition-schema.json",
  "title": "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
}