Skip to content

Instantly share code, notes, and snippets.

@tailot
Last active June 26, 2025 16:42
Show Gist options
  • Save tailot/31255adc622cd2fc588415846c7b052e to your computer and use it in GitHub Desktop.
Save tailot/31255adc622cd2fc588415846c7b052e to your computer and use it in GitHub Desktop.
@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