https://w3id.org/omop/ontology/gender_source_value
For Person: This field is used to store the biological sex of the person from the source data. It is not intended for use in standard analytics but for reference only.
Put the biological sex of the person as it appears in the source data. - For Provider: This is provider's gender as it appears in the source data.
Put the provider's gender as it appears in the source data. This field is up to the discretion of the ETL-er as to whether this should be the coded value from the source or the text description of the lookup value.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Base person | Gender source value | string |
@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
omop:gender_source_value a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:label "Gender source value"^^xsd:string ;
rdfs:comment """For Person: This field is used to store the biological sex of the person from the source data. It is not intended for use in standard analytics but for reference only.
Put the biological sex of the person as it appears in the source data."""@en,
"""For Provider: This is provider's gender as it appears in the source data.
Put the provider's gender as it appears in the source data. This field is up to the discretion of the ETL-er as to whether this should be the coded value from the source or the text description of the lookup value."""@en ;
rdfs:domain omop:BasePerson ;
rdfs:range xsd:string ;
omop:omop_cdm_name "person.gender_source_value#14 AS str"^^xsd:string,
"provider.gender_source_value#284 AS str"^^xsd:string .