-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathsdo-book-series-examples.txt
More file actions
44 lines (35 loc) · 1.22 KB
/
sdo-book-series-examples.txt
File metadata and controls
44 lines (35 loc) · 1.22 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
TYPES: #eg-0330 BookSeries, author
PRE-MARKUP:
Book series example with nested author(JSON-LD only).
MICRODATA:
TODO
RDFA:
TODO
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BookSeries",
"name": "The Hitchhiker's Guide to the Galaxy",
"genre": "comedy science fiction",
"startDate": "1979-10-12",
"endDate": "1992-10-12",
"abstract": "Earthman Arthur Dent is saved by his friend, Ford Prefect—an alien researcher for the titular Hitchhiker's Guide to the Galaxy, which provides info on every planet in the galaxy—from the Earth just before it is destroyed by the alien Vogons.",
"author": {
"@type": "Person",
"givenName": "Douglas",
"familyName": "Adams",
"additionalName": "Noel",
"birthDate": "1952-03-11",
"birthPlace": {
"@type": "Place",
"address": "Cambridge, Cambridgeshire, England"
},
"deathDate": "2001-05-11",
"deathPlace": {
"@type": "Place",
"address": "Santa Barbara, California, United States"
}
}
}
</script>