Image | ![]() |
EAN-13 | 0041009608132 ![]() |
UPC-A | 041009608132 ![]() |
Product Name | M.A.S.K. - Animated Volume 1 |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | Vhs Cassette |
Amazon.com | ![]() |
IMDb | ![]() |
Run Time | 22 minutes |
Cast | Doug Stone, Mark Halloran, Brendan McKane, Graeme McKenna |
Director | N/A |
Genre | Anime & Manga |
Binding | Dvd |
Release Year | 1985 |
Format | Animated |
Long Description | After the death of his teenage brother Andy, multi-millionaire Matt Trakker uncovers an international criminal organization known as V.E.N.O.M. (Vicious Evil Network Of Mayhem) Trakker gathers a group of friends who, like himself, possess extraordinary talents and creates M.A.S.K. (Mobile Armoured Strike Kommand) Their objective; to destroy V.E.N.O.M. and its mastermind - Miles Mayhem, the man responsible for Andy's death. |
Similar Items | 9781419811258: Thundercats - Season One, Volume One 0888574318017: Centurions Part One 0883476032757: Voltron: The Legend Begins 0883316276358: Thundarr The Barbarian 0826663150537: Transformers More Than Meets The Eye! Season 1 0826663114386: G.I. Joe A Real American Hero Season 1.1 0683904545596: Jayce and the Wheeled Warriors 0683904545558: C.O.P.S. 0085391171843: SilverHawks The Complete First Season Volume One 0082666311881: G.I. Joe A Real American Hero: The Movie |
Created | 07-01-2006 |
Modified | 07-28-2018 10:50:44am |
MD5 | e59d73c1306cf6491218e2646b1f1a08 |
SHA256 | c82bb5c3406187a415ff2d6c9b03ebbc4cf1dc3afff76ad96134e177cec2d41e |
Search Google | by EAN or by Title |
Query Time | 0.0274909 |
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.