gr:serialNumber leaf node


URI

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

Label

serial number (0..*)

Description

The serial number or any alphanumeric identifier of a particular product. Note that serial number are unique only for the same brand or the same model, so you cannot infer from two occurrences of the same serial number that the objects to which they are attached are identical.

This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:serialNumber 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:serialNumber a owl:DatatypeProperty ;
    rdfs:label "serial number (0..*)"@en ;
    rdfs:comment """The serial number or any alphanumeric identifier of a particular product. Note that serial number are unique only for the same brand or the same model, so you cannot infer from two occurrences of the same serial number that the objects to which they are attached are identical.

This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:Individual gr:Offering <http://schema.org/Product> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range xsd:string .