Image | ![]() |
EAN-13 | 9780780624894 ![]() |
Product Name | Blade |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | Height:8 inches / Length:6 inches / Weight:0.25 pounds / Width:4 inches |
Amazon.com | ![]() |
SKU | 72299 |
Model | 2261603 |
Price New | 2.90 US Dollars (curriencies) |
Price Used | 0.01 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 120 minutes |
Aspect Ratio | 2.35:1 |
Cast | Arly Jover, Kris Kristofferson, Stephen Dorff, Udo Kier, Wesley Snipes |
Director | Stephen Norrington |
Genre | Action/Adventure |
Run Time | 120 minutes |
Width | 5.38 inches (convert) |
Height | 0.5 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 25 hundredths pounds (convert) |
Binding | Dvd |
Release Year | 1998 |
Format | Multiple Formats, AC-3, Anamorphic, Closed-captioned, Color, Dolby, NTSC, Special Edition, Subtitled, Widescreen |
Published | 11/11/2008 |
Run Time | 120 minutes |
Features | Shrink-wrapped |
Long Description | In a world where vampires walk the earth, Blade has a goal. His goal is to rid the world of all vampire evil. When Blade witnesses a vampire bite Dr. Karen Jenson, he fights away the beast and takes Jenson back to his hideout. Here, alongside Abraham Whistler, Blade attempts to help heal Jenson. The vampire Quinn who was attacked by Blade, reports back to his master Deacon Frost, who is planning a huge surprise for the human population. |
Similar Items | 5017239190988: Blade II [Region 2] 5017239192869: Blade Trinity 0794043109843: Blade - House of Chthon 0024543900955: X-Men 0024543006428: X-Men 0794043781926: Blade Trinity 0794043555428: Blade Ii 9780790742618: The Matrix 7321921177378: The Matrix 9398710206395: Matrix, The View 15 more similar items |
Created | 09-25-2012 6:06:08am |
Modified | 04-27-2018 4:07:00am |
MD5 | e9be621c5675e5cfe1aca7e999b06db2 |
SHA256 | 0a591f1d538d978d8a6d66d575bf8d4257a4e66db0ccf5306e70d4cbd0c76c41 |
Search Google | by EAN or by Title |
Query Time | 0.0194399 |
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.