From 01786af36b8bddd605e4a6ffc8bdf0fb779ac987 Mon Sep 17 00:00:00 2001
From: Miroslav Blasko <blcham@gmail.com>
Date: Sun, 28 Mar 2021 12:59:41 +0200
Subject: [PATCH] [Upd] Change rdfs:comments to dc:description

---
 form-layout.ttl |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/form-layout.ttl b/form-layout.ttl
index 38b2735..a636878 100644
--- a/form-layout.ttl
+++ b/form-layout.ttl
@@ -4,6 +4,7 @@
 @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> ; 
@@ -19,17 +20,17 @@
 
 form-lt:has-required-value a owl:DatatypeProperty ;
     rdfs:label "has required value" ;
-    rdfs:comment "Question has required value" ;
+    dc:description "Question has required value" ;
     rdfs:range xsd:boolean .
 
 form-lt:is-disabled a owl:DatatypeProperty ;
     rdfs:label "is disabled" ;
-    rdfs:comment "Defines whether this question should be 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" ;
-    rdfs:comment "Defines whether this question should be hidden" ;
+    dc:description "Defines whether this question should be hidden" ;
     rdfs:range xsd:boolean .
 
 form-lt:outputValue a owl:DatatypeProperty ;

--
Gitblit v1.9.3