Webex · Schema

Resources

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
processAverageCPU array The average percent CPU for the process.
processMaxCPU array The max percent CPU for the process.
systemAverageCPU array The average percent CPU for the system.
systemMaxCPU array The max percent CPU for the system.
View JSON Schema on GitHub

JSON Schema

webex-resources-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Resources",
  "title": "Resources",
  "type": "object",
  "properties": {
    "processAverageCPU": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "The average percent CPU for the process."
    },
    "processMaxCPU": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "The max percent CPU for the process."
    },
    "systemAverageCPU": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "The average percent CPU for the system."
    },
    "systemMaxCPU": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "The max percent CPU for the system."
    }
  }
}