Properties
| Name | Type | Description |
|---|---|---|
| editable | boolean | Whether this setting can be updated or not. |
| id | string | |
| modified_on | string | Last time this setting was modified. |
| next_scheduled_scan | string | next time this zone will be scanned by the Automatic SSL/TLS. |
| value | string | Current setting of the automatic SSL/TLS. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/cache_response_base",
"title": "cache_response_base",
"properties": {
"editable": {
"description": "Whether this setting can be updated or not.",
"readOnly": true,
"type": "boolean"
},
"id": {
"example": "ssl_tls_configuration_mode",
"readOnly": true,
"type": "string"
},
"modified_on": {
"description": "Last time this setting was modified.",
"example": "2014-01-01T05:20:00.12345Z",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"next_scheduled_scan": {
"description": "next time this zone will be scanned by the Automatic SSL/TLS.",
"example": "2014-01-01T05:20:00.12345Z",
"format": "date-time",
"nullable": true,
"readOnly": true,
"type": "string"
},
"value": {
"description": "Current setting of the automatic SSL/TLS.",
"enum": [
"auto",
"custom"
],
"example": "auto",
"readOnly": true,
"type": "string"
}
},
"required": [
"id",
"modified_on",
"value",
"editable"
],
"type": "object"
}