-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.jsonld
32 lines (32 loc) · 1.12 KB
/
example.jsonld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"@context": {
"foaf": "http://xmlns.com/foaf/0.1/",
"schema": "http://schema.org/",
"owl": "http://www.w3.org/2002/07/owl#"
},
"@metadata": {
"@context": {
"api": "http://zenomt.com/ns/terse-api#"
},
"@id": "?cursor=2",
"@type": "api:Page",
"api:prevPage": { "@id": "?cursor=1" },
"api:nextPage": { "@id": "?cursor=3" },
"api:pageOf": { "@id": "example.jsonld" }
},
"@id": "card#me",
"@type": ["foaf:Person", "schema:Person"],
"foaf:name": { "@value": "Michael Thornburgh", "@language": "en-us" },
"foaf:nick": "Mike",
"foaf:depiction": { "@id": "https://zenomt.zenomt.com/mike-2017.jpg" },
"schema:worksFor": {
"@type": "schema:Corporation",
"schema:name": "Example Corp.",
"schema:employee": { "@id": "card#me" }
},
"@included": [
{ "@id": "", "@type": "foaf:PersonalProfileDocument", "foaf:primaryTopic": { "@id": "card#me" } },
{ "@id": "_:b86", "foaf:knows": { "@id": "_:b99" } },
{ "@id": "_:b99", "foaf:knows": { "@id": "_:b86" } }
]
}