From 311be0a76407a0b0d93f6fa26bfa442635832968 Mon Sep 17 00:00:00 2001
From: Miroslav Blasko <blcham@gmail.com>
Date: Sun, 28 Mar 2021 12:49:17 +0200
Subject: [PATCH] [New] Added condition related properties

---
 form-layout.ttl |   81 +++++++++++++++++-----------------------
 1 files changed, 35 insertions(+), 46 deletions(-)

diff --git a/form-layout.ttl b/form-layout.ttl
index 4626c08..38b2735 100644
--- a/form-layout.ttl
+++ b/form-layout.ttl
@@ -1,53 +1,42 @@
-# baseURI: http://onto.fel.cvut.cz/ontologies/form-layout
-# imports: http://onto.fel.cvut.cz/ontologies/form
-
-@prefix : <http://onto.fel.cvut.cz/ontologies/form-layout> .
 @prefix form-lt: <http://onto.fel.cvut.cz/ontologies/form-layout/> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
-<http://onto.fel.cvut.cz/ontologies/form-layout>
-  rdf:type owl:Ontology ;
-  owl:imports <http://onto.fel.cvut.cz/ontologies/form> ;
-  owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
+<http://onto.fel.cvut.cz/ontologies/form-layout> a owl:Ontology ;
+    owl:imports <http://onto.fel.cvut.cz/ontologies/form> ; 
 .
-form-lt:LayoutClassRule
-  rdf:type owl:Class ;
-  rdfs:label "Layout class rule"^^xsd:string ;
-  rdfs:subClassOf owl:Thing ;
-.
-form-lt:has-layout-class
-  rdf:type owl:DatatypeProperty ;
-  rdfs:comment "Question layout class (e.g. \"type-ahead\", \"section\")"^^xsd:string ;
-  rdfs:label "Question layout class"^^xsd:string ;
-.
-form-lt:has-required-value
-  rdf:type owl:DatatypeProperty ;
-  rdfs:comment "Question has required value"^^xsd:string ;
-  rdfs:label "ha required value"^^xsd:string ;
-  rdfs:range xsd:boolean ;
-.
-form-lt:is-disabled
-  rdf:type owl:DatatypeProperty ;
-  rdfs:comment "Defines whether this question should be disabled"^^xsd:string ;
-  rdfs:label "is disabled"^^xsd:string ;
-  rdfs:range xsd:boolean ;
-.
-form-lt:is-hidden
-  rdf:type owl:DatatypeProperty ;
-  rdfs:comment "Defines whether this question should be hidden"^^xsd:string ;
-  rdfs:label "is hidden"^^xsd:string ;
-  rdfs:range xsd:boolean ;
-.
-form-lt:outputValue
-  rdf:type owl:DatatypeProperty ;
-  rdfs:label "Form layout output value"^^xsd:string ;
-  rdfs:range xsd:string ;
-.
-form-lt:propertyPath
-  rdf:type owl:DatatypeProperty ;
-  rdfs:label "Form layout property path"^^xsd:string ;
-  rdfs:range xsd:string ;
-.
+
+form-lt:LayoutClassRule a owl:Class ;
+    rdfs:label "Layout class rule" ;
+    rdfs:subClassOf owl:Thing .
+
+form-lt:has-layout-class a owl:DatatypeProperty ;
+    rdfs:label "Question layout class" ;
+    rdfs:comment "Question layout class (e.g. \"type-ahead\", \"section\")" .
+
+form-lt:has-required-value a owl:DatatypeProperty ;
+    rdfs:label "has required value" ;
+    rdfs:comment "Question has required value" ;
+    rdfs:range xsd:boolean .
+
+form-lt:is-disabled a owl:DatatypeProperty ;
+    rdfs:label "is disabled" ;
+    rdfs:comment "Defines whether this question should be disabled" ;
+    rdfs:range xsd:boolean .
+
+form-lt:is-hidden a owl:DatatypeProperty ;
+    rdfs:label "is hidden" ;
+    rdfs:comment "Defines whether this question should be hidden" ;
+    rdfs:range xsd:boolean .
+
+form-lt:outputValue a owl:DatatypeProperty ;
+    rdfs:label "Form layout output value" ;
+    rdfs:range xsd:string .
+
+form-lt:propertyPath a owl:DatatypeProperty ;
+    rdfs:label "Form layout property path" ;
+    rdfs:range xsd:string .
+

--
Gitblit v1.9.3