{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/speed_base", "title": "speed_base", "properties": { "editable": { "default": true, "description": "Whether or not this setting can be modified for this zone (based on your Cloudflare plan level).", "enum": [ true, false ], "readOnly": true, "type": "boolean" }, "id": { "description": "Identifier of the zone setting.", "example": "development_mode", "type": "string" }, "modified_on": { "description": "last time this setting was modified.", "example": "2014-01-01T05:20:00.12345Z", "format": "date-time", "nullable": true, "readOnly": true, "type": "string" }, "value": { "description": "Current value of the zone setting.", "enum": [ "on", "off" ], "example": "on", "type": "string" } } }