Added some infos
This commit is contained in:
parent
23e159ea5f
commit
34922395e9
1 changed files with 9 additions and 0 deletions
|
@ -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?)
|
||||
|
|
Loading…
Reference in a new issue