-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add introduction of triple terms and accompanying Turtle examples (#16)
Main changes: * Add subsection about triple terms * Add Turtle examples of reifiers and annotations * Add illustration of the annotation example --------- Co-authored-by: Ted Thibodeau Jr <tthibodeau@openlinksw.com> Co-authored-by: Andy Seaborne <andy@apache.org>
- Loading branch information
1 parent
d0581f3
commit 430d4bf
Showing
7 changed files
with
250 additions
and
13 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<bob#me> foaf:topic_interest wd:Q12418 ~ <bob#interest-1> | ||
~ <alice#claim-1> . | ||
|
||
<bob#interest-1> | ||
a prov:Influence ; | ||
dcterms:date "1998-10-04"^^xsd:date . | ||
|
||
<alice#claim-1> | ||
a rdf:Statement ; | ||
dcterms:date "2004-01-12"^^xsd:date ; | ||
dcterms:creator <alice#me> . |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
PREFIX prov: <http://www.w3.org/ns/prov#> | ||
|
||
<bob#me> foaf:topic_interest wd:Q12418 {| a prov:Influence ; | ||
dcterms:date "1998-10-04"^^xsd:date |} . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
|
||
<< <bob#me> foaf:topic_interest wd:Q12418 >> | ||
a rdf:Statement ; | ||
dcterms:date "2004-01-12"^^xsd:date ; | ||
dcterms:creator <alice#me> . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
svg { | ||
font-family: sans-serif; | ||
margin: auto; | ||
--bg: #fff; | ||
--fg: #000; | ||
--green: #4aa35b; | ||
--red:red; | ||
--blue: #3575b8; | ||
--purple: #82b; | ||
--white: white; | ||
} | ||
|
||
.label { font-size:18px; font-weight:bold } | ||
|
||
text.iri { font-size:12px; fill:var(--fg); stroke:none } | ||
|
||
.green path { stroke:var(--green) } | ||
.green { fill:var(--green) } | ||
|
||
.blue path { stroke:var(--blue) } | ||
.blue { fill:var(--blue) } | ||
|
||
.purple path { stroke:var(--purple) } | ||
.purple { fill:var(--purple) } | ||
|
||
.arrow text { font-size: 16px } | ||
.arrow textPath { text-anchor: middle } | ||
.arrow path { stroke-width:2.0;marker-end:url(#ConcaveTriangle) } | ||
.arrow.back path { stroke-width:1.6;marker-end:none;marker-start:url(#ConcaveTriangle) } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters