http://purl.org/goodrelations/v1#taxID
The Tax / Fiscal ID of the gr:BusinessEntity, e.g. the TIN in the US or the CIF/NIF in Spain. It is usually assigned by the country of residence
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) | gr:taxID | xsd:string |
@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:taxID a owl:DatatypeProperty ;
rdfs:label "Tax ID (0..1)"@en ;
rdfs:comment "The Tax / Fiscal ID of the gr:BusinessEntity, e.g. the TIN in the US or the CIF/NIF in Spain. It is usually assigned by the country of residence"@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 .