-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update ldesify * implement bucketizers * better sds extraction * update readme * bump version * update js-runner version
- Loading branch information
Showing
20 changed files
with
4,668 additions
and
1,616 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
@prefix tree: <https://w3id.org/tree#>. | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. | ||
@prefix sds: <https://w3id.org/sds#>. | ||
@prefix sh: <http://www.w3.org/ns/shacl#>. | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>. | ||
@prefix rdfl: <https://w3id.org/rdf-lens/ontology#>. | ||
|
||
[ ] a sh:NodeShape; | ||
sh:targetClass tree:FragmentationStrategy; | ||
sh:property [ | ||
sh:name "type"; | ||
sh:path rdf:type; | ||
sh:datatype xsd:iri; | ||
sh:maxCount 1; | ||
sh:minCount 1; | ||
], [ | ||
sh:name "config"; | ||
sh:path ( ); | ||
sh:class rdfl:TypedExtract; | ||
sh:maxCount 1; | ||
sh:minCount 1; | ||
]. | ||
|
||
[ ] a sh:NodeShape; | ||
sh:targetClass <RdfThing>; | ||
sh:property [ | ||
sh:name "id"; | ||
sh:path ( ); | ||
sh:maxCount 1; | ||
sh:minCount 1; | ||
sh:datatype xsd:iri; | ||
], [ | ||
sh:name "quads"; | ||
sh:path ( ); | ||
sh:maxCount 1; | ||
sh:minCount 1; | ||
sh:class rdfl:CBD; | ||
]. | ||
|
||
[ ] a sh:NodeShape; | ||
sh:targetClass tree:SubjectFragmentation; | ||
sh:property [ | ||
sh:name "path"; | ||
sh:path tree:fragmentationPath; | ||
sh:class rdfl:PathLens; | ||
sh:maxCount 1; | ||
sh:minCount 1; | ||
], [ | ||
sh:name "pathQuads"; | ||
sh:path tree:fragmentationPath; | ||
sh:class <RdfThing>; | ||
sh:maxCount 1; | ||
sh:minCount 1; | ||
], [ | ||
sh:name "namePath"; | ||
sh:path tree:fragmentationPathName; | ||
sh:class rdfl:pathLens; | ||
sh:maxCount 1; | ||
], [ | ||
sh:name "defaultName"; | ||
sh:path tree:fragmentationDefaultName; | ||
sh:datatype xsd:string; | ||
sh:maxCount 1; | ||
]. | ||
|
||
[ ] a sh:NodeShape; | ||
sh:targetClass tree:PageFragmentation; | ||
sh:property [ | ||
sh:name "pageSize"; | ||
sh:path tree:pageSize; | ||
sh:datatype xsd:integer; | ||
sh:maxCount 1; | ||
sh:minCount 1; | ||
]. | ||
|
||
[ ] a sh:NodeShape; | ||
sh:targetClass tree:TimebasedFragmentation; | ||
sh:property [ | ||
sh:name "path"; | ||
sh:path tree:fragmentationPath; | ||
sh:class rdfl:PathLens; | ||
sh:maxCount 1; | ||
sh:minCount 1; | ||
], [ | ||
sh:name "maxGranularity"; | ||
sh:path tree:maxGranularity; | ||
sh:datatype xsd:string; | ||
sh:maxCount 1; | ||
]. | ||
|
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
Oops, something went wrong.