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

[DC-3785] Update person_ext schema to include self_reported_population #1861

Merged
merged 2 commits into from
May 6, 2024
Merged
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
@@ -1,8 +1,8 @@
[
{
"type": "integer",
"name": "person_id",
"mode": "required",
"type": "integer",
"name": "person_id",
"mode": "required",
"description": "A unique identifier for each person."
},
{
Expand All @@ -12,33 +12,51 @@
"description": "A foreign key to the participant's source EHR site."
},
{
"type": "integer",
"name": "state_of_residence_concept_id",
"mode": "nullable",
"type": "integer",
"name": "state_of_residence_concept_id",
"mode": "nullable",
"description": "[All of Us OMOP extension] A foreign key to the participant's state of residence concept."
},
{
"type": "string",
"name": "state_of_residence_source_value",
"mode": "nullable",
"type": "string",
"name": "state_of_residence_source_value",
"mode": "nullable",
"description": "[All of Us OMOP extension] The source code for the participant's state of residence."
},
{
"type": "integer",
"name": "sex_at_birth_concept_id",
"mode": "nullable",
"type": "integer",
"name": "sex_at_birth_concept_id",
"mode": "nullable",
"description": "[All of Us OMOP extension] A foreign key to the biological sex at birth concept."
},
},
{
"type": "integer",
"name": "sex_at_birth_source_concept_id",
"mode": "nullable",
"type": "integer",
"name": "sex_at_birth_source_concept_id",
"mode": "nullable",
"description": "[All of Us OMOP extension] A foreign key to the biological sex at birth source concept."
},
},
{
"type": "string",
"name": "sex_at_birth_source_value",
"mode": "nullable",
"type": "string",
"name": "sex_at_birth_source_value",
"mode": "nullable",
"description": "[All of Us OMOP extension] The source code for the biological sex at birth."
},
{
"type": "integer",
"name": "self_reported_population_concept_id",
"mode": "nullable",
"description": "[All of Us OMOP extension] A foreign key to the participant's self-reported population concept."
},
{
"type": "integer",
"name": "self_reported_population_source_concept_id",
"mode": "nullable",
"description": "[All of Us OMOP extension] A foreign key to the participant's self-reported population source concept."
},
{
"type": "string",
"name": "self_reported_population_source_value",
"mode": "nullable",
"description": "[All of Us OMOP extension] The source code for the participant's self reported population."
}
]