Skip to content

Commit

Permalink
[DC-3785] Update person_ext schema to include self_reported_population (
Browse files Browse the repository at this point in the history
#1861)

* [DC-3785] Add columns for self-report

* [DC-3785] Update schema indent
  • Loading branch information
nishanthpp93 authored May 6, 2024
1 parent f1c960e commit fb47828
Showing 1 changed file with 38 additions and 20 deletions.
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."
}
]

0 comments on commit fb47828

Please sign in to comment.