You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/live-status-gateway/api/schemas/packages.yaml
+23-5Lines changed: 23 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -30,9 +30,27 @@ $defs:
30
30
packageName:
31
31
description: Name of the package
32
32
type: string
33
-
statusCode:
34
-
description: Status code
35
-
type: number
33
+
status:
34
+
type: string
35
+
enum:
36
+
- unknown
37
+
- ok
38
+
- source_broken
39
+
- source_has_issues
40
+
- source_missing
41
+
- source_not_ready
42
+
- source_not_set
43
+
- source_unknown_state
44
+
description: |
45
+
Status:
46
+
* `unknown` - status not determined (yet)
47
+
* `ok` - no faults, can be played
48
+
* `source_broken` - the source is present, but should not be played due to a technical malfunction (file is broken, camera robotics failed, REMOTE input is just bars, etc.)
49
+
* `source_has_issues` - technically it can be played, but some issues with it were detected
50
+
* `source_missing` - the source (file, live input) is missing and cannot be played
51
+
* `source_not_ready` - can't be played for a non-technical reason (e.g. a placeholder clip with no content)
52
+
* `source_not_set` - missing a file path
53
+
* `source_unknown_state` - reported, but unrecognized state
36
54
rundownId:
37
55
description: Id of the Rundown that a Piece (or AdLib) expecting this package belongs to
38
56
type: string
@@ -51,11 +69,11 @@ $defs:
51
69
previewUrl:
52
70
description: URL where the preview can be accessed
0 commit comments