{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "WindowsSandboxReadinessResponse", "type": "object", "required": [ "status" ], "properties": { "status": { "$ref": "#/definitions/WindowsSandboxReadiness" } }, "definitions": { "WindowsSandboxReadiness": { "type": "string", "enum": [ "ready", "notConfigured", "updateRequired" ] } } }