Comprehensive implementation guide for structured data optimization
JSON-LD (JSON for Linking Data) is a structured data format that helps search engines understand your content better. It improves SEO, enables rich snippets, and enhances visibility in search results.
Describes your business and its key information.
Add to your homepage to establish business identity
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Aragon Metal Traders",
"url": "https://www.aragonmetaltraders.com",
"logo": "https://www.aragonmetaltraders.com/images/logo.png",
"description": "Premium metal trading platform",
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Customer Support",
"telephone": "+1-800-METALS-1",
"email": "support@aragonmetaltraders.com"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Metal Trading Way",
"addressLocality": "New York",
"addressRegion": "NY",
"postalCode": "10001",
"addressCountry": "US"
},
"sameAs": [
"https://www.facebook.com/aragonmetaltraders",
"https://www.linkedin.com/company/aragon-metal-traders"
]
}
Displays product information in search results with pricing and ratings.
Add to each product page for rich product snippets
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Premium Gold Ingots 99.9% Pure",
"image": "https://www.aragonmetaltraders.com/images/gold-ingots.jpg",
"description": "Premium grade gold ingots for investment",
"sku": "GOLD-INGOT-001",
"brand": {
"@type": "Brand",
"name": "Aragon Metal Traders"
},
"offers": {
"@type": "AggregateOffer",
"lowPrice": "1950",
"highPrice": "2450",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.9",
"reviewCount": "156"
}
}
Marks up blog articles for better search visibility and featured snippets.
Add to blog posts for featured snippet eligibility
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "Metal Market Trends 2026",
"image": "https://www.aragonmetaltraders.com/images/blog/trends.jpg",
"datePublished": "2026-07-07T10:30:00Z",
"dateModified": "2026-07-07T10:30:00Z",
"author": {
"@type": "Person",
"name": "Trading Team"
},
"publisher": {
"@type": "Organization",
"name": "Aragon Metal Traders",
"logo": {
"@type": "ImageObject",
"url": "https://www.aragonmetaltraders.com/images/logo.png"
}
},
"description": "Key metal market trends shaping 2026",
"articleBody": "The metal markets are experiencing..."
}
Provides local business information for local search optimization.
Add for local search visibility and Google Maps
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Aragon Metal Traders",
"url": "https://www.aragonmetaltraders.com",
"telephone": "+1-800-METALS-1",
"email": "info@aragonmetaltraders.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Metal Trading Way",
"addressLocality": "New York",
"addressRegion": "NY",
"postalCode": "10001",
"addressCountry": "US"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"opens": "09:00",
"closes": "18:00"
}
],
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"reviewCount": "847"
}
}
Enables FAQ rich snippets in search results.
Add for FAQ snippets in search results
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Is Aragon Metal Traders legitimate?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, Aragon Metal Traders is a fully licensed precious metals dealer with 10+ years of experience."
}
},
{
"@type": "Question",
"name": "What metals do you offer?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We offer precious metals (gold, silver, platinum) and industrial metals (copper, aluminum, steel)."
}
}
]
}
Enables breadcrumb navigation in search results.
Add to every page for navigation breadcrumbs
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://www.aragonmetaltraders.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Products",
"item": "https://www.aragonmetaltraders.com/products"
},
{
"@type": "ListItem",
"position": 3,
"name": "Gold Ingots",
"item": "https://www.aragonmetaltraders.com/products/gold-ingots"
}
]
}
| Schema Type | Use Case | Priority | Rich Snippet Type |
|---|---|---|---|
Organization |
Business identity & info | High | Knowledge Panel |
Product |
Product pages | High | Product Snippet |
BlogPosting |
Blog articles | High | Featured Snippet |
LocalBusiness |
Physical location | Medium | Local Pack |
FAQPage |
FAQ sections | High | FAQ Snippet |
BreadcrumbList |
Site navigation | Medium | Breadcrumb |
Review |
Customer reviews | High | Rating & Review |
Use these tools to validate and test your schema markup:
| Tool | URL | Purpose |
|---|---|---|
| Google Rich Results Test | https://search.google.com/test/rich-results | Test rich snippet eligibility |
| Google Structured Data Tool | https://developers.google.com/structured-data | Validate JSON-LD markup |
| Schema.org Validator | https://validator.schema.org/ | Check schema validity |
| Bing Markup Validator | https://www.bing.com/webmaster/markup | Validate for Bing |
schema-markup.json file with complete schema examples