-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSAMPLE_DATA.json
More file actions
79 lines (73 loc) · 2.47 KB
/
SAMPLE_DATA.json
File metadata and controls
79 lines (73 loc) · 2.47 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"factoids": [{
"@id": "Factoid1",
"person-ref": { "@id": "Person1" },
"source-ref": { "@id": "Source1" },
"statement-refs": [
{ "@id": "St1-John-Smith-Name" },
{ "@id": "St2-jsmith-teacher" }
],
"createdBy": "Researcher4",
"createdWhen": "2012-04-23",
"modifiedBy": "Researcher2",
"modifiedWhen": "2012-04-23"
}],
"persons": [{
"@id": "Person1",
"label": "Person Number One",
"uris": ["http://ahpiss.com/Person1", "http://gnd.de/Person1", "http://shouldbethere.com"],
"createdBy": "Researcher3",
"createdWhen": "2012-04-23",
"modifiedBy": "Researcher3",
"modifiedWhen": "2012-04-23"
},
{
"@id": "Person2",
"label": "Person Number Two",
"uris": ["http://ahpiss.com/Person2", "http://gnd.de/Person2", "http://shouldbethere.com/2"],
"createdBy": "Researcher3",
"createdWhen": "2012-04-23",
"modifiedBy": "Researcher3",
"modifiedWhen": "2012-04-23"
}
],
"sources": [{
"@id": "Source1",
"label": "Source Number One (Smith, 1900)",
"uris": ["http://books.net/s1", "http://whsmith.com/sno"],
"createdBy": "Researcher1",
"createdWhen": "2012-04-23",
"modifiedBy": "Researcher7",
"modifiedWhen": "2012-04-23"
}
],
"statements": [{
"@id": "St1-John-Smith-Name",
"places": [],
"createdBy": "RHadden",
"createdWhen": "2022-03-25",
"modifiedBy": "RHadden",
"modifiedWhen": "2022-03-25",
"label": "",
"statementType": {
"uri": "http://vocabs.com/hasName",
"label": "Has Name"
},
"name": "John Smith"
},
{
"@id": "St2-jsmith-teacher",
"places": [{ "uri": "http://places.com/Germany", "label": "Germany" }],
"createdBy": "RHadden",
"createdWhen": "2022-03-25",
"modifiedBy": "RHadden",
"modifiedWhen": "2022-03-25",
"label": "",
"role": {
"label": "teachery",
"uri": "http://jobs.com/teacher"
},
"relatesToPerson": [{ "uri": "http://persons.com/mrsSpenceley", "label": "Mrs Spenceley" }]
}
]
}