Has subject leaf node


URI

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

Label

Has subject

Description

For Cohort Definition: This field contains a Concept that represents the domain of the subjects that are members of the cohort (e.g., Person, Provider, Visit).

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) Has subject owl:Thing (inferred)

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix owlready: <http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.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:has_subject a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has subject"^^xsd:string ;
    owlready:python_name "subject"^^xsd:string ;
    rdfs:comment "For Cohort Definition: This field contains a Concept that represents the domain of the subjects that are members of the cohort (e.g., Person, Provider, Visit)."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( omop:CohortDefinition omop:Cohort ) ] ;
    omop:omop_cdm_name "cohort.subject_id#424 AS Thing"^^xsd:string,
        "cohort_definition.subject_concept_id#432 AS Concept"^^xsd:string .