Family Magazine

AboutPage Schema Example [2023]

By Geoff Griffiths @mmatraining1980

Great for your About Pages

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "AboutPage",
"name": "Business Dad",
"url": "https://businessdaduk.com/",
"description": "a blog for the people by the people",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://businessdaduk.com/"
},
"sameAs": [
"https://twitter.com/baddadbusiness",

],
"potentialAction": {
"@type": "SearchAction",
"target": "https://businessdaduk.com/search?query={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>

You can also add:
– An about page image URL
– Read action – instead of search
– Publisher

<script type="application/ld+json">

{
"@context": "http://schema.org",
"@type": "AboutPage",
"name": "Business Dad",
"url": "https://businessdaduk.com/",
"description": "a blog for the people by the people",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://businessdaduk.com/",
"image": "https://businessdaduk.com/images/about-page-image.jpg"
},
"sameAs": [
"https://twitter.com/baddadbusiness"
],
"potentialAction": {
"@type": "ReadAction",
"target": "https://businessdaduk.com/about-us"
},
"publisher": {
"@type": "Organization",
"name": "Business Dad",
"logo": {
"@type": "ImageObject",
"url": "https://businessdaduk.com/logo.jpg"
}

}
},

</script>

Back to Featured Articles on Logo Paperblog