From c6eca05f4b05ae8c4e12adca6b53e0e3825ee3c3 Mon Sep 17 00:00:00 2001 From: Camille TJHOA Date: Wed, 18 Oct 2023 17:00:31 +0200 Subject: [PATCH] fix(responses): add missing required fields (#474) --- src/schemas/ApplicationResponse.yaml | 2 ++ src/schemas/EnvironmentResponse.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/src/schemas/ApplicationResponse.yaml b/src/schemas/ApplicationResponse.yaml index fa60b4a3..2c7b9cd6 100644 --- a/src/schemas/ApplicationResponse.yaml +++ b/src/schemas/ApplicationResponse.yaml @@ -4,6 +4,8 @@ allOf: - type: object required: - healthchecks + - name + - environment properties: environment: $ref: './ReferenceObject.yaml' diff --git a/src/schemas/EnvironmentResponse.yaml b/src/schemas/EnvironmentResponse.yaml index 02c54ec8..ac37e9ce 100644 --- a/src/schemas/EnvironmentResponse.yaml +++ b/src/schemas/EnvironmentResponse.yaml @@ -6,6 +6,7 @@ allOf: - cloud_provider - mode - cluster_id + - project properties: name: type: string