Solaris Zones · Schema

ZoneInfo

Read-only snapshot of the executing zone information

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

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

JSON Schema

solaris-zones-zoneinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ZoneInfo",
  "title": "ZoneInfo",
  "type": "object",
  "description": "Read-only snapshot of the executing zone information",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the executing zone",
      "examples": [
        "global"
      ]
    },
    "id": {
      "type": "integer",
      "description": "Numeric zone ID",
      "examples": [
        0
      ]
    },
    "uuid": {
      "type": "string",
      "format": "uuid",
      "description": "Zone UUID",
      "example": "500123"
    },
    "brand": {
      "type": "string",
      "description": "Zone brand type",
      "examples": [
        "solaris"
      ]
    },
    "isGlobal": {
      "type": "boolean",
      "description": "Whether this is the global zone",
      "examples": [
        true
      ]
    }
  }
}