Properties
| Name | Type | Description |
|---|---|---|
| editable | boolean | Whether the setting is editable |
| id | string | The identifier of the caching setting |
| modified_on | string | The time when the setting was last modified |
| value | string | The status of the feature being on / off |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/cache_result-object",
"title": "cache_result-object",
"properties": {
"editable": {
"description": "Whether the setting is editable",
"type": "boolean"
},
"id": {
"description": "The identifier of the caching setting",
"type": "string"
},
"modified_on": {
"description": "The time when the setting was last modified",
"format": "date-time",
"type": "string"
},
"value": {
"description": "The status of the feature being on / off",
"enum": [
"on",
"off"
],
"type": "string"
}
},
"required": [
"id",
"value",
"modified_on",
"editable"
],
"type": "object"
}