Enable TLS 1.3 value for a zone

Enables Crypto TLS 1.3 feature for a zone.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-zones-tls-1-3-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/zones_tls_1_3",
  "title": "Enable TLS 1.3 value for a zone",
  "allOf": [
    {
      "$ref": "#/components/schemas/zones_base"
    },
    {
      "properties": {
        "id": {
          "description": "ID of the zone setting.",
          "enum": [
            "tls_1_3"
          ],
          "example": "tls_1_3"
        },
        "value": {
          "$ref": "#/components/schemas/zones_tls_1_3_value"
        }
      }
    }
  ],
  "default": "off",
  "description": "Enables Crypto TLS 1.3 feature for a zone."
}