Image | ![]() |
EAN-13 | 9780316322256 ![]() |
Product Name | Balancing Act: The Authorized Biography Of Angela Lansbury |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Little Brown, USA |
Amazon.com | ![]() |
Price New | 18.10 US Dollars (curriencies) |
Price Used | 0.49 US Dollars (curriencies) |
Width | 1.25 inches (convert) |
Height | 9.5 inches (convert) |
Length | 6.5 inches (convert) |
Weight | 23.36 ounces (convert) |
Author | Martin Gottfried |
Page Count | 352 |
Binding | Hardcover |
Published | 01/05/1999 |
Features | Great product! |
Long Description | Fully authorized, this biography of Angela Lansbury, one of the most beloved stars of stage, screen, and television, completely covers her life and fabulous career. |
Similar Items | 9786301130370: Angela Lansbury's Positive Moves: A Personal Plan for Fitness and Well-Being at any Age 9780988657137: Me And Murder, She Wrote 9780385294027: Jane Wyman: A Biography 0025192208669: Murder, She Wrote The Complete Series 0883316380352: Gaslight 0025192088155: Murder, She Wrote 4 Movie Collection 9780385302234: Angela Lansbury's Positive Moves: My Personal Plan For Fitness And Well-Being 9781559723275: Angela Lansbury: A Life On Stage And Screen 9780312005610: Angela Lansbury: A Biography 9780440504443: Angela Lansbury's Positive Moves View 6 more similar items |
Created | 03-19-2012 1:05:00am |
Modified | 10-08-2017 12:33:35pm |
MD5 | 4448c42246077426e213f034a451e52e |
SHA256 | 51bb9958b94c0f96e6f77d3324d35b50fc414a4d67ff3ab24248fb8847e10405 |
Search Google | by EAN or by Title |
Query Time | 0.0337350 |
Article of interest
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:
- extra_group - The text name representing the type of information the extra value represents. The extra elements are associated with this group.
- field_name - The field that this extra information is attached to. Multiple fields can be attached to the same extra_group.
- id - This is the unique id that identifies the specific extra element. It is unique across all extra groups.
- extra_short - The short text used to enhance the main data item.
- extra_long - The long text used to enhance the main data item.
- seq - The sequence that we use to display this element in a list. When two sequence numbers are the same we sort by the extra_long value.
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:
- 12 pounds
- 15.25 US Dollars
- 354 grams
- 12.4 ounces
- 12 lbs
- 15.25 USD
- 354 g
- 12.4 oz
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.