From 57326cf8bf35f4f15cf2617f479c995b207d72ef Mon Sep 17 00:00:00 2001 From: Jerome Cambon Date: Fri, 24 May 2024 14:31:07 +0200 Subject: [PATCH] fix(advanced): Fix advanced and editable properties in examples --- openapi/components/schemas/AdvancedApplication.yaml | 4 ++-- openapi/components/schemas/LegacyApplication.yaml | 4 ++-- openapi/paths/API@living@application.yaml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/openapi/components/schemas/AdvancedApplication.yaml b/openapi/components/schemas/AdvancedApplication.yaml index 0338ab2..df6f953 100644 --- a/openapi/components/schemas/AdvancedApplication.yaml +++ b/openapi/components/schemas/AdvancedApplication.yaml @@ -12,7 +12,7 @@ allOf: description: Contains the meta information of an advanced Bonita Living Application. example: id: "306" - advanced: true + advanced: "true" creationDate: "1411548289900" icon: "" createdBy": "1" @@ -23,6 +23,6 @@ example: displayName: "My advanced app" updatedBy: "1" visibility: "ALL" - editable: true + editable: "true" lastUpdateDate: "1411548289900" version: "1.0" diff --git a/openapi/components/schemas/LegacyApplication.yaml b/openapi/components/schemas/LegacyApplication.yaml index 7756c6f..2cde590 100644 --- a/openapi/components/schemas/LegacyApplication.yaml +++ b/openapi/components/schemas/LegacyApplication.yaml @@ -28,7 +28,7 @@ allOf: pattern: '^[A-Za-z0-9\_\-\.]{0,250}$' example: id: "305" - advanced: false + advanced: "false" creationDate: "1411548289900" icon: "" createdBy": "1" @@ -39,7 +39,7 @@ example: displayName: "My app" updatedBy: "1" visibility: "ALL" - editable: true + editable: "true" lastUpdateDate: "1411548289900" version: "1.0" homePageId: "26" diff --git a/openapi/paths/API@living@application.yaml b/openapi/paths/API@living@application.yaml index 5cdaab6..e9b3c72 100644 --- a/openapi/paths/API@living@application.yaml +++ b/openapi/paths/API@living@application.yaml @@ -33,7 +33,7 @@ get: $ref: '../components/schemas/Application.yaml' example: - id: "306" - advanced: true + advanced: "true" creationDate: "1411548289900" icon: "" createdBy": "1" @@ -44,11 +44,11 @@ get: displayName: "My advanced app" updatedBy: "1" visibility: "ALL" - editable: true + editable: "true" lastUpdateDate: "1411548289900" version: "1.0" - id: "305" - advanced: false + advanced: "false" creationDate: "1411548289900" icon: "" createdBy": "1" @@ -59,7 +59,7 @@ get: displayName: "My app" updatedBy: "1" visibility: "ALL" - editable: true + editable: "true" lastUpdateDate: "1411548289900" version: "1.0" homePageId: "26"