-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jordan Rash <jordan@synadia.com>
- Loading branch information
1 parent
6092a84
commit 2238c97
Showing
6 changed files
with
98 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "io.nats.nex.v2.agent_heartbeat", | ||
"title": "AgentHeartbeat", | ||
"type": "object", | ||
"properties": { | ||
}, | ||
"required": [], | ||
"additionalProperties": false | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "io.nats.nex.v2.agent_heartbeat", | ||
"title": "AgentHeartbeat", | ||
"type": "object", | ||
"properties": {}, | ||
"required": [ | ||
], | ||
"additionalProperties": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "shared", | ||
"title": "WorkloadSummary", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"description": "The unique identifier of the workload" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "The name of the workload" | ||
}, | ||
"start_time": { | ||
"type": "string", | ||
"description": "The start time of the workload" | ||
}, | ||
"runtime": { | ||
"type": "string", | ||
"description": "The runtime of the workload" | ||
}, | ||
"workload_type": { | ||
"type": "string", | ||
"description": "The type of the workload" | ||
}, | ||
"workload_runtype": { | ||
"type": "string", | ||
"description": "The runtype/lifecycle of the workload" | ||
}, | ||
"workload_state": { | ||
"type": "string", | ||
"description": "The state of the workload" | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"name", | ||
"start_time", | ||
"runtime", | ||
"workload_type", | ||
"workload_runtype", | ||
"workload_state" | ||
] | ||
} |