Countries:ISO3166DefinedCountry leaf node


URI

http://www.bpiresearch.com/BPMO/2004/03/03/cdl/Countries#ISO3166DefinedCountry

Label

ISO3166DefinedCountry

Description

The International Standards Organization (ISO) maintains a list of country codes since 1974. Other standards bodies have adopted the ISO 3166 code list.

Usage

Instances of Countries:ISO3166DefinedCountry can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class Countries:ISO3166DefinedCountry
Countries:countryCodeISO3166Alpha2 owl:DatatypeProperty ISO 3166 Alpha 2 xsd:string
Countries:countryCodeISO3166Alpha3 owl:DatatypeProperty ISO 3166 Alpha 3 xsd:string
Countries:countryCodeUNNumeric3 owl:DatatypeProperty UN Numeric Code xsd:int
Countries:countryNameISO3166OfficialName owl:DatatypeProperty xsd:string
Countries:countryNameISO3166Short owl:DatatypeProperty xsd:string
Countries:referencesCountry owl:FunctionalProperty owl:Thing
From class owl:Thing
Countries:creationTimestamp owl:DatatypeProperty xsd:dateTime
Countries:deletionTimestamp owl:DatatypeProperty xsd:dateTime
Countries:modificationTimestamp owl:DatatypeProperty xsd:dateTime

Implementation

@prefix : <http://www.bpiresearch.com/BPMO/2004/03/03/cdl/Countries#> .
@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#> .

:ISO3166DefinedCountry a owl:Class ;
    rdfs:comment "The International Standards Organization (ISO) maintains a list of country codes since 1974. Other standards bodies have adopted the ISO 3166 code list." ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:int ;
            owl:onProperty :referencesCountry ],
        [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:int ;
            owl:onProperty :countryNameISO3166Short ],
        [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:int ;
            owl:onProperty :countryCodeISO3166Alpha3 ],
        [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:int ;
            owl:onProperty :countryCodeUNNumeric3 ],
        [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:int ;
            owl:onProperty :countryCodeISO3166Alpha2 ] .