{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "DomainStatusReport", "type": "object", "properties": { "complete": { "type": "boolean", "description": "The status of the report", "example": true }, "id": { "type": "string", "description": "The UUID of the report", "example": "6a6d5dbd-5cac-41d5-8f3f-14a3e8ae6f76" }, "install_name": { "type": "string", "description": "Name of the install" }, "install_ip": { "type": "string", "description": "IP address for the install" }, "admin": { "type": "boolean", "description": "Admin status", "example": false }, "domains": { "type": "array", "description": "The list of domains associated with this report", "items": { "$ref": "#/definitions/DomainStatus" } } } }