APIs.io Engineering Platform · Schema
tls-certificates-and-hostnames_sslsettings
SSL specific settings.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| ciphers | array | An allowlist of ciphers for TLS termination. These ciphers must be in the BoringSSL format. |
| early_hints | object | Whether or not Early Hints is enabled. |
| http2 | object | Whether or not HTTP2 is enabled. |
| min_tls_version | object | The minimum TLS version supported. |
| tls_1_3 | object | Whether or not TLS 1.3 is enabled. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/tls-certificates-and-hostnames_sslsettings",
"title": "tls-certificates-and-hostnames_sslsettings",
"description": "SSL specific settings.",
"properties": {
"ciphers": {
"description": "An allowlist of ciphers for TLS termination. These ciphers must be in the BoringSSL format.",
"example": [
"ECDHE-RSA-AES128-GCM-SHA256",
"AES128-SHA"
],
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"early_hints": {
"description": "Whether or not Early Hints is enabled.",
"enum": [
"on",
"off"
],
"example": "on"
},
"http2": {
"description": "Whether or not HTTP2 is enabled.",
"enum": [
"on",
"off"
],
"example": "on"
},
"min_tls_version": {
"description": "The minimum TLS version supported.",
"enum": [
"1.0",
"1.1",
"1.2",
"1.3"
],
"example": "1.2"
},
"tls_1_3": {
"description": "Whether or not TLS 1.3 is enabled.",
"enum": [
"on",
"off"
],
"example": "on"
}
},
"type": "object"
}