Skip to content
Snippets Groups Projects

better design for tab and object operations save delete and close tab inside...

Merged mbrodhu requested to merge master into main
94 files
+ 73338
0
Compare changes
  • Side-by-side
  • Inline
Files
94
+ 61
0
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix dash: <http://datashapes.org/forms.html>.
@prefix sh: <https://www.w3.org/TR/2017/REC-shacl-20170720/>.
@prefix subforms: <https://www.sub.uni-goettingen.de/subforms/>.
@prefix gnd: <http://d-nb.info/>.
@prefix dissshapes: <http://beispiel.test/>
@prefix diss: <http://beispiel.test/>
# NodeShapes
dissshapes:AmttypNodeShape
a sh:NodeShape ;
rdfs:label "Amttyp Shape" ;
sh:targetClass diss:Amttyp ;
sh:property dissshapes:AmtPropertyShape .
dissshapes:GremiumstypNodeShape
a sh:NodeShape ;
rdfs:label "Gremiumstyp Shape" ;
sh:targetClass diss:Gremiumstyp ;
sh:property dissshapes:GremiumstypropertyShape .
dissshapes:UnterkunfteNodeShape
a sh:NodeShape ;
rdfs:label "Unterkunfte Shape" ;
sh:targetClass diss:Unterkunft ;
sh:property dissshapes:UnterkunftPropertyShape .
# PropertyShapes
dissshapes:AmttypPropertyShape
a sh:PropertyShape ;
sh:path diss:AmttypProperty ;
sh:datatype xsd:string ;
dash:editor dash:TextFieldEditor ;
dash:singleLine true ;
sh:description "Typ des Amts eintragen" ;
sh:name "Amttyp" ;
sh:order "1" .
dissshapes:GremiumstypPropertyShape
a sh:PropertyShape ;
sh:path diss:GremiumstypProperty ;
sh:datatype xsd:string ;
dash:editor dash:TextFieldEditor ;
dash:singleLine true ;
sh:description "Typ des Gremiums eintragen (z. B. Bundesrat, Stammesrat, Landesversammlung)" ;
sh:name "Gremiumstyp" ;
sh:order "1" .
dissshapes:UnterkunftPropertyShape
a sh:PropertyShape ;
sh:path diss:UnterkunftProperty ;
sh:datatype xsd:string ;
dash:editor dash:TextFieldEditor ;
dash:singleLine true ;
sh:description "Name der Unterkunft (Zeltplatz, Jugendherberge o. Ä.) eintragen" ;
sh:name "Unterkunft" ;
sh:order "1" .
\ No newline at end of file
Loading