From 960d4551c0911f077d59f2e196ec34fc0cb84312 Mon Sep 17 00:00:00 2001
From: Miroslav Blasko <blcham@gmail.com>
Date: Tue, 21 Sep 2021 11:32:17 +0200
Subject: [PATCH] [New] Adding comment value

---
 form.ttl |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/form.ttl b/form.ttl
index 63053e7..41e8472 100644
--- a/form.ttl
+++ b/form.ttl
@@ -28,14 +28,22 @@
 .
 
 form:has-author a owl:ObjectProperty ;
+    rdfs:label "has author" ;
     rdfs:domain form:comment ;
     rdfs:range form:author ;
 .
 
 form:has-timestamp a owl:ObjectProperty ;
+    rdfs:label "has timestamp" ;
     rdfs:domain form:comment ;
 .
 
+form:has-comment-value a owl:DatatypeProperty ;
+    rdfs:label "has comment value" ;
+    rdfs:domain form:comment ;
+    rdfs:range xsd:string ;
+.
+
 form:accepts a owl:ObjectProperty ;
     rdfs:label "accepts" ;
     rdfs:domain form:condition ;

--
Gitblit v1.9.3