Ontological model for s-forms. Repository was moved to https://github.com/kbss-cvut/s-forms-model.
Miroslav Blasko
2021-03-28 f3da6ccf69ced57ab3479da390c5cdf78331395b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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 ;
.