Files
codex/codex-rs/app-server-protocol/schema/json/v2/ThreadDependencyEnvSetParams.json
Michael Fan 575bb8a885 Align app-server create-api-key flow
Co-authored-by: Codex <noreply@openai.com>
2026-03-27 12:49:16 -04:00

20 lines
353 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"threadId": {
"type": "string"
},
"values": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
},
"required": [
"threadId",
"values"
],
"title": "ThreadDependencyEnvSetParams",
"type": "object"
}