From f49a542ddf5142d040b5c91431bef9a79b7f068e Mon Sep 17 00:00:00 2001 From: Sovran_Systems <99053422+naturallaw777@users.noreply.github.com> Date: Sat, 4 Apr 2026 09:27:06 -0500 Subject: [PATCH] Update service data model to include requiresDomain and domain status fields. --- path/to/service_model.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 path/to/service_model.js diff --git a/path/to/service_model.js b/path/to/service_model.js new file mode 100644 index 0000000..a1c8c78 --- /dev/null +++ b/path/to/service_model.js @@ -0,0 +1,15 @@ +// Update the service data model to include requiresDomain and domain status fields. + +class Service { + String name; + boolean requiresDomain; + DomainStatus domainStatus; +} + +// Enum to represent domain status health checks for services +enum DomainStatus { + MISSING, + MISCONFIGURED, + CONNECTED, + UNKNOWN +} \ No newline at end of file