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

22 lines
561 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Register or replace a named execution environment.",
"properties": {
"environmentId": {
"description": "Logical environment identifier used by thread and fs APIs.",
"type": "string"
},
"execServerUrl": {
"description": "Optional exec-server websocket URL; omit for local execution.",
"type": [
"string",
"null"
]
}
},
"required": [
"environmentId"
],
"title": "EnvironmentRegisterParams",
"type": "object"
}