Solaris Zones · Schema

Zone

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
name string Zone name
brand string Zone brand type (e.g., solaris, solaris-kz, solaris10)
id integer Numeric zone ID (only when running or ready)
uuid string Zone UUID
state string Current zone state
auxstate array Auxiliary zone states
View JSON Schema on GitHub

JSON Schema

solaris-zones-management-zone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Zone",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Zone name"
    },
    "brand": {
      "type": "string",
      "description": "Zone brand type (e.g., solaris, solaris-kz, solaris10)"
    },
    "id": {
      "type": "integer",
      "description": "Numeric zone ID (only when running or ready)"
    },
    "uuid": {
      "type": "string",
      "description": "Zone UUID"
    },
    "state": {
      "type": "string",
      "description": "Current zone state"
    },
    "auxstate": {
      "type": "array",
      "description": "Auxiliary zone states"
    }
  }
}