-
Notifications
You must be signed in to change notification settings - Fork 7
Description
The owl:FunctionalProperty is often desired for certain fields in the GS1 WebVoc. However, it appears to be missing/not specificed in some cases in the version 1.11 (found at https://github.com/gs1/WebVoc/blob/master/v1.11/gs1Voc_v1_11.jsonld).
For example, the productName field is defined as follows:
{
"@id": "gs1:productName",
"@type": [
"rdf:Property",
"owl:DatatypeProperty"
],
"rdfs:comment": {
"@language": "en",
"@value": "Consumer friendly short description of the product suitable for compact presentation."
},
"rdfs:domain": {
"@id": "gs1:Product"
},
"rdfs:isDefinedBy": {
"@id": "gs1:"
},
"rdfs:label": {
"@language": "en",
"@value": "Product Name"
},
"rdfs:range": {
"@id": "rdf:langString"
},
"rdfs:subPropertyOf": {
"@id": "schema:name"
},
"skos:related": {
"@id": "schema:Product"
},
"sw:term_status": "stable"
}
To help improve it further, I plan to review all fields in the vocabulary and identify any similar corrections that may be needed.
Let me know your thoughts!