From 91b1f921058e0d8046af07dab0c9a7cc44f98b3a Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Tue, 25 Oct 2022 10:19:02 +0000 Subject: [PATCH] Bug 32030: ERM Licenses - Make field 'type' not nullable, it isn't nullable in the DB schema or the vuejs frontend form. Signed-off-by: Jonathan Field Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- api/v1/swagger/definitions/erm_license.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/v1/swagger/definitions/erm_license.yaml b/api/v1/swagger/definitions/erm_license.yaml index 87c2da766f..f17f92d548 100644 --- a/api/v1/swagger/definitions/erm_license.yaml +++ b/api/v1/swagger/definitions/erm_license.yaml @@ -20,9 +20,7 @@ properties: - "null" type: description: description of the license - type: - - string - - "null" + type: string status: description: status of the license type: string @@ -54,3 +52,4 @@ required: - license_id - name - status + - type \ No newline at end of file -- 2.20.1