Skip to content

Commit 140f672

Browse files
committed
add Thing Model Ontology
also add a test for the datomic schema bootstrap function
1 parent c4b22a0 commit 140f672

File tree

11 files changed

+721
-334
lines changed

11 files changed

+721
-334
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ pom.xml.asc
1111
.nrepl-port
1212
.cpcache/
1313
.vocab/
14-
.eastwood
14+
.eastwood
15+
.clj-kondo/
16+
.lsp/

deps.edn

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,31 @@
3232
org.clojars.quoll/asami
3333
{:mvn/version "2.3.4"}
3434
org.clojure/clojure
35-
{:mvn/version "1.12.0-alpha7"}
35+
{:mvn/version "1.11.2"}
3636
org.clojure/core.async
3737
{:mvn/version "1.6.681"}
3838
org.clojure/data.csv
39-
{:mvn/version "1.0.1"}
39+
{:mvn/version "1.1.0"}
4040
org.clojure/core.memoize
41-
{:mvn/version "1.0.257"}
41+
{:mvn/version "1.1.266"}
4242
org.clojure/data.fressian
43-
{:mvn/version "1.0.0"}
43+
{:mvn/version "1.1.0"}
4444
org.clojure/data.int-map
45-
{:mvn/version "1.2.1"}
45+
{:mvn/version "1.3.0"}
4646
org.clojure/data.json
4747
{:mvn/version "2.5.0"}
4848
org.clojure/data.xml
49-
{:mvn/version "0.2.0-alpha8"}
49+
{:mvn/version "0.2.0-alpha9"}
5050
org.clojure/math.combinatorics
51-
{:mvn/version "0.2.0"}
51+
{:mvn/version "0.3.0"}
5252
org.clojure/tools.logging
53-
{:mvn/version "1.2.4"}
53+
{:mvn/version "1.3.0"}
5454
org.clojure/tools.namespace
55-
{:mvn/version "1.4.4"}
55+
{:mvn/version "1.5.0"}
5656
org.glassfish/jakarta.json
5757
{:mvn/version "2.0.1"}
5858
zprint/zprint
59-
{:mvn/version "1.2.8"}}
59+
{:mvn/version "1.2.9"}}
6060
:paths ["src/clj" "src/cljc" "classes"]
6161
:aliases
6262
{:dev

resources/net/wikipunk/ext/cred.ttl

Lines changed: 69 additions & 41 deletions
Large diffs are not rendered by default.

resources/net/wikipunk/ext/sec.ttl

Lines changed: 262 additions & 176 deletions
Large diffs are not rendered by default.

src/cljc/net/wikipunk/ext.cljc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,12 @@
706706
:rdfa/uri "https://www.w3.org/2019/wot/td#"
707707
:rdf/type :rdfa/PrefixMapping})
708708

709+
(def tm
710+
{:rdfa/prefix "tm"
711+
:rdfa/uri "https://www.w3.org/2019/wot/tm#"
712+
:rdf/type :rdfa/PrefixMapping
713+
:dcat/downloadURL "https://github.com/w3c/wot-thing-description/raw/main/ontology/tm.ttl"})
714+
709715
(def wotsec
710716
{:dcat/downloadURL "net/wikipunk/ext/security.ttl"
711717
:rdfa/prefix "wotsec"

0 commit comments

Comments
 (0)