3 prices for the same product in json-ld

I am trying to put together a json-ld rich snippet, and cant work out how I am going to have 3 offers with 3 different prices but with the name that goes with the price.

Basically I have one product with 3 different price ranges, so lets say gold, silver bronze and price wise 59.99, 49,99 and 39.99

But when I look at using offers as below, there is no way I can add the name to distinguish the three.

"offers": 
[
    {
    "@type": "Offer"
    "price": "59.99",
    "priceCurrency": "GBP",
    },
    {
    "@type": "Offer"
    "price": "49.99",
    "priceCurrency": "GBP",
    }
    {
    "@type": "Offer"
    "price": "39.99",
    "priceCurrency": "GBP",
    }
]

So what I’m asking is can I for example put name: above price and then “Gold”, so I get as an example below.

{
"@type": "Offer"
"name": "Gold",
"price": "39.99",
"priceCurrency": "GBP",
}

This is it in its entirity at the moment

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "CristalCheck",
      "description": "CristalCheck provides users with a simple, hand-held, data collection tool for all areas of quality and risk management. Protect your business by improving your decision making in key areas of operation. Whether you need to know if your food hygiene system is operating effectively, or whether your guests experience is satisfactory. If you manage a hotel, guesthouse, or even a restaurant, check out CristalCheck today. It is a free download from the AppStore.",
"owns": "Check Ltd",
"url": "http://www.crist.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "The Win",
"addressLocality": "The ",
"addressRegion": "Chep",
"postalCode": "NP1",
"addressCountry": "GB",
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer support",
"telephone": "+44 1291 62",
"fax": "+44 1291 6",
"email": "info@crist.com",
},
      "@type": "Product",
"productSupported": "iPhone",
"sameAs": [
"http://www.facebook.com/your-profile",
"http://www.twitter.com/your-profile",
"http://www.youtube.com/your-profile",
"http://www.google+.com/your-profile",
"http://www.linkedin.com/your-profile",
"http://www.instagram.com/your-profile"
]
"image": "http://www.ceck.com/cristalcheck-og-meta.jpg",
"logo": "http://www.criseck.com/cristal_logo_colour.png",
"brand": {
 "@type": "Brand",
 "name": "Cristdards Ltd",
	}
"audience: "hotels, restaurants, landlords, guesthouses",
"aggregateRating: {
 "@type": "AggregateRating",
 "ratingValue": "",
 "reviewCount": "",
}
"offers": {
 	"@type": "Offer",
 	"price": "59.99",
 	"priceCurrency": "GBP",
 },
}
</script>

I just tested it also and I think I have tried to bundle to many things into one slab if you like, I’m guessing I need to break the elements up into their @types, is that right and am I on the right track below

<script type="application/ld+json">
[
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "CristalCheck",
"url": "http://www.cristalcheck.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "The Wine Warehouse",
"addressLocality": "The Back",
"addressRegion": "Chepstow",
"postalCode": "NP16 5HH",
"addressCountry": "GB"
            },
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer support",
"telephone": "+44 1291 629863",
"fax": "+44 1291 629627",
"email": "info@cristalcheck.com"
            },
      "sameAs": [
"http://www.facebook.com/your-profile",
"http://www.twitter.com/your-profile",
"http://www.youtube.com/your-profile",
"http://www.google+.com/your-profile",
"http://www.linkedin.com/your-profile",
"http://www.instagram.com/your-profile"
]




      	    "description": "CristalCheck provides users with a simple, hand-held, data collection tool for all areas of quality and risk management. Protect your business by improving your decision making in key areas of operation. Whether you need to know if your food hygiene system is operating effectively, or whether your guests experience is satisfactory. If you manage a hotel, guesthouse, or even a restaurant, check out CristalCheck today. It is a free download from the AppStore.",

"owns": "CheckSafetyFirst Ltd",


      "@type": "Product",
"productSupported": "iPhone",
"image": "http://www.cristalcheck.com/cristalcheck-og-meta.jpg",
"logo": "http://www.cristalcheck.com/cristal_logo_colour.png",
"brand": {
 "@type": "Brand",
 "name": "Cristal International Standards Ltd",
	}
"audience: "hotels, restaurants, landlords, guesthouses",
"aggregateRating: {
 "@type": "AggregateRating",
 "ratingValue": "",
 "reviewCount": "",
}
"offers": {
 	"@type": "Offer",
 	"price": "59.99",
 	"priceCurrency": "GBP",
 },
}
</script>

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.