I would like to use the post content in JSON-LD in my Blogger template.
I have the following JSON-LD code so far, which is errorfree, at least when I use the tool https://search.google.com/structured-data/testing-tool:
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"author": {
"@type": "Person",
"name": "Billy Bathgate"
},
"image": {
"@type": "ImageObject",
"thumbnail": "thumbnail",
"height": "100px",
"url": "<data:post.thumbnailUrl/>",
"width": "100px"
},
"publisher": {
"@type": "Organization",
"name": "My Blogspot Blog",
"logo": {
"@type": "ImageObject",
"url": "https://4.bp.blogspot.com/-G8FrqwN9Wl4/WD2Xz7xBKII/AAAAAAAAAD0/mjrZlZrDy1daudafdegai3LKxxVfaACPcB/s320/dfare-adfte-SaP-de-90dpi.png",
"width": 320,
"height": 53
}
},
"keywords": "<data:post.labels/>",
"headline": "<data:view.title/>",
"dateModified": "<data:post.lastUpdatedISO8601/>",
"datePublished": "<data:post.timestampISO8601/>",
"description": "<data:post.longSnippet/>",
"mainEntityOfPage": "<data:blog.homepageUrl/>"
}
So, how would I add the post content to JSON-LD? I've looked at http://jsonld.com/blog-post/, but
"articleBody":"<data:post.body/>"
will not be accepted.