Files
codex/codex-rs/app-server-protocol/schema/json/v2/EnvironmentListResponse.json
2026-04-15 18:49:21 -07:00

41 lines
718 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"EnvironmentListEntry": {
"properties": {
"environmentId": {
"type": "string"
},
"execServerUrl": {
"type": [
"string",
"null"
]
}
},
"required": [
"environmentId"
],
"type": "object"
}
},
"properties": {
"data": {
"items": {
"$ref": "#/definitions/EnvironmentListEntry"
},
"type": "array"
},
"nextCursor": {
"type": [
"string",
"null"
]
}
},
"required": [
"data"
],
"title": "EnvironmentListResponse",
"type": "object"
}