Schema.org Structured Data
Purpose: Rich snippets, AI understanding, and search visibility
Implementation: Add to theme
Implementation: Add to theme
<head> sectionOrganization Schema
Copy
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Anitone",
"legalName": "Profauna Pty Limited",
"url": "https://shop.anitone.com.au",
"logo": "https://anitone.com.au/wp-content/uploads/2022/04/cropped-Anitone-Master-Logo_Raster-Logos_Icon-270x270.png",
"description": "Anitone is a bio-fermented liquid mineral supplement for all animals, trusted by Australian farmers since 2002. Now manufactured by Profauna Pty Limited in New South Wales, Australia.",
"foundingDate": "2002",
"address": {
"@type": "PostalAddress",
"addressRegion": "New South Wales",
"addressCountry": "AU"
},
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+61-493-561-823",
"email": "[email protected]",
"contactType": "sales",
"areaServed": "AU",
"availableLanguage": "English"
},
"sameAs": [
"https://anitone.com.au"
],
"knowsAbout": [
"Animal Nutrition",
"Mineral Supplements",
"Bio-Fermentation",
"Veterinary Nutrition",
"Livestock Health",
"Equine Nutrition",
"Pet Supplements"
],
"makesOffer": {
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Anitone Bio-Fermented Mineral Supplement"
}
},
"areaServed": {
"@type": "Country",
"name": "Australia"
},
"slogan": "60+ minerals for all animals"
}
Product Schema
Copy
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Anitone Bio-Fermented Mineral Supplement",
"description": "Anitone is a natural liquid mineral and trace element supplement for all animals. Bio-fermented with 60+ minerals. Trusted by Australian farmers for 20+ years.",
"brand": {
"@type": "Brand",
"name": "Anitone"
},
"manufacturer": {
"@type": "Organization",
"name": "Profauna Pty Limited",
"address": {
"@type": "PostalAddress",
"addressRegion": "New South Wales",
"addressCountry": "AU"
}
},
"category": "Animal Supplements",
"audience": {
"@type": "Audience",
"audienceType": "Pet Owners, Farmers, Horse Owners, Livestock Producers"
},
"offers": [
{
"@type": "Offer",
"name": "250ml",
"sku": "ANITONE-250",
"price": "19.70",
"priceCurrency": "AUD",
"availability": "https://schema.org/InStock",
"url": "https://shop.anitone.com.au/products/anitone-bio-fermented-mineral-supplement?variant=45182158798985",
"seller": {
"@type": "Organization",
"name": "Anitone"
}
},
{
"@type": "Offer",
"name": "1 Litre",
"sku": "ANITONE-1L",
"price": "28.45",
"priceCurrency": "AUD",
"availability": "https://schema.org/InStock",
"url": "https://shop.anitone.com.au/products/anitone-bio-fermented-mineral-supplement?variant=45182158962825",
"seller": {
"@type": "Organization",
"name": "Anitone"
}
},
{
"@type": "Offer",
"name": "5 Litre",
"sku": "ANITONE-5L",
"price": "89.00",
"priceCurrency": "AUD",
"availability": "https://schema.org/InStock",
"url": "https://shop.anitone.com.au/products/anitone-bio-fermented-mineral-supplement?variant=45182158995593",
"seller": {
"@type": "Organization",
"name": "Anitone"
}
},
{
"@type": "Offer",
"name": "20 Litre",
"sku": "ANITONE-20L",
"price": "246.00",
"priceCurrency": "AUD",
"availability": "https://schema.org/InStock",
"url": "https://shop.anitone.com.au/products/anitone-bio-fermented-mineral-supplement?variant=45182159028361",
"seller": {
"@type": "Organization",
"name": "Anitone"
}
}
],
"potentialAction": {
"@type": "BuyAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://shop.anitone.com.au/cart/add?id={variant_id}&quantity=1",
"actionPlatform": [
"https://schema.org/DesktopWebPlatform",
"https://schema.org/MobileWebPlatform"
]
}
},
"additionalProperty": [
{
"@type": "PropertyValue",
"name": "Mineral Count",
"value": "60+"
},
{
"@type": "PropertyValue",
"name": "Form",
"value": "Liquid"
},
{
"@type": "PropertyValue",
"name": "Process",
"value": "Bio-Fermented"
},
{
"@type": "PropertyValue",
"name": "Suitable For",
"value": "Horses, Cattle, Sheep, Goats, Dogs, Cats, Poultry, Pigs, Alpacas, Camels"
}
]
}
Implementation
In theme.liquid
Copy
<head>
<!-- Organization Schema (all pages) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Anitone",
... (organization schema content)
}
</script>
<!-- Product Schema (product pages only) -->
{% if template contains 'product' %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
... (product schema content)
}
</script>
{% endif %}
</head>
Schema Features
Organization Schema
| Property | Purpose |
|---|---|
foundingDate | Establishes 20+ year heritage |
foundingDate | 20+ years heritage |
knowsAbout | Topic expertise signals |
contactPoint | Customer service info |
slogan | Brand messaging |
Product Schema
| Property | Purpose |
|---|---|
offers | All variants with pricing |
potentialAction | BuyAction for direct purchase |
additionalProperty | Key product attributes |
audience | Target customer segments |
