Files
codex/codex-rs/app-server-protocol/schema/json/v1/InitializeResponse.json
2026-03-24 15:08:20 -07:00

28 lines
753 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"codexHome": {
"description": "Absolute path to the server's Codex home directory.",
"type": "string"
},
"platformFamily": {
"description": "Platform family for the running app-server target, for example `\"unix\"` or `\"windows\"`.",
"type": "string"
},
"platformOs": {
"description": "Operating system for the running app-server target, for example `\"macos\"`, `\"linux\"`, or `\"windows\"`.",
"type": "string"
},
"userAgent": {
"type": "string"
}
},
"required": [
"codexHome",
"platformFamily",
"platformOs",
"userAgent"
],
"title": "InitializeResponse",
"type": "object"
}