Skip to content

Commit

Permalink
fix invalid aCollectionOf property definition
Browse files Browse the repository at this point in the history
  • Loading branch information
redmitry authored Sep 13, 2024
1 parent 82ee48a commit 5348523
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions framework/json/configuration/entryTypeDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
},
"aCollectionOf": {
"description": "If the entry type is a collection of other entry types, (e.g. a Dataset is a collection of Records), then this attribute must list the entry types that could be included. One collection type could be defined as included more than one entry type (e.g. a Dataset could include Individuals or Genomic Variants), in such cases the entries are alternative, meaning that a given instance of this entry type could be of only one of the types (e.g. a given Dataset contains Individuals, while another Dataset could contain Genomic Variants, but not both at once).",
"includedConcepts": {
"$ref": "../common/basicElement.json",
"type": "array"
"type": "array",
"items": {
"$ref": "../common/basicElement.json"
}
},
"additionallySupportedSchemas": {
Expand Down Expand Up @@ -65,4 +65,4 @@
],
"title": "",
"type": "object"
}
}

0 comments on commit 5348523

Please sign in to comment.