Table of Contents
Implementing schema markup for mobile and landline phone numbers is crucial for enhancing local SEO and improving search engine visibility. Proper schema markup helps search engines understand your contact information, making it easier for potential customers to find and connect with your business.
Understanding Schema Markup for Phone Numbers
Schema markup is a type of structured data that provides additional context about your content to search engines. When applied to phone numbers, it specifies whether the number is for a mobile device or a landline, which can influence how your contact information appears in search results.
Key Tips for Implementing Mobile and Landline Schema
- Use the Correct Schema Type: Utilize
ContactPointschema to mark up phone numbers. Specify the telephone property and include the contactType as Customer support or relevant category. - Differentiate Mobile and Landline: Use the mobile property set to true for mobile numbers. Landline numbers should have mobile set to false or omitted.
- Include Country and Area Codes: Always add complete international dialing codes to ensure accurate display and usability.
- Implement JSON-LD Format: Embed schema markup using JSON-LD within
<script type="application/ld+json">tags in the website’s header or footer. - Validate Your Markup: Use tools like Google’s Rich Results Test or Schema Markup Validator to verify correct implementation.
Sample Schema Markup for Mobile and Landline
Here is an example of JSON-LD schema markup differentiating between a mobile and a landline number:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Business",
"telephone": "+1-555-123-4567",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-555-123-4567",
"contactType": "Customer Support",
"areaServed": "US",
"mobile": false
}
}
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Mobile Business",
"telephone": "+1-555-765-4321",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-555-765-4321",
"contactType": "Customer Support",
"areaServed": "US",
"mobile": true
}
}
Best Practices for Maintaining Schema Accuracy
Regularly update your schema markup to reflect any changes in your contact information. Ensure that mobile and landline numbers are correctly labeled to prevent confusion. Validate your markup periodically to maintain optimal search visibility.