Added some infos

This commit is contained in:
Clemens 2023-07-21 12:24:11 +02:00
parent 23e159ea5f
commit 34922395e9

View file

@ -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?)