Skip to main content

Schema.org Structured Data

Purpose: Rich snippets, AI understanding, and search visibility
Implementation: Add to theme <head> section

Organization Schema

{
  "@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

{
  "@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

<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

PropertyPurpose
foundingDateEstablishes 20+ year heritage
foundingDate20+ years heritage
knowsAboutTopic expertise signals
contactPointCustomer service info
sloganBrand messaging

Product Schema

PropertyPurpose
offersAll variants with pricing
potentialActionBuyAction for direct purchase
additionalPropertyKey product attributes
audienceTarget customer segments

Validation

Test your schema at: