Files
codex-telegram-bot/schemas/v2/WindowsSandboxReadinessResponse.json
2026-05-21 08:40:16 +00:00

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"
]
}
}
}