Name leaf node


URI

https://w3id.org/omop/ontology/name

Label

Name

Description

For Care Site: The name of the care_site as it appears in the source data - For Concept: An unambiguous, meaningful and descriptive name for the Concept. - For Concept Class: The name describing the Concept Class, e.g.
Clinical Finding, Ingredient, etc. - For Vocabulary: The name describing the vocabulary, for
example International Classification of
Diseases, Ninth Revision, Clinical
Modification, Volume 1 and 2 (NCHS) etc. - For Domain: The name describing the Domain, e.g.
Condition, Procedure, Measurement
etc. - For Cdm Source: The name of the CDM instance. - For Cohort Definition: A short description of the cohort - For Provider: This field is not necessary as it is not necessary to have the actual identity of the Provider. Rather, the idea is to uniquely and anonymously identify providers of care across the database.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) Name string

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:name a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Name"^^xsd:string ;
    rdfs:comment "For Care Site: The name of the care_site as it appears in the source data"@en,
        "For Cdm Source: The name of the CDM instance."@en,
        "For Cohort Definition: A short description of the cohort"@en,
        """For Concept Class: The name describing the Concept Class, e.g.
Clinical Finding, Ingredient, etc."""@en,
        "For Concept: An unambiguous, meaningful and descriptive name for the Concept."@en,
        """For Domain: The name describing the Domain, e.g.
Condition, Procedure, Measurement
etc."""@en,
        "For Provider: This field is not necessary as it is not necessary to have the actual identity of the Provider. Rather, the idea is to uniquely and anonymously identify providers of care across the database."@en,
        """For Vocabulary: The name describing the vocabulary, for
example International Classification of
Diseases, Ninth Revision, Clinical
Modification, Volume 1 and 2 (NCHS) etc."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( omop:CareSite omop:ConceptSynonym omop:Domain omop:CdmSource omop:Provider omop:Metadata omop:CohortDefinition omop:Vocabulary omop:Concept omop:Relationship omop:ConceptClass ) ] ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "care_site.care_site_name#268 AS str"^^xsd:string,
        "cdm_source.cdm_source_name#352 AS str"^^xsd:string,
        "cohort_definition.cohort_definition_name#428 AS str"^^xsd:string,
        "concept.concept_name#363 AS str"^^xsd:string,
        "concept_class.concept_class_name#381 AS str"^^xsd:string,
        "concept_synonym.concept_synonym_name#396 AS str"^^xsd:string,
        "domain.domain_name#378 AS str"^^xsd:string,
        "metadata.name#347 AS str"^^xsd:string,
        "provider.provider_name#274 AS str"^^xsd:string,
        "relationship.relationship_name#390 AS str"^^xsd:string,
        "vocabulary.vocabulary_name#373 AS str"^^xsd:string .