Disable All Advertising
Image
EAN-139780375839016   EAN-13 barcode 9780375839016
Product NameAnatole
CategoryBook / Magazine / Publication
Short DescriptionHeight:10.04 inches / Length:0.31 inches / Weight:0.59 pounds / Width:7.17 inches
Amazon.comA Buy on Amazon ~ 0375839011
SKUU9780375839016
Price New6.99 US Dollars    (curriencies)
Price Used1.31 US Dollars    (curriencies)
Width0.35 inches    (convert)
Height10.13 inches    (convert)
Length7.31 inches    (convert)
Weight9.44 ounces    (convert)
AuthorEve Titus
Page Count40
BindingHardcover
Published11/14/2006
Long DescriptionAnatole is a most honorable mouse. When he realizes that humans are upset by mice sampling their leftovers, he is shocked! He must provide for his beloved family--but he is determined to find a way to earn his supper. And so he heads for the tasting room at the Duvall Cheese Factory. On each cheese, he leaves a small note--"good," "not so good," "needs orange peel"--and signs his name. When workers at the Duvall factory find his notes in the morning, they are perplexed--but they realize that this mysterious Anatole has an exceptional palate and take his advice. Soon Duvall is making the best cheese in all of Paris! They would like to give Anatole a reward--if only they could find him...
Similar Items9780811823838: Charlotte In Paris
9780689827044: Eloise in Paris
9780375839023: Anatole And The Cat
9780517417522: Anatole And The Toyshop
9780070648852: Anatole And The Toyshop
9780394808659: Petunia
9780375855474: Anatole And The Cat
9780070200449: The Happy Lion
9780152998653: Petunia
9780375852114: Veronica On Petunia's Farm
View 26 more similar items
Created02-26-2012 6:38:13pm
Modified04-30-2020 7:05:41pm
MD5557ac658f31855d3e5ca487571b48423
SHA256467c3a6f7479c05e5162bb805baac58a3464cceb929753760d0e0b043d838702
Search Googleby EAN or by Title
Query Time0.0286210

An article of interest

Making use of the tools we offer

Data Feed API - Extra

The extra items are numerically indexed and provide extra text to go along with numeric values such as weights or distances or even currencies. The attributes that use these extra indexes are all numeric and take two fields. You can send the data in a single field as long as you use the same short or long text that we keep in our database.

Although the data feed API can deliver information as JSON or XML, we are using XML here because it is easier to read.

<attribute>
   <extra_group>Distance</extra_group>
   <field_name>depth</field_name>
   <extra>
      <id>501</id>
      <extra_short>in</extra_short>
      <extra_long>inches</extra_long>
      <seq>10</seq>
   </extra>
   <extra>
      <id>503</id>
      <extra_short>ft</extra_short>
      <extra_long>feet</extra_long>
      <seq>20</seq>
   </extra>
   <extra>
      <id>505</id>
      <extra_short>yrd</extra_short>
      <extra_long>yards</extra_long>
      <seq>30</seq>
   </extra>
</attribute>

Looking at this example, you can see that the EXTRA portion is an array of values each with their own properties. Here is what each section means:

This extra information is normally used in a drop down box next to the numeric data field that we want to enhance. Some examples might be:

You see we can display the long or short version of the extra code by using the ID index.

Fields that make use of this extra information require it when pushing data back to us in the feed. You can either send the data in two fields (value and extra_id) or in a single field (value) as long as the text following the numeric portion matches the long or short version of the extra data we store for the field.

For example, if you wanted to update a field that represented distance with the value "100 yards", you could either send that data just like that in the value field value=100+yards or in two seperate fields value=100&extra_id=505 and you would get the same results. If you send an invalid extra_id or text after the number that doesn't match our accepted list, your update would be rejected.