Solaris Zones · Schema

ZoneInfo

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
name string Zone name
brand string Zone brand type
id integer Numeric zone ID
uuid string Zone UUID
isGlobal boolean Whether this is a global zone
View JSON Schema on GitHub

JSON Schema

solaris-zones-management-zone-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ZoneInfo",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Zone name"
    },
    "brand": {
      "type": "string",
      "description": "Zone brand type"
    },
    "id": {
      "type": "integer",
      "description": "Numeric zone ID"
    },
    "uuid": {
      "type": "string",
      "description": "Zone UUID"
    },
    "isGlobal": {
      "type": "boolean",
      "description": "Whether this is a global zone"
    }
  }
}