{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "WindowsSandboxSetupCompletedNotification", "type": "object", "required": [ "mode", "success" ], "properties": { "error": { "type": [ "string", "null" ] }, "mode": { "$ref": "#/definitions/WindowsSandboxSetupMode" }, "success": { "type": "boolean" } }, "definitions": { "WindowsSandboxSetupMode": { "type": "string", "enum": [ "elevated", "unelevated" ] } } }