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