{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ZoneMiscStats", "title": "ZoneMiscStats", "type": "object", "description": "Zone miscellaneous statistics", "properties": { "zonename": { "type": "string", "example": "example_value" }, "zone_id": { "type": "integer", "example": "500123" }, "nprocs": { "type": "integer", "description": "Number of processes in the zone", "example": 10 }, "nlwps": { "type": "integer", "description": "Number of lightweight processes in the zone", "example": 10 }, "pr_size": { "type": "integer", "format": "int64", "description": "Total process size in bytes", "example": 10 }, "pr_rss": { "type": "integer", "format": "int64", "description": "Total resident set size in bytes", "example": 10 } } }