Rename job scheduler to alarm scheduler

This commit is contained in:
Eric Traut
2026-04-06 15:21:37 -07:00
parent e89966159b
commit 5fb56e2cf1
56 changed files with 2008 additions and 1369 deletions

View File

@@ -0,0 +1,75 @@
{
"$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": {
"alarms": {
"items": {
"$ref": "#/definitions/ThreadAlarm"
},
"type": "array"
},
"threadId": {
"type": "string"
}
},
"required": [
"alarms",
"threadId"
],
"title": "ThreadAlarmUpdatedNotification",
"type": "object"
}