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
| <script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Organization",
"name" : "Geo Book Club",
"member" : [{
"@type" : "Person",
"@id" : "ang",
"name" : "Alice Ng"
}],
"event" : [{
"@type" :"Event",
"@id" : "GBC_mtg_2",
"about" : {
"@type" :"Book",
"name" : "Things Fall Apart",
"isbn" : "9780393932195",
"author" : {
"@id" : "http://enwp.org/Chinua_Achebe",
"@type" : "Person",
"name" : "Chinua Achebe"
},
"image" : {
"@id" : "TFA_cover.jpg"
}
}
},{
"@type" : "Event",
"@id" : "GBC_mtg_1"
}]
}
</script>
|