From 34922395e90a9ef26ff5546eed24439d7e516191 Mon Sep 17 00:00:00 2001 From: Clemens Date: Fri, 21 Jul 2023 12:24:11 +0200 Subject: [PATCH] Added some infos --- .../domaindrivenarchitecture/activity_pub_poc/owl.cljc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/cljc/org/domaindrivenarchitecture/activity_pub_poc/owl.cljc b/src/main/cljc/org/domaindrivenarchitecture/activity_pub_poc/owl.cljc index e473146..a78c43d 100644 --- a/src/main/cljc/org/domaindrivenarchitecture/activity_pub_poc/owl.cljc +++ b/src/main/cljc/org/domaindrivenarchitecture/activity_pub_poc/owl.cljc @@ -3,11 +3,20 @@ is realized in deep implemented.""" (:require [clojure.spec.alpha :as s])) +; Properties:https://www.w3.org/TR/owl-ref/#Property +; * Datatype properties link individuals to data values. +; * Object properties link individuals to data values. + ;http://www.w3.org/2002/07/owl#DatatypeProperty (s/def ::DatatypeProperty any?) +;http://www.w3.org/2002/07/owl#ObjectProperty +(s/def ::ObjectProperty any?) + ;http://www.w3.org/2002/07/owl#FunctionalProperty +;https://www.w3.org/TR/owl-ref/#FunctionalProperty-def (s/def ::FunctionalProperty any?) ;http://www.w3.org/2002/07/owl#DeprecatedProperty +;https://www.w3.org/TR/owl-ref/#Deprecation (s/def ::DeprecatedProperty any?)