From 8a33288e456515cc8bfecdcf51536c35f930b7f5 Mon Sep 17 00:00:00 2001 From: Alexander Mattoni <5110855+mattoni@users.noreply.github.com> Date: Thu, 19 Feb 2026 19:06:25 +0000 Subject: [PATCH 1/2] turn service versions into array --- .../schemas/environments/EnvironmentMeta.yml | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/components/schemas/environments/EnvironmentMeta.yml b/components/schemas/environments/EnvironmentMeta.yml index 3b08fdb1..9d63a032 100644 --- a/components/schemas/environments/EnvironmentMeta.yml +++ b/components/schemas/environments/EnvironmentMeta.yml @@ -32,15 +32,17 @@ properties: description: A map where the key is the service and the value describes the version and date of last update. type: object additionalProperties: - type: object - required: - - version - - last_updated - properties: - version: - description: A string depicting the service version. - example: v2025.01.01.01 - type: string - last_updated: - description: The time the version was last updated. - $ref: ../DateTime.yml + type: array + items: + type: object + required: + - version + - last_updated + properties: + version: + description: A string depicting the service version. + example: v2025.01.01.01 + type: string + last_updated: + description: The time the version was last updated. + $ref: ../DateTime.yml From 3778c2861119539e9cfbffbb1c48d2e927e33537 Mon Sep 17 00:00:00 2001 From: Alexander Mattoni <5110855+mattoni@users.noreply.github.com> Date: Thu, 19 Feb 2026 19:09:40 +0000 Subject: [PATCH 2/2] add instance ID --- components/schemas/environments/EnvironmentMeta.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/schemas/environments/EnvironmentMeta.yml b/components/schemas/environments/EnvironmentMeta.yml index 9d63a032..5d9e617e 100644 --- a/components/schemas/environments/EnvironmentMeta.yml +++ b/components/schemas/environments/EnvironmentMeta.yml @@ -43,6 +43,9 @@ properties: description: A string depicting the service version. example: v2025.01.01.01 type: string + instance_id: + description: The ID of the instance of the service. + $ref: ../ID.yml last_updated: description: The time the version was last updated. $ref: ../DateTime.yml