Files
codex/codex-rs/app-server-protocol/schema/json/v2/ThreadCreateApiKeyStartResponse.json
2026-04-07 13:27:10 -04:00

46 lines
935 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"oneOf": [
{
"properties": {
"status": {
"enum": [
"alreadySet"
],
"title": "AlreadySetv2::ThreadCreateApiKeyStartResponseStatus",
"type": "string"
}
},
"required": [
"status"
],
"title": "AlreadySetv2::ThreadCreateApiKeyStartResponse",
"type": "object"
},
{
"properties": {
"authUrl": {
"type": "string"
},
"callbackPort": {
"format": "uint16",
"minimum": 0.0,
"type": "integer"
},
"status": {
"enum": [
"started"
],
"type": "string"
}
},
"required": [
"authUrl",
"callbackPort",
"status"
],
"type": "object"
}
],
"title": "ThreadCreateApiKeyStartResponse"
}