mirror of
https://github.com/openai/codex.git
synced 2026-04-25 15:15:15 +00:00
72 lines
1.3 KiB
JSON
72 lines
1.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"AlarmDelivery": {
|
|
"enum": [
|
|
"after-turn",
|
|
"steer-current-turn"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"ThreadAlarm": {
|
|
"properties": {
|
|
"createdAt": {
|
|
"format": "int64",
|
|
"type": "integer"
|
|
},
|
|
"cronExpression": {
|
|
"type": "string"
|
|
},
|
|
"delivery": {
|
|
"$ref": "#/definitions/AlarmDelivery"
|
|
},
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"lastRunAt": {
|
|
"format": "int64",
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
},
|
|
"nextRunAt": {
|
|
"format": "int64",
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
},
|
|
"prompt": {
|
|
"type": "string"
|
|
},
|
|
"runOnce": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"required": [
|
|
"createdAt",
|
|
"cronExpression",
|
|
"delivery",
|
|
"id",
|
|
"prompt",
|
|
"runOnce"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"alarm": {
|
|
"$ref": "#/definitions/ThreadAlarm"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"alarm",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadAlarmFiredNotification",
|
|
"type": "object"
|
|
} |