Has specimen leaf node


URI

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

Label

Has specimen

Description

reversed relation, For Specimen: The person from whom the specimen is collected.

Usage

DOMAINPROPERTYRANGE
Person Has specimen Specimen

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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:has_specimen a owl:ObjectProperty ;
    rdfs:label "Has specimen"^^xsd:string ;
    owlready:python_name "specimens"^^xsd:string ;
    rdfs:comment "reversed relation, For Specimen: The person from whom the specimen is collected."@en ;
    rdfs:domain omop:Person ;
    rdfs:range omop:Specimen ;
    omop:omop_cdm_name "specimen.person_id#208 AS Person"^^xsd:string .