/* { "@type": "Service", "@id": "http://www.provider.com/service/1", // [START OpeningHoursSpecification] "hoursAvailable": { "@type": "OpeningHoursSpecification", "validFrom": "2016-02-01T00:00:00-07:00", "validThrough": "2016-03-01T00:00:00-07:00", "opens": "T08:00:00", // Ordering begins at 8:00AM and ends at 6:00PM. // ASAP and and advance orders are restricted to this // time frame since the user won't be able to place // orders outside of this window. "closes": "T18:00:00", // [START ServiceDeliveryHoursSpecification] "deliveryHours": { "@type": "ServiceDeliveryHoursSpecification", // [START QuantitativeValue] "deliveryLeadTime": { "@type": "QuantitativeValue", "value": "60", "unitCode": "MIN" } // [END QuantitativeValue] } // [END ServiceDeliveryHoursSpecification] }, // [END OpeningHoursSpecification] "hasOfferCatalog": { "@type": ["Menu", "OfferCatalog"], "@id": "https://www.provider.com/menu/1" }, "serviceType": "DELIVERY", "provider": { "@type": "Restaurant", "@id": "http://www.provider.com/foo" }, "areaServed": [ { "@type": "Place", "address": { "@type": "PostalAddress", "postalCode": "94041", "addressCountry": "US" } } ], // [START delivery_charge_specification] "offers": { "@type":"Offer", "priceSpecification":[ { "@type": "DeliveryChargeSpecification", "price": "5.0", "priceCurrency": "USD" } ] } // [END delivery_charge_specification] } */