- From: Nicholas Car via GitHub <sysbot+gh@w3.org>
- Date: Wed, 06 Nov 2019 11:11:03 +0000
- To: public-dxwg-wg@w3.org
nicholascar has just created a new issue for https://github.com/w3c/dxwg:
== Remove Open World declarations from AltR ==
@rob-metalinkage suggests moving this:
```
rdf:Resource
a owl:Class ;
rdfs:label "Resource" ;
skos:definition "The class resource, everything."@en ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty altp:hasRepresentation ;
owl:allValuesFrom altp:Representation
] ;
dct:source "http://www.w3.org/2000/01/rdf-schema#Resource" ;
skos:scopeNote "In the context of this mode, rdf:Resource instances are used to identify Internet resources, that is items identified by a URI." .
```
to this
```
rdf:Resource
a owl:Class ;
rdfs:label "Resource" ;
skos:definition "The class resource, everything."@en ;
dct:source "http://www.w3.org/2000/01/rdf-schema#Resource" ;
skos:scopeNote "In the context of this mode, rdf:Resource instances are used to identify Internet resources, that is items identified by a URI." .
```
(restriction removed)
If needed, a later SHACL graph can be used to ensure that `rdfs:Resource` instances in the AltR context have the `altp:hasRepresentation` properties with appropriate values.
Please view or discuss this issue at https://github.com/w3c/dxwg/issues/1161 using your GitHub account
Received on Wednesday, 6 November 2019 11:11:05 UTC