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

"Add gender_identity field to donor_organism schema and create ontology module" #1541

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
10 changes: 10 additions & 0 deletions json_schema/type/biomaterial/donor_organism.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,16 @@
"user_friendly": "Biological sex",
"example": "Should be one of: male, female, mixed, or unknown."
},


"gender_identity": {
"description": "The donor's personal sense of their own gender at the time of the experiment.",
"type": "object",
"$ref": "module/ontology/gender_identity.json",
"user_friendly": "Gender Identity",
"required": false
},

"is_living": {
"description": "Whether organism was alive at time of biomaterial collection.",
"type": "string",
Expand Down
9 changes: 9 additions & 0 deletions json_schema/type/biomaterial/gender_identity.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"gender_identity": {
"description": "The donor's personal sense of their own gender at the time of the experiment.",
"type": "object",
"$ref": "module/ontology/gender_identity.json",
"user_friendly": "Gender Identity",
"required": false
},
}