Files
codex/codex-rs/app-server-protocol/schema/json/v2/ThreadCreateApiKeyFinishResponse.json
2026-04-05 18:07:48 -04:00

33 lines
581 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"defaultProjectId": {
"type": "string"
},
"defaultProjectTitle": {
"type": [
"string",
"null"
]
},
"organizationId": {
"type": "string"
},
"organizationTitle": {
"type": [
"string",
"null"
]
},
"projectApiKey": {
"type": "string"
}
},
"required": [
"defaultProjectId",
"organizationId",
"projectApiKey"
],
"title": "ThreadCreateApiKeyFinishResponse",
"type": "object"
}