26 lines
462 B
JSON
26 lines
462 B
JSON
{
|
|
"@context": "https://schema.org",
|
|
"@type": "Book",
|
|
"name": "The Great Book",
|
|
"author": {
|
|
"@type": "Person",
|
|
"name": "Jane Doe",
|
|
"email": "jane.doe@example.com"
|
|
},
|
|
"tags": [
|
|
"fiction",
|
|
"adventure"
|
|
],
|
|
"chapters": [
|
|
{
|
|
"name": "Chapter 1",
|
|
"pages": 20
|
|
},
|
|
{
|
|
"name": "Chapter 2",
|
|
"pages": 30
|
|
}
|
|
],
|
|
"headline": "The Great Book",
|
|
"articleBody": "This is the content of the great book."
|
|
} |