-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessing_checkpoints.json
More file actions
34 lines (34 loc) · 1.05 KB
/
processing_checkpoints.json
File metadata and controls
34 lines (34 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"$schema": "https://json-schema.org/draft-07/schema",
"x-cs-indexable-fields": [
{ "field": "/workflow_id", "type": "string", "fql_name": "workflow_id" },
{ "field": "/status", "type": "string", "fql_name": "status" },
{ "field": "/last_processed_timestamp", "type": "integer", "fql_name": "last_processed_timestamp" }
],
"type": "object",
"properties": {
"workflow_id": {
"type": "string",
"description": "Unique identifier for the workflow"
},
"last_processed_timestamp": {
"type": "integer",
"description": "Unix timestamp of last processed event"
},
"processed_count": {
"type": "integer",
"minimum": 0,
"description": "Number of events processed"
},
"last_updated": {
"type": "integer",
"description": "Unix timestamp of checkpoint update"
},
"status": {
"type": "string",
"enum": ["running", "completed", "failed"],
"description": "Current processing status"
}
},
"required": ["workflow_id", "last_processed_timestamp", "status"]
}