-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fdc2af4
Showing
127 changed files
with
31,517 additions
and
0 deletions.
There are no files selected for viewing
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 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 73ab28f334b83e4adcee676922ba3d9b | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Empty file.
28 changes: 28 additions & 0 deletions
28
_downloads/2f91d74bfeeb11d91948b8ade619e5f8/album_shapes.ttl
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,28 @@ | ||
@prefix sh: <http://www.w3.org/ns/shacl#> . | ||
@prefix ex: <http://example.com/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
# Shape for the Album class | ||
ex:AlbumShape | ||
a sh:NodeShape ; | ||
sh:targetClass ex:Album ; | ||
sh:property [ | ||
sh:path ex:name ; | ||
sh:datatype xsd:string ; | ||
sh:minCount 1 ; | ||
] ; | ||
sh:property [ | ||
sh:path ex:track ; | ||
sh:class ex:Song ; | ||
sh:minCount 1 ; | ||
] . | ||
|
||
# Shape for the Song class | ||
ex:SongShape | ||
a sh:NodeShape ; | ||
sh:targetClass ex:Song ; | ||
sh:property [ | ||
sh:path ex:length ; | ||
sh:datatype xsd:integer ; | ||
sh:minCount 1 ; | ||
] . |
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,7 @@ | ||
@prefix : <http://example.com/#> . | ||
|
||
:p :q _:e0 . | ||
:p :q _:e1 . | ||
_:e0 :p _:e2 . | ||
_:e1 :p _:e3 . | ||
_:e2 :r _:e3 . |
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,61 @@ | ||
<?xml version="1.0" ?> | ||
<rdf:RDF | ||
xmlns:ns1='http://example.com/' | ||
xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'> | ||
|
||
<rdf:Description rdf:about='http://example.com/Love_Me_Do'> | ||
<ns1:length rdf:datatype='http://www.w3.org/2001/XMLSchema#integer'>125</ns1:length> | ||
<ns1:name rdf:datatype='http://www.w3.org/2001/XMLSchema#string'>Love Me Do</ns1:name> | ||
<ns1:writer rdf:resource='http://example.com/John_Lennon'/> | ||
<ns1:writer rdf:resource='http://example.com/Paul_McCartney'/> | ||
<rdf:type rdf:resource='http://example.com/Song'/> | ||
</rdf:Description> | ||
|
||
<rdf:Description rdf:about='http://example.com/The_Beatles'> | ||
<ns1:member rdf:resource='http://example.com/John_Lennon'/> | ||
<ns1:member rdf:resource='http://example.com/Paul_McCartney'/> | ||
<ns1:member rdf:resource='http://example.com/Ringo_Starr'/> | ||
<ns1:member rdf:resource='http://example.com/George_Harrison'/> | ||
<ns1:name rdf:datatype='http://www.w3.org/2001/XMLSchema#string'>The Beatles</ns1:name> | ||
<rdf:type rdf:resource='http://example.com/Band'/> | ||
</rdf:Description> | ||
|
||
<rdf:Description rdf:about='http://example.com/Please_Please_Me'> | ||
<ns1:artist rdf:resource='http://example.com/The_Beatles'/> | ||
<ns1:date rdf:datatype='http://www.w3.org/2001/XMLSchema#date'>1963-03-22</ns1:date> | ||
<ns1:name rdf:datatype='http://www.w3.org/2001/XMLSchema#string'>Please Please Me</ns1:name> | ||
<ns1:track rdf:resource='http://example.com/Love_Me_Do'/> | ||
<rdf:type rdf:resource='http://example.com/Album'/> | ||
</rdf:Description> | ||
|
||
<rdf:Description rdf:about='http://example.com/George_Harrison'> | ||
<rdf:type rdf:resource='http://example.com/SoloArtist'/> | ||
</rdf:Description> | ||
|
||
<rdf:Description rdf:about='http://example.com/Ringo_Starr'> | ||
<rdf:type rdf:resource='http://example.com/SoloArtist'/> | ||
</rdf:Description> | ||
|
||
<rdf:Description rdf:about='http://example.com/John_Lennon'> | ||
<rdf:type rdf:resource='http://example.com/SoloArtist'/> | ||
</rdf:Description> | ||
|
||
<rdf:Description rdf:about='http://example.com/Paul_McCartney'> | ||
<rdf:type rdf:resource='http://example.com/SoloArtist'/> | ||
</rdf:Description> | ||
|
||
<rdf:Description rdf:about='http://example.com/McCartney'> | ||
<ns1:artist rdf:resource='http://example.com/Paul_McCartney'/> | ||
<ns1:date rdf:datatype='http://www.w3.org/2001/XMLSchema#date'>1970-04-17</ns1:date> | ||
<ns1:name rdf:datatype='http://www.w3.org/2001/XMLSchema#string'>McCartney</ns1:name> | ||
<rdf:type rdf:resource='http://example.com/Album'/> | ||
</rdf:Description> | ||
|
||
<rdf:Description rdf:about='http://example.com/Imagine'> | ||
<ns1:artist rdf:resource='http://example.com/John_Lennon'/> | ||
<ns1:date rdf:datatype='http://www.w3.org/2001/XMLSchema#date'>1971-10-11</ns1:date> | ||
<ns1:name rdf:datatype='http://www.w3.org/2001/XMLSchema#string'>Imagine</ns1:name> | ||
<rdf:type rdf:resource='http://example.com/Album'/> | ||
</rdf:Description> | ||
|
||
</rdf:RDF> |
35 changes: 35 additions & 0 deletions
35
_downloads/a12fd164d578252f1d12df64ad0c90c9/beatles_blank.ttl
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,35 @@ | ||
|
||
PREFIX : <http://example.com/> | ||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | ||
|
||
:The_Beatles rdf:type :Band . | ||
:The_Beatles :name "The Beatles" . | ||
:The_Beatles :member :John_Lennon . | ||
:The_Beatles :member :Paul_McCartney . | ||
:The_Beatles :member :Ringo_Starr . | ||
:The_Beatles :member :George_Harrison . | ||
:John_Lennon rdf:type :SoloArtist . | ||
:Paul_McCartney rdf:type :SoloArtist . | ||
:Ringo_Starr rdf:type :SoloArtist . | ||
:George_Harrison rdf:type :SoloArtist . | ||
:Please_Please_Me rdf:type :Album . | ||
:Please_Please_Me :name "Please Please Me" . | ||
:Please_Please_Me :date "1963-03-22"^^xsd:date . | ||
:Please_Please_Me :artist :The_Beatles . | ||
:Please_Please_Me :track [ | ||
rdf:type :Song ; | ||
:name "Love Me Do" ; | ||
:length 125 ; | ||
:writer :John_Lennon ; | ||
:writer :Paul_McCartney]. | ||
|
||
:McCartney rdf:type :Album . | ||
:McCartney :name "McCartney" . | ||
:McCartney :date "1970-04-17"^^xsd:date . | ||
:McCartney :artist :Paul_McCartney . | ||
|
||
:Imagine rdf:type :Album . | ||
:Imagine :name "Imagine" . | ||
:Imagine :date "1971-10-11"^^xsd:date . | ||
:Imagine :artist :John_Lennon . |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.