accurator/commit

Added fashion field defenitions.

authorChris Dijkshoorn
Mon Feb 29 15:49:08 2016 +0100
committerChris Dijkshoorn
Mon Feb 29 15:49:08 2016 +0100
commite4cce2762fa2ce6611fbcbfc114c003635a6dfd7
treeadd71571da4d569feb13c3bd4f67fc8688dee673
parent5d89c09780d1136e54d3f8ef069fa5d1cc96ad87
Diff style: patch stat
diff --git a/rdf/domain/fashion/fashion_domain.ttl b/rdf/domain/fashion/fashion_domain.ttl
index b5d2997..6b5aa48 100644
--- a/rdf/domain/fashion/fashion_domain.ttl
+++ b/rdf/domain/fashion/fashion_domain.ttl
@@ -16,7 +16,7 @@ afas:domain a accu:Domain ;
 	accu:hasTarget <http://accurator.nl/fashion#Target> ;
 	skos:hasTopConcept ic:41D ;
 	accu:hasUI afasui: ;
-	accu:hasAnnotationUI aafas:fashionUi ;
+	accu:hasAnnotationUI aafas:fashionUI ;
 	accu:hasDesciptiveImage afas:dress ;
 	accu:hasLastImage afas:dress ;
 	accu:hasMaximumExpertiseTopics "50" ;
diff --git a/rdf/domain/fashion/ui/fields.ttl b/rdf/domain/fashion/ui/fields.ttl
new file mode 100644
index 0000000..5f99595
--- /dev/null
+++ b/rdf/domain/fashion/ui/fields.ttl
@@ -0,0 +1,43 @@
+@prefix afasui: <http://accurator.nl/ui/annotation/fashion#> .
+@prefix auis:   <http://accurator.nl/ui/schema#> .
+@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix dcterms:<http://purl.org/dc/terms/> .
+@prefix skos:   <http://www.w3.org/2004/02/skos/core#> .
+
+afasui:fashionUI a auis:AnnotationUI ;
+    dcterms:title "Fashion annotation UI"@en;
+	auis:fragmentFields (
+	     afasui:Garment
+		 afasui:Material
+		 afasui:Technique
+		 afasui:Color
+	 ) .
+
+afasui:Garment a auis:DropdownField ;
+	rdfs:label "Garment"@en ;
+	rdfs:label "Kledingstuk"@nl ;
+	dcterms:comment "add the type of garment"@en ;
+	dcterms:comment "voeg het type kledingstuk toe"@nl ;
+	auis:source "" .
+
+afasui:Material a auis:DropdownField ;
+	rdfs:label "Material"@en ;
+	rdfs:label "Materiaal"@nl ;
+	dcterms:comment "add the material"@en ;
+	dcterms:comment "voeg het materiaal toe"@nl ;
+	auis:source "" .
+
+afasui:Technique a auis:DropdownField ;
+	rdfs:label "Technique"@en ;
+    rdfs:label "Techniek"@nl ;
+	dcterms:comment "add technique"@en ;
+	dcterms:comment "voeg de techniek toe"@nl ;
+	auis:source "" .
+
+afasui:Color a auis:DropdownField ;
+	rdfs:label "Color"@nl ;
+	rdfs:label "Kleur"@en ;
+	dcterms:comment "add the color"@en ;
+	dcterms:comment "voeg de kleur toe"@nl ;
+	auis:source "" .