-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generally update dependencies and use Ruby 2.6.
Update example files.
- Loading branch information
Showing
7 changed files
with
158 additions
and
118 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
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
9 changes: 9 additions & 0 deletions
9
...ple-JSON-LD-document-using-an-IRI-instead-of-a-term-to-express-a-property-expanded.jsonld
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,9 @@ | ||
[{ | ||
"@id": "http://me.markus-lanthaler.com/", | ||
"http://xmlns.com/foaf/0.1/name": [ | ||
{"@value": "Markus Lanthaler"} | ||
], | ||
"http://xmlns.com/foaf/0.1/homepage": [ | ||
{"@id": "http://www.markus-lanthaler.com/"} | ||
] | ||
}] |
20 changes: 20 additions & 0 deletions
20
...le-JSON-LD-document-using-an-IRI-instead-of-a-term-to-express-a-property-statements.table
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,20 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> | ||
<html><body><table class="statements" data-result-for="Sample JSON-LD document using an IRI instead of a term to express a property-expanded"> | ||
<thead><tr> | ||
<th>Subject</th> | ||
<th>Property</th> | ||
<th>Value</th> | ||
</tr></thead> | ||
<tbody> | ||
<tr> | ||
<td>http://me.markus-lanthaler.com/</td> | ||
<td>foaf:name</td> | ||
<td>Markus Lanthaler</td> | ||
</tr> | ||
<tr> | ||
<td>http://me.markus-lanthaler.com/</td> | ||
<td>http://xmlns.com/foaf/0.1/homepage</td> | ||
<td>http://www.markus-lanthaler.com/</td> | ||
</tr> | ||
</tbody> | ||
</table></body></html> |
3 changes: 3 additions & 0 deletions
3
...s/Sample-JSON-LD-document-using-an-IRI-instead-of-a-term-to-express-a-property-turtle.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,3 @@ | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | ||
<http://me.markus-lanthaler.com/> foaf:name "Markus Lanthaler"; | ||
foaf:homepage <http://www.markus-lanthaler.com/> . |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
<http://me.markus-lanthaler.com/> <http://xmlns.com/foaf/0.1/name> "Markus Lanthaler" . | ||
<http://me.markus-lanthaler.com/> <http://xmlns.com/foaf/0.1/homepage> <http://www.markus-lanthaler.com/> . | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | ||
<http://me.markus-lanthaler.com/> | ||
foaf:name "Markus Lanthaler" ; | ||
foaf:homepage <http://www.markus-lanthaler.com/> . |
7 changes: 7 additions & 0 deletions
7
...ample-JSON-LD-document-using-an-IRI-instead-of-a-term-to-express-a-property-expanded.yaml
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 @@ | ||
Example 004: Sample JSON-LD document using an IRI instead of a term to express a property-expanded | ||
--- | ||
- "@id": http://me.markus-lanthaler.com/ | ||
http://xmlns.com/foaf/0.1/name: | ||
- "@value": Markus Lanthaler | ||
http://xmlns.com/foaf/0.1/homepage: | ||
- "@id": http://www.markus-lanthaler.com/ |