Last active
June 26, 2025 16:42
-
-
Save tailot/31255adc622cd2fc588415846c7b052e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@prefix ex: <https://gist.github.com/tailot/31255adc622cd2fc588415846c7b052e#> . | |
@prefix sh: <http://www.w3.org/ns/shacl#> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
ex:TayloredBlockShape | |
a sh:NodeShape ; | |
sh:targetClass ex:TayloredBlock ; | |
sh:property [ | |
sh:path ex:taylored ; | |
sh:datatype xsd:integer ; | |
sh:minCount 1 ; | |
sh:maxCount 1 ; | |
] ; | |
sh:property [ | |
sh:path ex:compute ; | |
sh:datatype xsd:string ; | |
sh:maxCount 1 ; | |
] ; | |
sh:property [ | |
sh:path ex:async ; | |
sh:datatype xsd:boolean ; | |
sh:maxCount 1 ; | |
] ; | |
sh:property [ | |
sh:path ex:disabled ; | |
sh:datatype xsd:boolean ; | |
sh:maxCount 1 ; | |
] ; | |
sh:property [ | |
sh:path ex:content ; | |
sh:datatype xsd:string ; | |
sh:maxCount 1 ; | |
] . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment