23 lines
435 B
JSON
23 lines
435 B
JSON
{
|
|
"$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"
|
|
]
|
|
}
|
|
}
|
|
} |