Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(advanced): Fix advanced and editable properties in examples #171

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openapi/components/schemas/AdvancedApplication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -23,6 +23,6 @@ example:
displayName: "My advanced app"
updatedBy: "1"
visibility: "ALL"
editable: true
editable: "true"
lastUpdateDate: "1411548289900"
version: "1.0"
4 changes: 2 additions & 2 deletions openapi/components/schemas/LegacyApplication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ allOf:
pattern: '^[A-Za-z0-9\_\-\.]{0,250}$'
example:
id: "305"
advanced: false
advanced: "false"
creationDate: "1411548289900"
icon: ""
createdBy": "1"
Expand All @@ -39,7 +39,7 @@ example:
displayName: "My app"
updatedBy: "1"
visibility: "ALL"
editable: true
editable: "true"
lastUpdateDate: "1411548289900"
version: "1.0"
homePageId: "26"
Expand Down
8 changes: 4 additions & 4 deletions openapi/paths/API@[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ get:
$ref: '../components/schemas/Application.yaml'
example:
- id: "306"
advanced: true
advanced: "true"
creationDate: "1411548289900"
icon: ""
createdBy": "1"
Expand All @@ -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"
Expand All @@ -59,7 +59,7 @@ get:
displayName: "My app"
updatedBy: "1"
visibility: "ALL"
editable: true
editable: "true"
lastUpdateDate: "1411548289900"
version: "1.0"
homePageId: "26"
Expand Down