some rudimentary model of class
This commit is contained in:
parent
06a1864b2f
commit
33404eb853
2 changed files with 15 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
is realized in deep implemented."
|
is realized in deep implemented."
|
||||||
(:require
|
(:require
|
||||||
[clojure.spec.alpha :as s]
|
[clojure.spec.alpha :as s]
|
||||||
|
[org.domaindrivenarchitecture.activity-pub-poc.predicates :as p]
|
||||||
[orchestra.core :refer [defn-spec]]))
|
[orchestra.core :refer [defn-spec]]))
|
||||||
|
|
||||||
; Properties:https://www.w3.org/TR/owl-ref/#Property
|
; Properties:https://www.w3.org/TR/owl-ref/#Property
|
||||||
|
@ -11,7 +12,12 @@
|
||||||
|
|
||||||
;http://www.w3.org/2002/07/owl#Class
|
;http://www.w3.org/2002/07/owl#Class
|
||||||
;https://www.w3.org/TR/owl-ref/#Class-def
|
;https://www.w3.org/TR/owl-ref/#Class-def
|
||||||
(s/def ::Class any?)
|
(defn-spec owl-class? boolean?
|
||||||
|
[elem any?]
|
||||||
|
(or (p/uri-string? elem)
|
||||||
|
(map? elem)
|
||||||
|
(vector? elem)))
|
||||||
|
(s/def ::Class owl-class?)
|
||||||
|
|
||||||
;http://www.w3.org/2002/07/owl#DatatypeProperty
|
;http://www.w3.org/2002/07/owl#DatatypeProperty
|
||||||
(s/def ::DatatypeProperty any?)
|
(s/def ::DatatypeProperty any?)
|
||||||
|
|
|
@ -11,4 +11,11 @@
|
||||||
(is (sut/functional? ["str"]))
|
(is (sut/functional? ["str"]))
|
||||||
(is (not (sut/functional? [])))
|
(is (not (sut/functional? [])))
|
||||||
(is (not (sut/functional? nil)))
|
(is (not (sut/functional? nil)))
|
||||||
(is (not (sut/functional? [1 2]))))
|
(is (not (sut/functional? [1 2]))))
|
||||||
|
|
||||||
|
(deftest owl-class-predicate
|
||||||
|
(is (sut/owl-class? "http://some.uri"))
|
||||||
|
(is (sut/owl-class? {:as "class-definition"}))
|
||||||
|
(is (sut/owl-class? []))
|
||||||
|
(is (not (sut/owl-class? "str")))
|
||||||
|
(is (not (sut/owl-class? nil))))
|
||||||
|
|
Loading…
Reference in a new issue