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