JFrog · Schema

Device

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
id string
name string
status string
ip_address string
os string
os_version string
architecture string
agent_version string
group_id string
tags array
last_seen string
registered_at string
system_info object
View JSON Schema on GitHub

JSON Schema

jfrog-device-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Device",
  "title": "Device",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "online",
        "offline",
        "updating"
      ]
    },
    "ip_address": {
      "type": "string"
    },
    "os": {
      "type": "string"
    },
    "os_version": {
      "type": "string"
    },
    "architecture": {
      "type": "string"
    },
    "agent_version": {
      "type": "string"
    },
    "group_id": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "last_seen": {
      "type": "string",
      "format": "date-time"
    },
    "registered_at": {
      "type": "string",
      "format": "date-time"
    },
    "system_info": {
      "type": "object",
      "properties": {
        "cpu_usage": {
          "type": "number"
        },
        "memory_total": {
          "type": "integer"
        },
        "memory_used": {
          "type": "integer"
        },
        "disk_total": {
          "type": "integer"
        },
        "disk_used": {
          "type": "integer"
        },
        "uptime_seconds": {
          "type": "integer"
        }
      }
    }
  }
}