Files
codex/codex-rs/app-server-protocol/schema/json/v2/LoginAccountParams.json
Charles Cunningham c9ef76fde6 register experimental app-server enum variants
Co-authored-by: Codex <noreply@openai.com>
2026-03-08 17:22:16 -07:00

42 lines
831 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"oneOf": [
{
"properties": {
"apiKey": {
"type": "string"
},
"type": {
"enum": [
"apiKey"
],
"title": "ApiKeyv2::LoginAccountParamsType",
"type": "string"
}
},
"required": [
"apiKey",
"type"
],
"title": "ApiKeyv2::LoginAccountParams",
"type": "object"
},
{
"properties": {
"type": {
"enum": [
"chatgpt"
],
"title": "Chatgptv2::LoginAccountParamsType",
"type": "string"
}
},
"required": [
"type"
],
"title": "Chatgptv2::LoginAccountParams",
"type": "object"
}
],
"title": "LoginAccountParams"
}