Ontological model for s-forms. Repository was moved to https://github.com/kbss-cvut/s-forms-model.
Miroslav Blasko
2021-03-28 f3da6ccf69ced57ab3479da390c5cdf78331395b
commit | author | age
f3da6c 1 # baseURI: http://onto.fel.cvut.cz/ontologies/form-layout
MB 2 # imports: http://onto.fel.cvut.cz/ontologies/form
3
4 @prefix : <http://onto.fel.cvut.cz/ontologies/form-layout> .
5 @prefix form-lt: <http://onto.fel.cvut.cz/ontologies/form-layout/> .
6 @prefix owl: <http://www.w3.org/2002/07/owl#> .
7 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
8 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
9 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
10
11 <http://onto.fel.cvut.cz/ontologies/form-layout>
12   rdf:type owl:Ontology ;
13   owl:imports <http://onto.fel.cvut.cz/ontologies/form> ;
14   owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
15 .
16 form-lt:LayoutClassRule
17   rdf:type owl:Class ;
18   rdfs:label "Layout class rule"^^xsd:string ;
19   rdfs:subClassOf owl:Thing ;
20 .
21 form-lt:has-layout-class
22   rdf:type owl:DatatypeProperty ;
23   rdfs:comment "Question layout class (e.g. \"type-ahead\", \"section\")"^^xsd:string ;
24   rdfs:label "Question layout class"^^xsd:string ;
25 .
26 form-lt:has-required-value
27   rdf:type owl:DatatypeProperty ;
28   rdfs:comment "Question has required value"^^xsd:string ;
29   rdfs:label "ha required value"^^xsd:string ;
30   rdfs:range xsd:boolean ;
31 .
32 form-lt:is-disabled
33   rdf:type owl:DatatypeProperty ;
34   rdfs:comment "Defines whether this question should be disabled"^^xsd:string ;
35   rdfs:label "is disabled"^^xsd:string ;
36   rdfs:range xsd:boolean ;
37 .
38 form-lt:is-hidden
39   rdf:type owl:DatatypeProperty ;
40   rdfs:comment "Defines whether this question should be hidden"^^xsd:string ;
41   rdfs:label "is hidden"^^xsd:string ;
42   rdfs:range xsd:boolean ;
43 .
44 form-lt:outputValue
45   rdf:type owl:DatatypeProperty ;
46   rdfs:label "Form layout output value"^^xsd:string ;
47   rdfs:range xsd:string ;
48 .
49 form-lt:propertyPath
50   rdf:type owl:DatatypeProperty ;
51   rdfs:label "Form layout property path"^^xsd:string ;
52   rdfs:range xsd:string ;
53 .