Juniper Networks · Schema

EnrolledDevice

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
device_id string
hostname string
serial_number string
model string Device model (e.g., SRX340, SRX4600)
os_version string
status string
last_seen string
enrolled_at string
license_type string
View JSON Schema on GitHub

JSON Schema

juniper-enrolleddevice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnrolledDevice",
  "title": "EnrolledDevice",
  "type": "object",
  "properties": {
    "device_id": {
      "type": "string"
    },
    "hostname": {
      "type": "string"
    },
    "serial_number": {
      "type": "string"
    },
    "model": {
      "type": "string",
      "description": "Device model (e.g., SRX340, SRX4600)"
    },
    "os_version": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "connected",
        "disconnected",
        "pending"
      ]
    },
    "last_seen": {
      "type": "string",
      "format": "date-time"
    },
    "enrolled_at": {
      "type": "string",
      "format": "date-time"
    },
    "license_type": {
      "type": "string"
    }
  }
}