-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-layout.ttl
43 lines (34 loc) · 1.51 KB
/
form-layout.ttl
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
@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 xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dc: <http://purl.org/dc/terms/> .
<http://onto.fel.cvut.cz/ontologies/form-layout> a owl:Ontology ;
owl:imports <http://onto.fel.cvut.cz/ontologies/form> ;
.
form-lt:LayoutClassRule a owl:Class ;
rdfs:label "Layout class rule" ;
rdfs:subClassOf owl:Thing .
form-lt:has-layout-class a owl:DatatypeProperty ;
rdfs:label "Question layout class" ;
rdfs:comment "Question layout class (e.g. \"type-ahead\", \"section\")" .
form-lt:has-required-value a owl:DatatypeProperty ;
rdfs:label "has required value" ;
dc:description "Question has required value" ;
rdfs:range xsd:boolean .
form-lt:is-disabled a owl:DatatypeProperty ;
rdfs:label "is disabled" ;
dc:description "Defines whether this question should be disabled" ;
rdfs:range xsd:boolean .
form-lt:is-hidden a owl:DatatypeProperty ;
rdfs:label "is hidden" ;
dc:description "Defines whether this question should be hidden" ;
rdfs:range xsd:boolean .
form-lt:outputValue a owl:DatatypeProperty ;
rdfs:label "Form layout output value" ;
rdfs:range xsd:string .
form-lt:propertyPath a owl:DatatypeProperty ;
rdfs:label "Form layout property path" ;
rdfs:range xsd:string .