mirror of
https://github.com/openai/codex.git
synced 2026-05-23 12:34:25 +00:00
49 lines
886 B
JSON
Generated
49 lines
886 B
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"RuntimeInstallProgressPhase": {
|
|
"enum": [
|
|
"checking",
|
|
"downloading",
|
|
"verifying",
|
|
"extracting",
|
|
"validating",
|
|
"installed",
|
|
"configuring"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"bundleVersion": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"downloadedBytes": {
|
|
"format": "uint64",
|
|
"minimum": 0.0,
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
},
|
|
"phase": {
|
|
"$ref": "#/definitions/RuntimeInstallProgressPhase"
|
|
},
|
|
"totalBytes": {
|
|
"format": "uint64",
|
|
"minimum": 0.0,
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"phase"
|
|
],
|
|
"title": "RuntimeInstallProgressNotification",
|
|
"type": "object"
|
|
} |