gr:hasGlobalLocationNumber leaf node


URI

http://purl.org/goodrelations/v1#hasGlobalLocationNumber

Label

has Global Location Number (0..1)

Description

The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective gr:BusinessEntity or gr:Location.
The Global Location Number is a thirteen-digit number used to identify parties and physical locations.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:hasGlobalLocationNumber xsd:string

Implementation

@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

gr:hasGlobalLocationNumber a owl:DatatypeProperty ;
    rdfs:label "has Global Location Number (0..1)"@en ;
    rdfs:comment """The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective gr:BusinessEntity or gr:Location.
The Global Location Number is a thirteen-digit number used to identify parties and physical locations."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:BusinessEntity gr:Location <http://schema.org/Place> <http://schema.org/Organization> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range xsd:string .