Skip to content

Commit 0ec59be

Browse files
committedMay 1, 2012
More presentation examples.
1 parent c7ee496 commit 0ec59be

11 files changed

+200
-0
lines changed
 

‎presentation/API/context.jsonld

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"@context": {
3+
"schema": "http://schema.org/",
4+
"Person": "schema:Person",
5+
"colleagues": {"@id": "schema:coleagues", "@type": "@id"},
6+
"name": "schema:name",
7+
"image": {"@id": "schema:image", "@type": "@id"},
8+
"url": {"@id": "schema:url", "@type": "@id"}
9+
}
10+
}

‎presentation/API/doc.jsonld

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": "http://example.com/context.jsonld",
3+
"@type": "Person",
4+
"image": "http://localhost:9393/examples/schema.org/janedoe.jpg",
5+
"colleagues": [
6+
"http://www.xyz.edu/students/alicejones.html",
7+
"http://www.xyz.edu/students/bobsmith.html"
8+
],
9+
"name": "Jane Doe",
10+
"url": "http://www.janedoe.com"
11+
}

‎presentation/combined.jsonld

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"@context": "http://example.org/context.jsonld",
3+
"@id": "http://greggkellogg.net/foaf#me",
4+
"@type": "Person",
5+
"name": "Gregg Kellogg",
6+
"knows": {
7+
"@id": "http://www.markus-lanthaler.com/",
8+
"@type": "Person",
9+
"name": "Markus Lanthaler",
10+
"knows" "http://greggkellogg.net/foaf#me"
11+
}
12+
}

‎presentation/dave.jsonld

Whitespace-only changes.

‎presentation/drupal/compacted.jsonld

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"@context": "http://drupal.example.org/context.jsonld",
3+
"@id": "http://dev.fga-directory.gotpantheon.com/occupation/al/kosovo/occupy-prishtina",
4+
"@type": ["ows:Occupation", "schema:Organization"],
5+
"foaf:name": "Occupy Prishtina",
6+
"schema:name": "Occupy Prishtina",
7+
"dc:date": "2012-02-12T21:18:08-05:00",
8+
"dc:created": "2012-02-12T21:18:08-05:00",
9+
"dc:modified": "2012-02-12T21:57:52-05:00",
10+
"sioc:num_replies": 0,
11+
"schema:foundingDate": "2011-10-15T00:00:00-04:00",
12+
"ows:twitter_account": "@OccupyPrishtina",
13+
"foaf:mbox": "",
14+
"schema:telephone": "",
15+
"foaf:phone": ""
16+
}

‎presentation/drupal/context.jsonld

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{ "@context": {
2+
"content": "http://purl.org/rss/1.0/modules/content/",
3+
"dc": "http://purl.org/dc/terms/",
4+
"foaf": "http://xmlns.com/foaf/0.1/",
5+
"og": "http://ogp.me/ns#",
6+
"owl": "http://www.w3.org/2002/07/owl#",
7+
"ows": "http://vocab.occupy.net/ows#",
8+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
9+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
10+
"rss": "http://purl.org/rss/1.0/",
11+
"schema": "http://schema.org/",
12+
"sioc": "http://rdfs.org/sioc/ns#",
13+
"sioct": "http://rdfs.org/sioc/types#",
14+
"site": "http://dev.fga-directory.gotpantheon.com/ns#",
15+
"skos": "http://www.w3.org/2004/02/skos/core#",
16+
"xsd": "http://www.w3.org/2001/XMLSchema#",
17+
"dc:created": {"@type": "xsd:dateTime"},
18+
"dc:modified": {"@type": "xsd:dateTime"},
19+
"dc:date": {"@type": "xsd:dateTime"},
20+
"schema:foundingDate": {"@type": "xsd:date"},
21+
"sioc:num_replies": {"@type": "xsd:integer"}
22+
}
23+
}

