gr:vatID leaf node


URI

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

Label

VAT ID (0..1)

Description

The Value-added Tax ID of the gr:BusinessEntity. See http://en.wikipedia.org/wiki/Value_added_tax_identification_number for details.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:vatID 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:vatID a owl:DatatypeProperty ;
    rdfs:label "VAT ID (0..1)"@en ;
    rdfs:comment "The Value-added Tax ID of the gr:BusinessEntity. See http://en.wikipedia.org/wiki/Value_added_tax_identification_number for details."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:BusinessEntity <http://schema.org/Organization> <http://schema.org/Person> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range xsd:string .