Image | ![]() |
EAN-13 | 0799932981753 ![]() |
UPC-A | 799932981753 ![]() |
Product Name | Walk On 5 Mix and Match Miles with Jessica Smith, Walk at Home, Beginner, Intermediate Level Low Impact Workout |
Category | Sports / Exercise |
Amazon.com | ![]() |
Price New | 14.98 US Dollars (curriencies) |
Price Used | 14.98 US Dollars (curriencies) |
Cast | Jessica Smith |
Genre | exercise_&_fitness |
Binding | Dvd |
Features | Create your own personal walking plan with our customizable menu or use our 2,3 or 4-mile premixes, With over 90 minutes of walking time, this program features five 1-mile walks, plus separate warm up and cool down segments, Low and High Impact Options Shown Throughout, No Floor Work, No Equipment Needed, Minimal Space Required |
Long Description | Create your own personal walking plan with our customizable menu or use our 2, 3 or 4-mile premixes! With over 90 minutes of walking time, this program features five 1-mile walks, plus separate warm up and cool down segments No Floor Work, No Equipment Needed, Minimal Space Required Low and High Impact Options Shown Throughout WALK YOUR WAY, EVERY DAY! Fit in a quick walk or go for all 10,00 steps at a time - you decide! Create your own walking plan with our customizable menu or use our 2, 3 or 4 mile premix options to make it easy to add up your weekly miles. Choose from the following segments to create your own custom walk using our mix and match menu: Warm Up Mile #1: Energy Boost MIile #2: Pumped Up Pace Mile #3: Brain Training Mile #4: Waistline Work Mile #5: Jog and Jive Cool Down + Stretch Mix and match your own mile line up from our customizable menu, or use our premix mile walks to make it easy to just push play and fit in your favorite walk for the day! Premix #1: 2-Quick Miles Premix #2: 3-Mile Power Walk Premix #3: 4 Mega Miles |
Similar Items | 0799932981739: Walk On Walk Off Belly Fat 5 Days a Week with Jessica Smith, Walk at Home + Strength Training for Women, Beginner, Intermediate Level 0799932981722: 10 Minute Quick Walk Mix with Jessica Smith 0799932981692: Burn Fat and Have Fun! Low Impact, High Results Home Cardio Exercise Video Walk Strong 2.0 0799932981661: Walk On 6 Mile Mix - Workout Videos For Women, Low Impact, Cardio and Sculpting Exercise For Fat Burning 0799932981609: 10,000 Steps Weight Loss - Walk On 5 Fat Burning Miles Walking Exercise DVD 0799932981586: Walk On 15-Minute Fast Fat Blasts 0799932981579: Walk On 21 Day Weight Loss Plan 0610373714789: Walking For Weight Loss, Wellness & Energy Dvd |
Created | 04-14-2018 1:20:35am |
Modified | 04-30-2020 6:14:58am |
MD5 | 24195b05e91dce9e0fc4702f52a6c8ec |
SHA256 | 170ea5a9a47eaef09c47af7ec794d198f454ab35797475c23449b00b86f940d5 |
Search Google | by EAN or by Title |
Query Time | 0.0164950 |
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.