Solaris Zones · Schema

CreateZoneRequest

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
name string Name of the new zone
path string Zone root path
template string Zone brand template (e.g., SYSdefault)
View JSON Schema on GitHub

JSON Schema

solaris-zones-createzonerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateZoneRequest",
  "title": "CreateZoneRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the new zone",
      "example": "Example Title"
    },
    "path": {
      "type": "string",
      "description": "Zone root path",
      "example": "example_value"
    },
    "template": {
      "type": "string",
      "description": "Zone brand template (e.g., SYSdefault)",
      "default": "SYSdefault",
      "example": "example_value"
    }
  }
}