cache_base

APIs.ioEngineeringPlatform

Properties

Name Type Description
id string Identifier of the zone setting.
modified_on string last time this setting was modified.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-cache-base-schema.json Raw ↑
{
  "$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"
  ]
}