{ "$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 }