zones_base

APIs.ioEngineeringPlatform

Properties

Name Type Description
editable boolean Whether or not this setting can be modified for this zone (based on your Cloudflare plan level).
id string Identifier of the zone setting.
modified_on string last time this setting was modified.
value object Current value of the zone setting.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-zones-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/zones_base",
  "title": "zones_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.",
      "example": "on"
    }
  },
  "required": [
    "id",
    "value"
  ]
}