Schema Markup (or “Structured Data”) is a standardized code vocabulary that helps search engines strictly understand your content.
Without Schema, Google has to “guess” that a string of numbers is a phone number. With Schema, you explicitly tell Google: “This specific string is our Customer Service number.” This clarity helps you qualify for Rich Snippets and enhances your Knowledge Panel.
1. Choose the JSON-LD Format
There are different ways to write schema (Microdata, RDFa), but Google explicitly prefers JSON-LD (JavaScript Object Notation for Linked Data).
- Why? It is a single block of code you can paste into your site header, rather than messy code you have to wrap around every individual HTML element.
2. Generate Your Code
Do not try to write this code from scratch; it is easy to make syntax errors. Use a trusted generator tool.
- Recommended Tool: The Merkle Schema Markup Generator or TechnicalSEO.com.
- Action: Select “Local Business” from the dropdown menu and fill in your details (Name, Image URL, Address, Opening Hours, Coordinates).
3. The Code Structure (Example)
Here is what the code looks like. You can customise this template if you are comfortable editing code.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Advertising",
"name": "UTDS Optimal Choice",
"image": "https://utds.al/logo.png",
"@id": "",
"url": "https://utds.al",
"telephone": "+355 69 291 3855",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 High Street",
"addressLocality": "London",
"postalCode": "SW1A 1AA",
"addressCountry": "GB"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 51.5074,
"longitude": -0.1278
},
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "09:00",
"closes": "17:00"
}
}
</script>
4. Install the Code
Once you have your code snippet:
- WordPress Users: The easiest method is to use a plugin like WPCode (formerly Insert Headers and Footers).
- Install the plugin.
- Go to “Code Snippets” > “Header & Footer”.
- Paste your JSON-LD script into the Header section.
- Save.
- Custom Sites: Send the code to your developer and ask them to place it inside the <head> tags of your Homepage HTML.
5. Validate Your Work (Critical)
One missing comma will break the entire code block. You must test it.
- Tool: Go to the official Google Rich Results Test.
- Action: Enter your homepage URL (or paste the code snippet directly).
- Success: Look for a green checkmark saying “Local Business detected.”
Â
Clarification vs. Ranking
It is important to understand that Schema is not a “magic switch” for higher rankings, but it is a “clarity switch.”
Schema helps Google be confident about your location and hours. When Google is confident, it is more likely to show your business in the Local Pack for relevant queries.

Salesforce

