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 non-Facet sub-subclasses
These property shapes were identified by visual review of the results of this query: ```sparql SELECT DISTINCT ?nClass ?nSubClass ?nProperty WHERE { ?nClass sh:property/sh:path ?nProperty ; . ?nSubClass rdfs:subClassOf+ ?nClass ; sh:property/sh:path ?nProperty ; . } ORDER BY ?nClass ``` (The difference since the last patch is `?nClass` is no longer tied to `Facet`s.) This patch alone will trigger a CI failure from the SHIR code base, due to SHIR 0.2.0 flagging dropped constraints as errors. A follow-on patch will merge in the resolution to PR 417 in order to resolve this bug without needing to work through addressing semi-open vocabulary issues when subclasses are involved. Incidentally, Issue 442 is now mooted. References: * #417 * #442 * #445 Signed-off-by: Alex Nelson <[email protected]>
- Loading branch information