mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
73 lines
1.6 KiB
JSON
73 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"AddCreditsNudgeEmailResult": {
|
|
"oneOf": [
|
|
{
|
|
"properties": {
|
|
"status": {
|
|
"enum": [
|
|
"sent"
|
|
],
|
|
"title": "SentAddCreditsNudgeEmailResultStatus",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"status"
|
|
],
|
|
"title": "SentAddCreditsNudgeEmailResult",
|
|
"type": "object"
|
|
},
|
|
{
|
|
"properties": {
|
|
"status": {
|
|
"enum": [
|
|
"cooldownActive"
|
|
],
|
|
"title": "CooldownActiveAddCreditsNudgeEmailResultStatus",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"status"
|
|
],
|
|
"title": "CooldownActiveAddCreditsNudgeEmailResult",
|
|
"type": "object"
|
|
},
|
|
{
|
|
"properties": {
|
|
"message": {
|
|
"type": "string"
|
|
},
|
|
"status": {
|
|
"enum": [
|
|
"failed"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"message",
|
|
"status"
|
|
],
|
|
"type": "object"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"properties": {
|
|
"result": {
|
|
"$ref": "#/definitions/AddCreditsNudgeEmailResult"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"result",
|
|
"threadId"
|
|
],
|
|
"title": "AddCreditsNudgeEmailNotification",
|
|
"type": "object"
|
|
} |