Files
codex/codex-rs/app-server-protocol/schema/json/v2/EnvironmentRegisterResponse.json
starr-openai a2e6e19c1e Add app-server environment registry for exec-server routing
Expose app-server environment register/list RPCs, persist environment selection through thread lifecycle flows, and cover the new routing behavior with app-server tests.

Co-authored-by: Codex <noreply@openai.com>
2026-04-14 12:55:08 -07:00

32 lines
570 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"EnvironmentInfo": {
"properties": {
"execServerUrl": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}
},
"properties": {
"environment": {
"$ref": "#/definitions/EnvironmentInfo"
}
},
"required": [
"environment"
],
"title": "EnvironmentRegisterResponse",
"type": "object"
}