Acronis · Schema

AgentOS

Operating system information for an agent

CybersecurityData ProtectionEndpoint Management

Properties

Name Type Description
family string
arch string
name string
version string
View JSON Schema on GitHub

JSON Schema

acronis-agentos-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AgentOS",
  "title": "AgentOS",
  "type": "object",
  "description": "Operating system information for an agent",
  "properties": {
    "family": {
      "type": "string",
      "enum": [
        "WINDOWS",
        "LINUX",
        "MACOSX",
        "SOLARIS"
      ],
      "example": "WINDOWS"
    },
    "arch": {
      "type": "string",
      "enum": [
        "X86",
        "X64",
        "ARM",
        "ARM64"
      ],
      "example": "X64"
    },
    "name": {
      "type": "string",
      "example": "Windows 11 Pro"
    },
    "version": {
      "type": "string",
      "example": "10.0.22621"
    }
  }
}