Home Schema Example
SEO Help and TipsHere's an example of an Essential home schema markup for the home page of a website:
Home Schema Example
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "Your Website Name",
"url": "https://www.yourwebsite.com",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.yourwebsite.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
In this example:
}
}
In this example:
"@type": "WebSite" indicates that the schema markup is for a website.
"name" represents the name or title of the website.
"url" specifies the URL of the website.
"potentialAction" indicates an action that can be performed on the website, in this case,
a search action.
"@type": "SearchAction" specifies that the action is a search action.
"target" represents the URL pattern for the search action, where {search_term_string} is
a placeholder for the actual search query.
"query-input" indicates that the search_term_string parameter is required for the search
action.
Please note that this is a basic example, and you can include additional properties based
on the specific details and features of your website.
Comments
Post a Comment
Thanks for your Comments.