Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@
public class ConceptModel {
protected String id;
protected String url;
protected String description;
protected String title;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
@AllArgsConstructor
public class ThemeModel {
protected String scheme;
protected String description;
protected String title;
protected List<ConceptModel> concepts;

}
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ public void verifyAddingPropertyWorks() {
.build();
var theme = ThemeModel.builder()
.scheme("scheme")
.description("description")
.title("title")
.concepts(Collections.singletonList(ConceptModel.builder().id("id").url("url").build()))
.concepts(Collections.singletonList(
ConceptModel.builder().id("id").url("url").description("description").title("title").build()
))
.build();
var citationString = "{\"suggestedCitation\":\"this is suggested Citation\",\"useLimitations\":[\"this is useLimitations1\",\"this is useLimitations2\"],\"otherConstraints\":[\"this is otherConstraints1\",\"this is otherConstraints2\"]}";
var statement = "This is the statement of this record";
Expand Down