diff options
Diffstat (limited to 'core/openapi-full.json')
-rw-r--r-- | core/openapi-full.json | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/core/openapi-full.json b/core/openapi-full.json index 36ff35d55b9..d6f9837b1c6 100644 --- a/core/openapi-full.json +++ b/core/openapi-full.json @@ -538,7 +538,10 @@ "output", "customId", "completionExpectedAt", - "progress" + "progress", + "scheduledAt", + "startedAt", + "endedAt" ], "properties": { "id": { @@ -590,6 +593,21 @@ "type": "number", "format": "double", "nullable": true + }, + "scheduledAt": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "startedAt": { + "type": "integer", + "format": "int64", + "nullable": true + }, + "endedAt": { + "type": "integer", + "format": "int64", + "nullable": true } } }, |