Created
March 18, 2018 09:22
-
-
Save kinow/0b81387faf6e34d35014b885cc3c9379 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
## Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | |
@prefix dc: <http://purl.org/dc/elements/1.1/> . | |
@prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> . | |
@prefix ns: <http://example.org/ns#> . | |
@prefix : <http://example.org/book/> . | |
# A small dataset for usage examples of Joseki | |
# This data is intentionaly irregular (e.g. different ways to | |
# record the book creator) as if the information is either an | |
# aggregation or was created at different times. | |
:book1 | |
dc:title "Harry Potter and the Philosopher's Stone" ; | |
dc:creator "J.K. Rowling" ; | |
. | |
:book2 | |
dc:title "Harry Potter and the Chamber of Secrets" ; | |
dc:creator _:a . | |
:book3 | |
dc:title "Harry Potter and the Prisoner Of Azkaban" ; | |
dc:creator _:a . | |
:book4 | |
dc:title "Harry Potter and the Goblet of Fire" . | |
:book5 | |
dc:title "Señora Siobhán, look at that façade"; | |
dc:creator "J.K. Rowling" ; | |
. | |
:book6 | |
dc:title "Harry Potter and the Half-Blood Prince"; | |
dc:creator "J.K. Rowling" . | |
:book7 | |
dc:title "Harry Potter and the Deathly Hallows" ; | |
dc:creator "J.K. Rowling" . | |
_:a | |
vcard:FN "J.K. Rowling" ; | |
vcard:N | |
[ vcard:Family "Rowling" ; | |
vcard:Given "Joanna" | |
] | |
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment