About Us Essential Schema Example
SEO Help and Tips
About Us Essential Schema Example
Here's an example of a schema markup for the "About Us" page of a website:
{
"@context": "http://schema.org",
"@type": "AboutPage",
"name": "About Us",
"url": "https://www.yourwebsite.com/about-us",
"description": "A brief description of your website and its purpose.",
"mainEntity": {
"@type": "Organization",
"name": "Your Organization Name",
"url": "https://www.yourwebsite.com",
"logo": "https://www.yourwebsite.com/images/logo.png",
"sameAs": [
"https://www.facebook.com/yourorganization",
"https://www.twitter.com/yourorganization",
"https://www.instagram.com/yourorganization"
]
}
}
In this example:
"@type": "AboutPage" indicates that the schema markup is for an "About Us" page.
"name" represents the title or name of the "About Us" page.
"url" specifies the URL of the "About Us" page.
"description" provides a brief description of your website and its purpose.
"mainEntity" represents the main entity on the "About Us" page, which in this case is an organization.
"@type": "Organization" specifies that the main entity is an organization.
"name" represents the name of your organization.
"url" specifies the URL of your organization's website.
"logo" represents the URL of your organization's logo.
"sameAs" includes social media URLs or other web profiles associated with your organization.
Please note that this is a basic example, and you can include additional properties and details based on the specific information and structure of your "About Us" page.
Comments
Post a Comment
Thanks for your Comments.