mirror of
https://github.com/openai/codex.git
synced 2026-04-24 06:35:50 +00:00
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"ThreadJob": {
|
|
"properties": {
|
|
"createdAt": {
|
|
"format": "int64",
|
|
"type": "integer"
|
|
},
|
|
"cronExpression": {
|
|
"type": "string"
|
|
},
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"lastRunAt": {
|
|
"format": "int64",
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
},
|
|
"nextRunAt": {
|
|
"format": "int64",
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
},
|
|
"prompt": {
|
|
"type": "string"
|
|
},
|
|
"runOnce": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"required": [
|
|
"createdAt",
|
|
"cronExpression",
|
|
"id",
|
|
"prompt",
|
|
"runOnce"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"jobs": {
|
|
"items": {
|
|
"$ref": "#/definitions/ThreadJob"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"jobs",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadJobUpdatedNotification",
|
|
"type": "object"
|
|
} |