Skip to content

Commit aeb3156

Browse files
authored
Merge pull request #1616 from HumanCellAtlas/ac-fix-collection-institute-Issue1614
Fix collection_institute reference typo
2 parents 810aff4 + 3e42411 commit aeb3156

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and (starting with v4.0.0) this project adheres to [Semantic Versioning](http://
77

88
## [Unreleased](https://github.com/HumanCellAtlas/metadata-schema/tree/staging)
99

10+
### [type/biomaterial/specimen_from_organism.json - v11.0.0] - 2025-04-29
11+
### Fixed
12+
Fixed typo in specimen_from_organism collection_institute field
13+
1014
## [Released](https://github.com/HumanCellAtlas/metadata-schema/)
1115

1216
### [type/biomaterial/cell_suspension.json - v14.1.0] - 2025-04-08

docs/jsonBrowser/type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ adjacent_diseases | Short description of the disease(s) adjacent to the specimen
355355
state_of_specimen | State of the specimen at the time of collection. | object | no | [See module state_of_specimen](module.md#state-of-specimen) | State of specimen | |
356356
preservation_storage | Information about how a specimen was preserved and/or stored over a period of time. | object | no | [See module preservation_storage](module.md#preservation-storage) | Preservation/Storage | |
357357
collection_time | When the biomaterial was collected. | string | no | | Time of collection | | 2016-01-21T00:00:00Z; 2016-03
358-
collection_institute | Institute where the biomaterial was collected on. | object | no | [See module organ_ontology](module.md#organ-ontology) | Collection institute | |
358+
collection_institute | Institute where the biomaterial was collected on. | object | no | [See module collection_institute](module.md#collection-institute) | Collection institute | |
359359
purchased_specimen | Information about a purchased specimen. | object | no | [See module purchased_reagents](module.md#purchased-reagents) | Purchased specimen | |
360360

361361
## Cell suspension

json_schema/type/biomaterial/specimen_from_organism.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
"collection_institute": {
121121
"description": "Institute where the biomaterial was collected on.",
122122
"type": "object",
123-
"$ref": "module/ontology/organ_ontology.json",
123+
"$ref": "module/biomaterial/collection_institute.json",
124124
"user_friendly": "Collection institute"
125125
},
126126
"purchased_specimen": {

json_schema/versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"last_update_date": "2025-04-08T09:53:05Z",
2+
"last_update_date": "2025-04-29T11:53:30Z",
33
"version_numbers": {
44
"core": {
55
"biomaterial": {
@@ -99,7 +99,7 @@
9999
"donor_organism": "18.0.0",
100100
"imaged_specimen": "3.5.0",
101101
"organoid": "11.5.0",
102-
"specimen_from_organism": "10.10.0"
102+
"specimen_from_organism": "11.0.0"
103103
},
104104
"file": {
105105
"analysis_file": "8.0.0",

src/schema_linter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
# Property attributes
3333

34-
property_attributes = ['description', 'type', 'pattern', 'example', 'enum', '$ref', 'user_friendly', 'items', 'guidelines', 'format', 'comment', 'maximum', 'minimum', 'oneOf', 'oneOf', 'bionetworks']
34+
property_attributes = ['description', 'type', 'pattern', 'example', 'enum', '$ref', 'user_friendly', 'items', 'guidelines', 'format', 'comment', 'maximum', 'minimum', 'oneOf', 'oneOf', 'bionetworks', 'minLength']
3535

3636
ontology_attributes = ['graph_restriction', 'ontologies', 'classes', 'relations', 'direct', 'include_self']
3737

0 commit comments

Comments
 (0)