···11+{
22+ "lexicon": 1,
33+ "id": "systems.gaze.barometer.status.degraded",
44+ "defs": {
55+ "main": {
66+ "type": "token",
77+ "description": "represents that a service / check is not working as it should"
88+ }
99+ }
1010+}
-10
lexicon/status/failed.json
···11-{
22- "lexicon": 1,
33- "id": "systems.gaze.barometer.status.failed",
44- "defs": {
55- "main": {
66- "type": "token",
77- "description": "Token representing a failed state in the barometer system"
88- }
99- }
1010-}
+10
lexicon/status/healthy.json
···11+{
22+ "lexicon": 1,
33+ "id": "systems.gaze.barometer.status.healthy",
44+ "defs": {
55+ "main": {
66+ "type": "token",
77+ "description": "represents that a service / check is working properly"
88+ }
99+ }
1010+}
-10
lexicon/status/passed.json
···11-{
22- "lexicon": 1,
33- "id": "systems.gaze.barometer.status.passed",
44- "defs": {
55- "main": {
66- "type": "token",
77- "description": "Token representing a passed state in the barometer system"
88- }
99- }
1010-}
+1-1
lexicon/status/unknown.json
···44 "defs": {
55 "main": {
66 "type": "token",
77- "description": "Token representing an unknown state in the barometer system"
77+ "description": "represents that the state of the service / check is unknown (only used for first from field in a state record)"
88 }
99 }
1010}
+2-2
lib/src/lexicons/index.ts
···22export * as SystemsGazeBarometerHost from "./types/systems/gaze/barometer/host.js";
33export * as SystemsGazeBarometerService from "./types/systems/gaze/barometer/service.js";
44export * as SystemsGazeBarometerState from "./types/systems/gaze/barometer/state.js";
55-export * as SystemsGazeBarometerStatusFailed from "./types/systems/gaze/barometer/status/failed.js";
66-export * as SystemsGazeBarometerStatusPassed from "./types/systems/gaze/barometer/status/passed.js";
55+export * as SystemsGazeBarometerStatusDegraded from "./types/systems/gaze/barometer/status/degraded.js";
66+export * as SystemsGazeBarometerStatusHealthy from "./types/systems/gaze/barometer/status/healthy.js";
77export * as SystemsGazeBarometerStatusUnknown from "./types/systems/gaze/barometer/status/unknown.js";