https://w3id.org/standards/smart/ontologies/core/usedInCountry
A term can be different in different countries, even if these countries all use the same language (e.g. “car boot” → UK, “car trunk” → US). - The country codes should comply with ISO 3166 (https://www.iso.org/iso-3166-country-codes.html). The alpha-2 country codes should be used.
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| smart:Term | smart:usedInCountry | xsd:string |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix smart: <https://w3id.org/standards/smart/ontologies/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
smart:usedInCountry a owl:DatatypeProperty ;
rdfs:label "used in country"@en ;
rdfs:comment "A term can be different in different countries, even if these countries all use the same language (e.g. “car boot” → UK, “car trunk” → US)."@en,
"The country codes should comply with ISO 3166 (https://www.iso.org/iso-3166-country-codes.html). The alpha-2 country codes should be used."@en ;
rdfs:domain smart:Term ;
rdfs:range xsd:string ;
rdfs:seeAlso "https://www.iec.ch/standards-development/isoiec-directives-part-2#article-header-id-26-18",
"https://www.iso.org/sites/directives/current/part2/index.xhtml#_idTextAnchor234" ;
skos:example "GB",
"GR",
"IT" .