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

Release from staging to master 2024-10-22 #1587

Merged
merged 9 commits into from
Oct 22, 2024
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and (starting with v4.0.0) this project adheres to [Semantic Versioning](http://

## [Released](https://github.com/HumanCellAtlas/metadata-schema/)

### [type/biomaterial/donor_organism.json - v16.4.0] - 2024-10-21
### Added
Added comorbidities field in the donor_organism Fix#1569

### [module/project/hca_bionetwork.json - v1.0.2] - 2024-10-14
### Added
Added atlas names in hca_bionetwork
Expand Down
1 change: 1 addition & 0 deletions docs/jsonBrowser/type.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ organism_age | Age of organism in Age units measured since birth. | string | no
organism_age_unit | The unit in which Age is expressed. | object | no | [See module time_unit_ontology](module.md#time-unit-ontology) | Age unit | |
development_stage | A classification of the developmental stage of the organism. | object | yes | [See module development_stage_ontology](module.md#development-stage-ontology) | Development stage | |
diseases | Short description of known disease(s) of the organism. | array | no | [See module disease_ontology](module.md#disease-ontology) | Known disease(s) | |
comorbidities | Short description of comorbidity(-ies) or secondary disease(s) of the organism. | array | no | [See module disease_ontology](module.md#disease-ontology) | Comorbidities | |
death | Information about conditions of death of the organism. | object | no | [See module death](module.md#death) | Death conditions | |
familial_relationships | Information about other organisms related to this organism. | array | no | [See module familial_relationship](module.md#familial-relationship) | Familial relationship | |
medical_tests | Information about the medical tests of the organism. | object | no | [See module medical_tests](module.md#medical-tests) | Medical tests | |
Expand Down
9 changes: 9 additions & 0 deletions json_schema/type/biomaterial/donor_organism.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,15 @@
"user_friendly": "Known disease(s)",
"guidelines": "Enter 'normal' if no known disease."
},
"comorbidities": {
"description": "Short description of comorbidity(-ies) or secondary disease(s) of the organism.",
"type": "array",
"items": {
"$ref": "module/ontology/disease_ontology.json"
},
"user_friendly": "Comorbidities",
"guidelines": "Primary disease should be described in Known diseases field. Leave empty if no comorbidities are known."
},
"death": {
"description": "Information about conditions of death of the organism.",
"type": "object",
Expand Down
4 changes: 2 additions & 2 deletions json_schema/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"last_update_date": "2024-10-14T10:11:29Z",
"last_update_date": "2024-10-21T12:21:40Z",
"version_numbers": {
"core": {
"biomaterial": {
Expand Down Expand Up @@ -93,7 +93,7 @@
"biomaterial": {
"cell_line": "16.0.0",
"cell_suspension": "14.0.0",
"donor_organism": "16.3.0",
"donor_organism": "16.4.0",
"imaged_specimen": "3.5.0",
"organoid": "11.5.0",
"specimen_from_organism": "10.9.0"
Expand Down
Loading