From f3da6ccf69ced57ab3479da390c5cdf78331395b Mon Sep 17 00:00:00 2001
From: Miroslav Blasko <blcham@gmail.com>
Date: Sun, 28 Mar 2021 12:30:22 +0200
Subject: [PATCH] [New] Previous developed form ontology

---
 form-layout.ttl |   53 ++++++++++
 form.ttl        |  231 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 284 insertions(+), 0 deletions(-)

diff --git a/form-layout.ttl b/form-layout.ttl
new file mode 100644
index 0000000..4626c08
--- /dev/null
+++ b/form-layout.ttl
@@ -0,0 +1,53 @@
+# 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 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 ;
+.
+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 ;
+.
diff --git a/form.ttl b/form.ttl
new file mode 100644
index 0000000..87acbfb
--- /dev/null
+++ b/form.ttl
@@ -0,0 +1,231 @@
+# baseURI: http://onto.fel.cvut.cz/ontologies/form
+# imports: http://onto.fel.cvut.cz/ontologies/documentation
+
+@prefix : <http://onto.fel.cvut.cz/ontologies/form/> .
+@prefix doc: <http://onto.fel.cvut.cz/ontologies/documentation/> .
+@prefix form: <http://onto.fel.cvut.cz/ontologies/form/> .
+@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#> .
+
+doc:answer
+  rdf:type owl:Class ;
+  rdfs:subClassOf form:entity ;
+.
+doc:todo
+  rdf:type owl:DatatypeProperty ;
+.
+<http://onto.fel.cvut.cz/ontologies/form>
+  rdf:type owl:Ontology ;
+  rdfs:comment "Represent form data." ;
+  owl:imports <http://onto.fel.cvut.cz/ontologies/documentation> ;
+.
+form:accepts-answer-value
+  rdf:type owl:AnnotationProperty ;
+  rdfs:label "accepts value"^^xsd:string ;
+.
+form:accepts-validation-value
+  rdf:type owl:DatatypeProperty ;
+  rdfs:comment "Defines which validation values (true/false) are permitted for the tested question." ;
+  rdfs:domain form:condition ;
+  rdfs:label "accepts validation value" ;
+  rdfs:range xsd:boolean ;
+.
+form:answer-origin
+  rdf:type owl:Class ;
+  rdfs:comment "Class of objects that are used to reconstruct how was a answer created."^^xsd:string ;
+  rdfs:label "Answer origin"^^xsd:string ;
+.
+form:condition
+  rdf:type owl:Class ;
+  rdfs:label "Condition"^^xsd:string ;
+  rdfs:subClassOf owl:Thing ;
+.
+form:entity
+  rdf:type owl:Class ;
+  rdfs:label "entity"^^xsd:string ;
+  rdfs:subClassOf owl:Thing ;
+.
+form:has-answer-origin
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines entity from which this answer was created."^^xsd:string ;
+  rdfs:domain doc:question ;
+  rdfs:label "has answer origin"^^xsd:string ;
+  rdfs:subPropertyOf form:has-origin ;
+.
+form:has-datatype
+  rdf:type owl:DatatypeProperty ;
+  rdfs:label "has datatype"^^xsd:string ;
+.
+form:has-origin
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines entity from which this template was created."^^xsd:string ;
+  rdfs:label "has origin"^^xsd:string ;
+.
+form:has-origin-path
+  rdf:type owl:DatatypeProperty ;
+  rdfs:label "has origin path"^^xsd:string ;
+  rdfs:range xsd:string ;
+.
+form:has-origin-path-id
+  rdf:type owl:DatatypeProperty ;
+  rdfs:label "has origin path id"^^xsd:string ;
+  rdfs:range xsd:string ;
+.
+form:has-origin-type
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines type of entity from which this template was created."^^xsd:string ;
+  rdfs:label "has origin"^^xsd:string ;
+.
+form:has-possible-value
+  rdf:type owl:ObjectProperty ;
+  rdfs:domain doc:question ;
+  rdfs:label "has possible value"^^xsd:string ;
+.
+form:has-possible-values-query
+  rdf:type owl:DatatypeProperty ;
+  rdfs:domain doc:question ;
+  rdfs:label "has possible value query"^^xsd:string ;
+.
+
+form:has-template-origin
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines entity from which this template was created."^^xsd:string ;
+  rdfs:domain form:question-template ;
+  rdfs:label "has template origin"^^xsd:string ;
+  rdfs:subPropertyOf form:has-origin ;
+.
+form:has-preceding-question
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines that this question follows (typicaly chronologically) specified question."^^xsd:string ;
+  rdfs:domain doc:question ;
+  rdfs:label "has preceding question"^^xsd:string ;
+  rdfs:range doc:question ;
+.
+form:has-preceding-template
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines that this question template follows (typicaly chronologically) specified question template."^^xsd:string ;
+  rdfs:domain form:question-template ;
+  rdfs:label "has preceding question template"^^xsd:string ;
+  rdfs:range form:question-template ;
+.
+form:has-preceding-value
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines that this answer value follows (typicaly chronologically) specified answer value."^^xsd:string ;
+  rdfs:label "has preceding question"^^xsd:string ;
+.
+form:has-question-origin
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines entity from which this question was created."^^xsd:string ;
+  rdfs:domain doc:question ;
+  rdfs:label "has question origin"^^xsd:string ;
+  rdfs:subPropertyOf form:has-origin ;
+.
+form:has-subsection
+  rdf:type owl:ObjectProperty ;
+  rdfs:label "has-subsection"^^xsd:string ;
+.
+form:has-subtemplate
+  rdf:type owl:ObjectProperty ;
+  rdfs:domain form:section ;
+  rdfs:range form:question-template ;
+.
+form:has-template
+  rdf:type owl:ObjectProperty ;
+  rdfs:label "has-template"^^xsd:string ;
+.
+form:has-template-origin
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines entity from which this template was created."^^xsd:string ;
+  rdfs:domain form:question-template ;
+  rdfs:label "has template origin"^^xsd:string ;
+  rdfs:subPropertyOf form:has-origin ;
+.
+form:has-template-relation
+  rdf:type owl:ObjectProperty ;
+  rdfs:label "has-template-relation"^^xsd:string ;
+.
+form:has-tested-question
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Determine which questions are tested for this condition. Multiple questions can be tested."^^xsd:string ;
+  rdfs:domain form:condition ;
+  rdfs:label "has tested question"^^xsd:string ;
+  rdfs:range doc:question ;
+.
+form:has-unit
+  rdf:type owl:DatatypeProperty ;
+  rdfs:label "has unit"^^xsd:string ;
+  rdfs:range xsd:string ;
+.
+form:inherits-template-from
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Subject inherits properties from its object, i.e. any question created by subject template must also have properties of object template."^^xsd:string ;
+  rdfs:domain form:question-template ;
+  rdfs:range form:question-template ;
+.
+form:is-clone-of-question
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Question within subject of this relation is unmodifiable clone of question within object of this relation."^^xsd:string ;
+  rdfs:domain doc:question ;
+  rdfs:range doc:question ;
+.
+form:is-link-template-of
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Subject of this relation is a template relation (?s_qts_rel) that defines contract how any of its question should be created. Every question created using ?s_qts_rel must be only reference to other question created from ?o_qts_rel, i.e. template relation within object of this relation. Domain and range of this relation is of type reification of ?qt1 has-subtemplate ?qt2."^^xsd:string ;
+.
+form:is-relevant-if
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "States in which context is statement relevant."^^xsd:string ;
+  rdfs:domain doc:question ;
+  rdfs:label "is relevant if"^^xsd:string ;
+  rdfs:range form:condition ;
+.
+form:is-valid-answer
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Defines  set of answers that need to be valid in order for condition to hold."^^xsd:string ;
+  rdfs:domain form:condition ;
+  rdfs:label "has valid answer"^^xsd:string ;
+  rdfs:range doc:question ;
+.
+form:positive-validation-condition
+  rdf:type owl:Class ;
+  rdfs:comment "Indicates that accept answer value is only  \"true\" of this condition." ;
+  rdfs:subClassOf form:validation-result-condition ;
+.
+form:question-origin
+  rdf:type owl:Class ;
+  rdfs:comment "Class of objects that are used to reconstruct how was a question created." ;
+  rdfs:label "Question origin" ;
+.
+form:question-template
+  rdf:type owl:Class ;
+  rdfs:subClassOf form:template-entity ;
+.
+form:requires-answer
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Indicates that question requires answer."^^xsd:string ;
+  rdfs:domain doc:question ;
+  rdfs:label "requires answer"^^xsd:string ;
+.
+form:requires-answer-description-if
+  rdf:type owl:ObjectProperty ;
+  rdfs:comment "Answer requires descripton."^^xsd:string ;
+  rdfs:domain doc:question ;
+  rdfs:label "requires answer description"^^xsd:string ;
+  rdfs:range form:condition ;
+.
+form:section
+  rdf:type owl:Class ;
+  rdfs:subClassOf form:question-template ;
+.
+form:template-entity
+  rdf:type owl:Class ;
+  rdfs:label "template-entity"^^xsd:string ;
+  rdfs:subClassOf owl:Thing ;
+.
+form:validation-result-condition
+  rdf:type owl:Class ;
+  rdfs:subClassOf form:condition ;
+.

--
Gitblit v1.9.3