schema.org - hat is the proper structure for Parcel Delivery schema if your delivery contains multiple tracking numbers? -


it possible our orders contain multiple sku's multiple tracking numbers per sku on order.

i have been referencing https://developers.google.com/gmail/markup/reference/parcel-delivery. using json-ld format.

{      "@context":"http://schema.org",   "@type":"parceldelivery",   "deliveryaddress":{        "@type":"postaladdress",      "name":"john frank",      "streetaddress":"24 willie mays plaza",      "addresslocality":"san francisco",      "addressregion":"ca",      "addresscountry":"us",      "postalcode":"94107"   },   "originaddress":{        "@type":"postaladdress",      "name":"john frank",      "streetaddress":"25 willie mays plaza",      "addresslocality":"san francisco",      "addressregion":"ca",      "addresscountry":"us",      "postalcode":"94107"   },   "expectedarrivalfrom":"2013-03-10t12:00:00-08:00",   "expectedarrivaluntil":"2013-03-12t12:00:00-08:00",   "carrier":{        "@type":"organization",      "name":"fedex",      "url":"http://fedex.com/"   },   "itemshipped":{        "@type":"product",      "name":"ipod mini",      "url":"http://apple.com/ipad32gb",      "image":"http://apple.com/images/ipad32gb.jpg",      "sku":"b00dr0pdne",      "description":"ipod mini 32gb white",      "brand":{           "@type":"brand",         "name":"apple"      },      "color":"white"   },   "trackingnumber":"3453291231",   "trackingurl":"http://fedex.com/track/3453291231",   "potentialaction":{        "@type":"trackaction",      "target":"http://fedex.com/track/3453291231"   },   "hasdeliverymethod":"http://schema.org/parcelservice",   "partoforder":{        "@type":"order",      "ordernumber":"176057",      "merchant":{           "@type":"organization",         "name":"bob dole",         "sameas":"http://www.freebase.com/m/0fhkx"      },      "orderstatus":"http://schema.org/orderintransit"   } 

}

i checked previous questions on , can not seem find answer on google or in official documentation or schema.org. advice appreciated. cheers.

please correct me if wrong after research quite need replicate same json snippet each parcel in order. how work if not using json-ld makes sense work same way. cheers.


Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -