Created
January 5, 2018 07:02
-
-
Save AnjaneyuluBatta505/8530a315fb9611618d4ac8aa0739e78a to your computer and use it in GitHub Desktop.
schema for blogpost in json ld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "BlogPosting", | |
"mainEntityOfPage":{ | |
"@type":"WebPage", | |
"@id":"http://applefostering.co.uk/skills-foster/" | |
}, | |
"headline": "The Skills to Foster", | |
"image": { | |
"@type": "ImageObject", | |
"url": "http://applefostering.co.uk/wp-content/uploads/family.jpg", | |
"height": 463, | |
"width": 700 | |
}, | |
"datePublished": "2016-02-12", | |
"dateModified": "2016-02-12", | |
"author": { | |
"@type": "Person", | |
"name": "Person’s Name" | |
}, | |
"publisher": { | |
"@type": "Organization", | |
"name": "Apple Fostering", | |
"logo": { | |
"@type": "ImageObject", | |
"url": "http://applefostering.co.uk/apple-logo-schema/", | |
"width": 550, | |
"height": 60 | |
} | |
}, | |
"description": "A brief description of your article", | |
"articleBody": "You can put your entire article in here: it can be as long as you want." | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment