From 49adc99bf13d151261bbaf874fd22db1f4250f02 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 10 Jan 2024 10:13:26 +0000 Subject: [PATCH] Bug 35757: Add new fields to api definitions The counter registry API has added a new field to both the counter registry and sushi service endpoints. This patch adds those new fields to the definitions. Signed-off-by: David Nind --- api/v1/swagger/definitions/erm_counter_registry.yaml | 3 +++ api/v1/swagger/definitions/erm_sushi_service.yaml | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/api/v1/swagger/definitions/erm_counter_registry.yaml b/api/v1/swagger/definitions/erm_counter_registry.yaml index 93c8ac49429..29edab0a884 100644 --- a/api/v1/swagger/definitions/erm_counter_registry.yaml +++ b/api/v1/swagger/definitions/erm_counter_registry.yaml @@ -52,6 +52,9 @@ properties: type: array items: type: object + audited: + description: has the record been audited? + type: boolean additionalProperties: false diff --git a/api/v1/swagger/definitions/erm_sushi_service.yaml b/api/v1/swagger/definitions/erm_sushi_service.yaml index e6f0b6895de..64d9452ea90 100644 --- a/api/v1/swagger/definitions/erm_sushi_service.yaml +++ b/api/v1/swagger/definitions/erm_sushi_service.yaml @@ -109,6 +109,11 @@ properties: type: - string - "null" + migrations: + description: migrations for the sushi service + type: array + items: + type: object additionalProperties: false -- 2.30.2