{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/cache_base", "title": "cache_base", "properties": { "id": { "description": "Identifier of the zone setting.", "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" } }, "required": [ "id", "modified_on" ] }