{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ZoneDetail", "type": "object", "description": "Detailed information about a specific Solaris zone", "properties": { "name": { "type": "string", "description": "Zone name" }, "id": { "type": "integer", "description": "Zone numeric ID assigned by the kernel when the zone is running" }, "uuid": { "type": "string", "description": "Universally unique identifier for the zone" }, "state": { "type": "string", "description": "Current zone state" }, "brand": { "type": "string", "description": "Zone brand determining the runtime environment" }, "auxstate": { "type": "array", "description": "Auxiliary state information for the zone" } } }