-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove wholly-duplicate property shapes in Facet sub-subclasses
These property shapes were identified for removal by visual review of the results of this query: ```sparql SELECT DISTINCT ?nClass WHERE { { ?nClass rdfs:subClassOf/rdfs:subClassOf+ core:Facet . } UNION { ?nClass rdfs:subClassOf core:Facet . ?nSubClass rdfs:subClassOf ?nClass . } } ORDER BY ?nClass ``` The same shapes were identified for removal by visual review of the results of this query: ```sparql SELECT DISTINCT ?nClass ?nSubClass ?nProperty WHERE { ?nClass rdfs:subClassOf* core:Facet ; sh:property/sh:path ?nProperty ; . ?nSubClass rdfs:subClassOf+ ?nClass ; sh:property/sh:path ?nProperty ; . } ORDER BY ?nClass ?nSubClass ?nProperty ``` References: * #445 Signed-off-by: Alex Nelson <[email protected]>
- Loading branch information
1 parent
c3f8a16
commit 85b8be5
Showing
1 changed file
with
4 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters