Skip to content

Commit 02aec57

Browse files
Replaced Property with Properties
Signed-off-by: Anshukumar123975 <[email protected]>
1 parent 0341521 commit 02aec57

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/metamodel/concerto_metamodel_1_0_0.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,8 @@ pub struct Properties {
321321
#[serde(
322322
rename = "isArray",
323323
)]
324-
pub is_array: bool,
325-
324+
pub is_array: Option<bool>,
325+
326326
#[serde(
327327
rename="decorators",
328328
)]

src/model_file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ impl ModelFile {
111111
name: "$class".to_string(),
112112
r#type: None,
113113
is_optional: Some(false),
114-
is_array: false,
114+
is_array: Some(false),
115115
decorators: None,
116116
validator: None,
117117
length_validator: None,

0 commit comments

Comments
 (0)