Zip leaf node


URI

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

Label

Zip

Description

For Location: Zip codes are handled as strings of up to 9 characters length. For US addresses, these represent either a 3-digit abbreviated Zip code as provided by many sources for patient protection reasons, the full 5-digit Zip or the 9-digit (ZIP + 4) codes. Unless for specific reasons analytical methods should expect and utilize only the first 3 digits. For international addresses, different rules apply.

Usage

DOMAINPROPERTYRANGE
Location Zip 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:zip a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Zip"^^xsd:string ;
    rdfs:comment "For Location: Zip codes are handled as strings of up to 9 characters length. For US addresses, these represent either a 3-digit abbreviated Zip code as provided by many sources for patient protection reasons, the full 5-digit Zip or the 9-digit (ZIP + 4) codes. Unless for specific reasons analytical methods should expect and utilize only the first 3 digits. For international addresses, different rules apply."@en ;
    rdfs:domain omop:Location ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "location.zip#256 AS str"^^xsd:string .