Solaris Zones · Schema

Zone

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
name string
brand string
id integer
uuid string
state string
auxstate array
View JSON Schema on GitHub

JSON Schema

solaris-zones-zone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Zone",
  "title": "Zone",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "brand": {
      "type": "string",
      "example": "example_value"
    },
    "id": {
      "type": "integer",
      "example": "abc123"
    },
    "uuid": {
      "type": "string",
      "format": "uuid",
      "example": "500123"
    },
    "state": {
      "type": "string",
      "enum": [
        "configured",
        "incomplete",
        "installed",
        "ready",
        "running",
        "shutting_down",
        "down"
      ],
      "example": "configured"
    },
    "auxstate": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}