‎presentation/drupal/drupal.jsonld

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"@context": {
3+
"content": "http://purl.org/rss/1.0/modules/content/",
4+
"dc": "http://purl.org/dc/terms/",
5+
"foaf": "http://xmlns.com/foaf/0.1/",
6+
"og": "http://ogp.me/ns#",
7+
"owl": "http://www.w3.org/2002/07/owl#",
8+
"ows": "http://vocab.occupy.net/ows#",
9+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
10+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
11+
"rss": "http://purl.org/rss/1.0/",
12+
"schema": "http://schema.org/",
13+
"sioc": "http://rdfs.org/sioc/ns#",
14+
"sioct": "http://rdfs.org/sioc/types#",
15+
"site": "http://dev.fga-directory.gotpantheon.com/ns#",
16+
"skos": "http://www.w3.org/2004/02/skos/core#",
17+
"xsd": "http://www.w3.org/2001/XMLSchema#"
18+
},
19+
"@id": "http://dev.fga-directory.gotpantheon.com/occupation/al/kosovo/occupy-prishtina",
20+
"@type": [
21+
"http://vocab.occupy.net/ows#Occupation",
22+
"http://schema.org/Organization"
23+
],
24+
"http://purl.org/dc/terms/created": [
25+
{
26+
"@type": "xsd:dateTime",
27+
"@value": "2012-02-12T21:18:08-05:00"
28+
}
29+
],
30+
"http://purl.org/dc/terms/date": [
31+
{
32+
"@type": "xsd:dateTime",
33+
"@value": "2012-02-12T21:18:08-05:00"
34+
}
35+
],
36+
"http://purl.org/dc/terms/modified": [
37+
{
38+
"@type": "xsd:dateTime",
39+
"@value": "2012-02-12T21:57:52-05:00"
40+
}
41+
],
42+
"http://rdfs.org/sioc/ns#num_replies": [
43+
{
44+
"@type": "xsd:integer",
45+
"@value": "0"
46+
}
47+
],
48+
"http://schema.org/foundingDate": [
49+
{
50+
"@type": "xsd:date",
51+
"@value": "2011-10-15T00:00:00-04:00"
52+
}
53+
],
54+
"http://schema.org/name": [
55+
{
56+
"@value": "Occupy Prishtina"
57+
}
58+
],
59+
"http://schema.org/telephone": [
60+
{
61+
"@value": ""
62+
}
63+
],
64+
"http://vocab.occupy.net/ows#twitter_account": [
65+
{
66+
"@value": "@OccupyPrishtina"
67+
}
68+
],
69+
"http://xmlns.com/foaf/0.1/mbox": [
70+
{
71+
"@value": ""
72+
}
73+
],
74+
"http://xmlns.com/foaf/0.1/name": [
75+
{
76+
"@value": "Occupy Prishtina"
77+
}
78+
],
79+
"http://xmlns.com/foaf/0.1/phone": [
80+
{
81+
"@value": ""
82+
}
83+
]
84+
}

‎presentation/drupal/expanded.jsonld

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[{
2+
"@id": "http://dev.fga-directory.gotpantheon.com/occupation/al/kosovo/occupy-prishtina",
3+
"@type": ["http://vocab.occupy.net/ows#Occupation", "http://schema.org/Organization"],
4+
"http://purl.org/dc/terms/created": [{
5+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime",
6+
"@value": "2012-02-12T21:18:08-05:00"
7+
}],
8+
"http://purl.org/dc/terms/date": [{
9+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime",
10+
"@value": "2012-02-12T21:18:08-05:00"
11+
}],
12+
"http://purl.org/dc/terms/modified": [{
13+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime",
14+
"@value": "2012-02-12T21:57:52-05:00"
15+
}],
16+
"http://rdfs.org/sioc/ns#num_replies": [{
17+
"@type": "http://www.w3.org/2001/XMLSchema#integer",
18+
"@value": "0"
19+
}],
20+
"http://schema.org/foundingDate": [{
21+
"@type": "http://www.w3.org/2001/XMLSchema#date",
22+
"@value": "2011-10-15T00:00:00-04:00"
23+
}],
24+
"http://schema.org/name": ["Occupy Prishtina"],
25+
"http://schema.org/telephone": [""],
26+
"http://vocab.occupy.net/ows#twitter_account": ["@OccupyPrishtina"],
27+
"http://xmlns.com/foaf/0.1/mbox": [""],
28+
"http://xmlns.com/foaf/0.1/name": ["Occupy Prishtina"],
29+
"http://xmlns.com/foaf/0.1/phone": [""]
30+
}]

‎presentation/gregg.jsonld

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"@context": "http://example.org/context.jsonld",
3+
"@id": "http://greggkellogg.net/foaf#me",
4+
"@type": "Person",
5+
"name": "Gregg Kellogg",
6+
"knows": "http://www.markus-lanthaler.com/"
7+
}

‎presentation/manu.jsonld

Whitespace-only changes.

‎presentation/markus.jsonld

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"@context": "http://example.org/context.jsonld",
3+
"@id": "http://www.markus-lanthaler.com/",
4+
"@type": "Person",
5+
"name": "Markus Lanthaler",
6+
"knows" "http://greggkellogg.net/foaf#me"
7+
}

0 commit comments

Comments
 (0)
Please sign in to comment.