mirror of
https://github.com/openai/codex.git
synced 2026-04-28 16:45:54 +00:00
22 lines
420 B
JSON
22 lines
420 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"AddCreditsNudgeCreditType": {
|
|
"enum": [
|
|
"credits",
|
|
"usage_limit"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"creditType": {
|
|
"$ref": "#/definitions/AddCreditsNudgeCreditType"
|
|
}
|
|
},
|
|
"required": [
|
|
"creditType"
|
|
],
|
|
"title": "SendAddCreditsNudgeEmailParams",
|
|
"type": "object"
|
|
} |