mirror of
https://github.com/openai/codex.git
synced 2026-05-16 17:23:57 +00:00
80 lines
1.5 KiB
JSON
Generated
80 lines
1.5 KiB
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"RuntimeInstallManifest": {
|
|
"properties": {
|
|
"archiveName": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"archiveSha256": {
|
|
"type": "string"
|
|
},
|
|
"archiveSizeBytes": {
|
|
"format": "uint64",
|
|
"minimum": 0.0,
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
},
|
|
"archiveUrl": {
|
|
"type": "string"
|
|
},
|
|
"bundleFormatVersion": {
|
|
"format": "uint32",
|
|
"minimum": 0.0,
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
},
|
|
"bundleVersion": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"format": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"runtimeRootDirectoryName": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"archiveSha256",
|
|
"archiveUrl"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"environmentId": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"manifest": {
|
|
"$ref": "#/definitions/RuntimeInstallManifest"
|
|
},
|
|
"release": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"manifest",
|
|
"release"
|
|
],
|
|
"title": "RuntimeInstallParams",
|
|
"type": "object"
|
|
} |