Files
codex/codex-rs/app-server-protocol/schema/json/v1/InitializeResponse.json
2026-03-12 16:39:39 -07:00

21 lines
363 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"platformFamily": {
"type": "string"
},
"platformOs": {
"type": "string"
},
"userAgent": {
"type": "string"
}
},
"required": [
"platformFamily",
"platformOs",
"userAgent"
],
"title": "InitializeResponse",
"type": "object"
}