Ontological model for s-forms. Repository was moved to https://github.com/kbss-cvut/s-forms-model.
Miroslav Blasko
2022-06-10 6d246ed5fa098a552f421934ce18cbb60d3d3c3e
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#> .
01786a 7 @prefix dc: <http://purl.org/dc/terms/> .
f3da6c 8
311be0 9 <http://onto.fel.cvut.cz/ontologies/form-layout> a owl:Ontology ;
MB 10     owl:imports <http://onto.fel.cvut.cz/ontologies/form> ; 
f3da6c 11 .
311be0 12
MB 13 form-lt:LayoutClassRule a owl:Class ;
14     rdfs:label "Layout class rule" ;
15     rdfs:subClassOf owl:Thing .
16
17 form-lt:has-layout-class a owl:DatatypeProperty ;
18     rdfs:label "Question layout class" ;
19     rdfs:comment "Question layout class (e.g. \"type-ahead\", \"section\")" .
20
21 form-lt:has-required-value a owl:DatatypeProperty ;
22     rdfs:label "has required value" ;
01786a 23     dc:description "Question has required value" ;
311be0 24     rdfs:range xsd:boolean .
MB 25
26 form-lt:is-disabled a owl:DatatypeProperty ;
27     rdfs:label "is disabled" ;
01786a 28     dc:description "Defines whether this question should be disabled" ;
311be0 29     rdfs:range xsd:boolean .
MB 30
31 form-lt:is-hidden a owl:DatatypeProperty ;
32     rdfs:label "is hidden" ;
01786a 33     dc:description "Defines whether this question should be hidden" ;
311be0 34     rdfs:range xsd:boolean .
MB 35
36 form-lt:outputValue a owl:DatatypeProperty ;
37     rdfs:label "Form layout output value" ;
38     rdfs:range xsd:string .
39
40 form-lt:propertyPath a owl:DatatypeProperty ;
41     rdfs:label "Form layout property path" ;
42     rdfs:range xsd:string .
43