├── README.md ├── data ├── KGC 2021 │ ├── abox.png │ ├── abox.ttl │ ├── ontology.owl │ ├── readme.md │ ├── shapes.ttl │ └── tbox.png ├── KGC 2022 │ ├── abox.png │ ├── abox.ttl │ ├── ontology.owl │ ├── readme.md │ ├── shapes.ttl │ └── tbox.png ├── KGC 2023 │ ├── instances.ttl │ ├── pub.jpg │ ├── rdfs.ttl │ └── readme.md └── KnowCon 2020 │ ├── answers │ ├── data.ttl │ └── shapes.ttl │ ├── data.ttl │ ├── exercises │ ├── 2 │ │ ├── album.ttl │ │ ├── game.ttl │ │ ├── myth.ttl │ │ └── opera.ttl │ └── readme.md │ ├── report.ttl │ └── shapes.ttl ├── demo ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── jarRepositories.xml │ ├── misc.xml │ └── vcs.xml ├── demo.iml ├── pom.xml ├── src │ └── main │ │ ├── java │ │ ├── Main.java │ │ ├── RDF4JValidation.java │ │ └── Utils.java │ │ └── resources │ │ ├── 2020 │ │ ├── answers │ │ │ ├── data.ttl │ │ │ └── shapes.ttl │ │ └── exercises │ │ │ ├── 2 │ │ │ ├── album.ttl │ │ │ ├── game.ttl │ │ │ ├── myth.ttl │ │ │ └── opera.ttl │ │ │ └── exercises.md │ │ ├── 2021 │ │ ├── data.ttl │ │ └── shapes.ttl │ │ ├── 2022 │ │ ├── data.ttl │ │ └── shapes.ttl │ │ ├── 2024 │ │ ├── data.ttl │ │ ├── report.ttl │ │ └── shapes.ttl │ │ ├── answers │ │ ├── data.ttl │ │ └── shapes.ttl │ │ ├── data.ttl │ │ ├── exercises │ │ ├── 2 │ │ │ ├── album.ttl │ │ │ ├── game.ttl │ │ │ ├── myth.ttl │ │ │ └── opera.ttl │ │ └── exercises.md │ │ ├── report.ttl │ │ └── shapes.ttl └── target │ ├── classes │ ├── 2024 │ │ ├── data.ttl │ │ ├── report.ttl │ │ └── shapes.ttl │ ├── 2020 masterclass │ │ ├── answers │ │ │ ├── data.ttl │ │ │ └── shapes.ttl │ │ └── exercises │ │ │ ├── 2 │ │ │ ├── album.ttl │ │ │ ├── game.ttl │ │ │ ├── myth.ttl │ │ │ └── opera.ttl │ │ │ └── exercises.md │ ├── 2021 tutorial │ │ ├── data.ttl │ │ └── shapes.ttl │ ├── 2022 tutorial │ │ ├── data.ttl │ │ └── shapes.ttl │ ├── Main.class │ ├── RDF4JValidation.class │ ├── Utils.class │ ├── answers │ │ ├── data.ttl │ │ └── shapes.ttl │ ├── data.ttl │ ├── exercises │ │ ├── 2 │ │ │ ├── album.ttl │ │ │ ├── game.ttl │ │ │ ├── myth.ttl │ │ │ └── opera.ttl │ │ └── exercises.md │ ├── report.ttl │ └── shapes.ttl │ ├── demo-1.0-SNAPSHOT.jar │ ├── maven-archiver │ └── pom.properties │ └── maven-status │ └── maven-compiler-plugin │ ├── compile │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── testCompile │ └── default-testCompile │ └── inputFiles.lst └── slides ├── CDL24 SHACL Masterclass.pdf ├── KGC21 SHACL Masterclass.pdf ├── KGC21 SHACL Presentation.pdf ├── KGC22 SHACL Masterclass.pdf ├── KGC23 SHACL Masterclass.pdf └── KnowCon20 SHACL Masterclass.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/README.md -------------------------------------------------------------------------------- /data/KGC 2021/abox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2021/abox.png -------------------------------------------------------------------------------- /data/KGC 2021/abox.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2021/abox.ttl -------------------------------------------------------------------------------- /data/KGC 2021/ontology.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2021/ontology.owl -------------------------------------------------------------------------------- /data/KGC 2021/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2021/readme.md -------------------------------------------------------------------------------- /data/KGC 2021/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2021/shapes.ttl -------------------------------------------------------------------------------- /data/KGC 2021/tbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2021/tbox.png -------------------------------------------------------------------------------- /data/KGC 2022/abox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2022/abox.png -------------------------------------------------------------------------------- /data/KGC 2022/abox.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2022/abox.ttl -------------------------------------------------------------------------------- /data/KGC 2022/ontology.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2022/ontology.owl -------------------------------------------------------------------------------- /data/KGC 2022/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2022/readme.md -------------------------------------------------------------------------------- /data/KGC 2022/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2022/shapes.ttl -------------------------------------------------------------------------------- /data/KGC 2022/tbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2022/tbox.png -------------------------------------------------------------------------------- /data/KGC 2023/instances.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2023/instances.ttl -------------------------------------------------------------------------------- /data/KGC 2023/pub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2023/pub.jpg -------------------------------------------------------------------------------- /data/KGC 2023/rdfs.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2023/rdfs.ttl -------------------------------------------------------------------------------- /data/KGC 2023/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KGC 2023/readme.md -------------------------------------------------------------------------------- /data/KnowCon 2020/answers/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/answers/data.ttl -------------------------------------------------------------------------------- /data/KnowCon 2020/answers/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/answers/shapes.ttl -------------------------------------------------------------------------------- /data/KnowCon 2020/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/data.ttl -------------------------------------------------------------------------------- /data/KnowCon 2020/exercises/2/album.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/exercises/2/album.ttl -------------------------------------------------------------------------------- /data/KnowCon 2020/exercises/2/game.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/exercises/2/game.ttl -------------------------------------------------------------------------------- /data/KnowCon 2020/exercises/2/myth.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/exercises/2/myth.ttl -------------------------------------------------------------------------------- /data/KnowCon 2020/exercises/2/opera.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/exercises/2/opera.ttl -------------------------------------------------------------------------------- /data/KnowCon 2020/exercises/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/exercises/readme.md -------------------------------------------------------------------------------- /data/KnowCon 2020/report.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/report.ttl -------------------------------------------------------------------------------- /data/KnowCon 2020/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/data/KnowCon 2020/shapes.ttl -------------------------------------------------------------------------------- /demo/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/.idea/compiler.xml -------------------------------------------------------------------------------- /demo/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /demo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/.idea/misc.xml -------------------------------------------------------------------------------- /demo/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/.idea/vcs.xml -------------------------------------------------------------------------------- /demo/demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/demo.iml -------------------------------------------------------------------------------- /demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/pom.xml -------------------------------------------------------------------------------- /demo/src/main/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/java/Main.java -------------------------------------------------------------------------------- /demo/src/main/java/RDF4JValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/java/RDF4JValidation.java -------------------------------------------------------------------------------- /demo/src/main/java/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/java/Utils.java -------------------------------------------------------------------------------- /demo/src/main/resources/2020/answers/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2020/answers/data.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2020/answers/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2020/answers/shapes.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2020/exercises/2/album.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2020/exercises/2/album.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2020/exercises/2/game.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2020/exercises/2/game.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2020/exercises/2/myth.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2020/exercises/2/myth.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2020/exercises/2/opera.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2020/exercises/2/opera.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2020/exercises/exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2020/exercises/exercises.md -------------------------------------------------------------------------------- /demo/src/main/resources/2021/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2021/data.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2021/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2021/shapes.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2022/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2022/data.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2022/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2022/shapes.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2024/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2024/data.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2024/report.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2024/report.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/2024/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/2024/shapes.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/answers/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/answers/data.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/answers/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/answers/shapes.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/data.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/exercises/2/album.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/exercises/2/album.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/exercises/2/game.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/exercises/2/game.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/exercises/2/myth.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/exercises/2/myth.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/exercises/2/opera.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/exercises/2/opera.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/exercises/exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/exercises/exercises.md -------------------------------------------------------------------------------- /demo/src/main/resources/report.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/report.ttl -------------------------------------------------------------------------------- /demo/src/main/resources/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/src/main/resources/shapes.ttl -------------------------------------------------------------------------------- /demo/target/classes/2020 masterclass/answers/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2020 masterclass/answers/data.ttl -------------------------------------------------------------------------------- /demo/target/classes/2020 masterclass/answers/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2020 masterclass/answers/shapes.ttl -------------------------------------------------------------------------------- /demo/target/classes/2020 masterclass/exercises/2/album.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2020 masterclass/exercises/2/album.ttl -------------------------------------------------------------------------------- /demo/target/classes/2020 masterclass/exercises/2/game.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2020 masterclass/exercises/2/game.ttl -------------------------------------------------------------------------------- /demo/target/classes/2020 masterclass/exercises/2/myth.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2020 masterclass/exercises/2/myth.ttl -------------------------------------------------------------------------------- /demo/target/classes/2020 masterclass/exercises/2/opera.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2020 masterclass/exercises/2/opera.ttl -------------------------------------------------------------------------------- /demo/target/classes/2020 masterclass/exercises/exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2020 masterclass/exercises/exercises.md -------------------------------------------------------------------------------- /demo/target/classes/2021 tutorial/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2021 tutorial/data.ttl -------------------------------------------------------------------------------- /demo/target/classes/2021 tutorial/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2021 tutorial/shapes.ttl -------------------------------------------------------------------------------- /demo/target/classes/2022 tutorial/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2022 tutorial/data.ttl -------------------------------------------------------------------------------- /demo/target/classes/2022 tutorial/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2022 tutorial/shapes.ttl -------------------------------------------------------------------------------- /demo/target/classes/2024/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2024/data.ttl -------------------------------------------------------------------------------- /demo/target/classes/2024/report.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2024/report.ttl -------------------------------------------------------------------------------- /demo/target/classes/2024/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/2024/shapes.ttl -------------------------------------------------------------------------------- /demo/target/classes/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/Main.class -------------------------------------------------------------------------------- /demo/target/classes/RDF4JValidation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/RDF4JValidation.class -------------------------------------------------------------------------------- /demo/target/classes/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/Utils.class -------------------------------------------------------------------------------- /demo/target/classes/answers/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/answers/data.ttl -------------------------------------------------------------------------------- /demo/target/classes/answers/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/answers/shapes.ttl -------------------------------------------------------------------------------- /demo/target/classes/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/data.ttl -------------------------------------------------------------------------------- /demo/target/classes/exercises/2/album.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/exercises/2/album.ttl -------------------------------------------------------------------------------- /demo/target/classes/exercises/2/game.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/exercises/2/game.ttl -------------------------------------------------------------------------------- /demo/target/classes/exercises/2/myth.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/exercises/2/myth.ttl -------------------------------------------------------------------------------- /demo/target/classes/exercises/2/opera.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/exercises/2/opera.ttl -------------------------------------------------------------------------------- /demo/target/classes/exercises/exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/exercises/exercises.md -------------------------------------------------------------------------------- /demo/target/classes/report.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/report.ttl -------------------------------------------------------------------------------- /demo/target/classes/shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/classes/shapes.ttl -------------------------------------------------------------------------------- /demo/target/demo-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/demo-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /demo/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Mon Nov 23 19:17:10 CET 2020 3 | groupId=org.example 4 | artifactId=demo 5 | version=1.0-SNAPSHOT 6 | -------------------------------------------------------------------------------- /demo/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst -------------------------------------------------------------------------------- /demo/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/demo/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /demo/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slides/CDL24 SHACL Masterclass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/slides/CDL24 SHACL Masterclass.pdf -------------------------------------------------------------------------------- /slides/KGC21 SHACL Masterclass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/slides/KGC21 SHACL Masterclass.pdf -------------------------------------------------------------------------------- /slides/KGC21 SHACL Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/slides/KGC21 SHACL Presentation.pdf -------------------------------------------------------------------------------- /slides/KGC22 SHACL Masterclass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/slides/KGC22 SHACL Masterclass.pdf -------------------------------------------------------------------------------- /slides/KGC23 SHACL Masterclass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/slides/KGC23 SHACL Masterclass.pdf -------------------------------------------------------------------------------- /slides/KnowCon20 SHACL Masterclass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veleda/shacl-masterclass/HEAD/slides/KnowCon20 SHACL Masterclass.pdf --------------------------------------------------------------------------------