Address 2 leaf node


URI

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

Label

Address 2

Description

For Location: This is the second line of the address

Usage

DOMAINPROPERTYRANGE
Location Address 2 string

Implementation

@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:address_2 a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Address 2"^^xsd:string ;
    rdfs:comment "For Location: This is the second line of the address"@en ;
    rdfs:domain omop:Location ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "location.address_2#253 AS str"^^xsd:string .