gr:hasDUNS leaf node


URI

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

Label

has DUNS (0..1)

Description

The Dun & Bradstreet DUNS number for identifying a gr:BusinessEntity. The Dun & Bradstreet DUNS is a nine-digit number used to identify legal entities (but usually not branches or locations of logistical importance only).

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:hasDUNS 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:hasDUNS a owl:DatatypeProperty ;
    rdfs:label "has DUNS (0..1)"@en ;
    rdfs:comment "The Dun & Bradstreet DUNS number for identifying a gr:BusinessEntity. The Dun & Bradstreet DUNS is a nine-digit number used to identify legal entities (but usually not branches or locations of logistical importance only)."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:BusinessEntity <http://schema.org/Organization> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range xsd:string .