vast_api 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +4 -1
- data/VERSION +1 -1
- data/lib/vast_api.rb +21 -7
- data/lib/vast_api/attributes.rb +13 -4
- data/lib/vast_api/attributes/entry.rb +9 -8
- data/lib/vast_api/listings.rb +14 -11
- data/lib/vast_api/listings/entry.rb +58 -6
- data/test/fixtures/vcr_cassettes/bike_listings.yml +2868 -51
- data/test/fixtures/vcr_cassettes/get_required_fields.yml +21 -0
- data/test/fixtures/vcr_cassettes/post_lead.yml +29 -0
- data/test/helper.rb +6 -5
- data/test/test_vast_api.rb +192 -12
- data/vast_api.gemspec +14 -6
- metadata +106 -87
data/Gemfile
CHANGED
@@ -10,9 +10,12 @@ gem "nokogiri", ">= 0"
|
|
10
10
|
group :development do
|
11
11
|
gem "minitest", ">= 0"
|
12
12
|
gem "yard", "~> 0.6.0"
|
13
|
-
gem "bundler"
|
13
|
+
gem "bundler"
|
14
14
|
gem "jeweler", "~> 1.5.2"
|
15
15
|
gem "rcov", ">= 0"
|
16
16
|
gem "webmock", ">= 0"
|
17
17
|
gem "vcr", ">= 0"
|
18
|
+
gem "i18n"
|
19
|
+
gem "builder"
|
18
20
|
end
|
21
|
+
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.2.0
|
data/lib/vast_api.rb
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
require 'open-uri'
|
2
2
|
require 'nokogiri'
|
3
|
+
require 'builder'
|
3
4
|
require 'active_support'
|
5
|
+
require 'net/http'
|
4
6
|
begin
|
5
7
|
require 'active_support/core_ext/object/to_query'
|
8
|
+
require 'active_support/core_ext/module/delegation'
|
9
|
+
require 'active_support/core_ext/hash/conversions'
|
6
10
|
rescue
|
7
11
|
end
|
8
12
|
|
@@ -14,7 +18,7 @@ require File.expand_path('../vast_api/listings.rb', __FILE__)
|
|
14
18
|
require File.expand_path('../vast_api/listings/entry.rb', __FILE__)
|
15
19
|
|
16
20
|
class VastApi
|
17
|
-
attr_accessor :api_url
|
21
|
+
attr_accessor :api_url, :light
|
18
22
|
|
19
23
|
def initialize(apikey=nil, cat=nil)
|
20
24
|
@api_url = 'http://data.vast.com/'
|
@@ -61,7 +65,10 @@ class VastApi
|
|
61
65
|
end
|
62
66
|
|
63
67
|
def api_query
|
64
|
-
|
68
|
+
q = {}
|
69
|
+
q['apikey'] = api_key if api_key
|
70
|
+
q['light'] = 'yes' if light
|
71
|
+
q.to_query
|
65
72
|
end
|
66
73
|
|
67
74
|
def listings
|
@@ -83,24 +90,30 @@ class VastApi
|
|
83
90
|
if id.nil? || id.empty?
|
84
91
|
nil
|
85
92
|
else
|
86
|
-
Listings.get("#{api_url}listings/#{id}/-/#{@category}?#{api_query}")
|
93
|
+
Listings.get(self, "#{api_url}listings/#{id}/-/#{@category}?#{api_query}")
|
87
94
|
end
|
88
95
|
end
|
89
96
|
|
90
97
|
def find!(id)
|
91
98
|
raise ArgumentError, "No id was entered" if id.nil? || id.empty?
|
92
|
-
find(id)
|
99
|
+
self.find(id)
|
93
100
|
end
|
94
101
|
|
95
102
|
def self.find(id, cat)
|
96
|
-
Listings.get("#{api_url}listings/#{id}/-/#{cat}?#{api_query}")
|
103
|
+
Listings.get(self, "#{api_url}listings/#{id}/-/#{cat}?#{api_query}")
|
97
104
|
end
|
98
105
|
|
99
106
|
def self.find_by_url(url)
|
100
|
-
Listings.get(url)
|
107
|
+
Listings.get(self, url)
|
101
108
|
end
|
102
109
|
|
103
|
-
|
110
|
+
def create_entry(entry)
|
111
|
+
if entry.at_xpath('v:attribute')
|
112
|
+
Attributes::Entry.new(self,entry)
|
113
|
+
else
|
114
|
+
Listings::Entry.new(self,entry)
|
115
|
+
end
|
116
|
+
end
|
104
117
|
|
105
118
|
def opt_hash
|
106
119
|
str = ''
|
@@ -110,3 +123,4 @@ class VastApi
|
|
110
123
|
str.hash
|
111
124
|
end
|
112
125
|
end
|
126
|
+
|
data/lib/vast_api/attributes.rb
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
class VastApi
|
2
2
|
class Attributes < Hash
|
3
3
|
attr_reader :xml, :url, :vast
|
4
|
-
|
4
|
+
|
5
|
+
def listings
|
6
|
+
@listings ||= vast.listings
|
7
|
+
end
|
8
|
+
|
5
9
|
def initialize(vast)
|
6
10
|
@vast = vast
|
7
11
|
@url = "#{@vast.api_url}attributes/-/#{@vast.category}?#{@vast.query}"
|
@@ -24,10 +28,15 @@ class VastApi
|
|
24
28
|
private
|
25
29
|
|
26
30
|
def populate
|
27
|
-
@xml.
|
28
|
-
|
31
|
+
@xml.css("entry").each do |entry|
|
32
|
+
e = @vast.create_entry(entry)
|
33
|
+
if e.kind_of? VastApi::Listings::Entry
|
34
|
+
@listings ||= []
|
35
|
+
@listings << e
|
36
|
+
elsif e.kind_of? VastApi::Attributes::Entry
|
37
|
+
self[entry.at_xpath('v:attribute')['id']] = e
|
38
|
+
end
|
29
39
|
end
|
30
40
|
end
|
31
|
-
|
32
41
|
end
|
33
42
|
end
|
@@ -1,15 +1,16 @@
|
|
1
1
|
class VastApi
|
2
2
|
class Attributes
|
3
3
|
class Entry < Hash
|
4
|
-
|
5
|
-
def initialize(doc)
|
4
|
+
attr_reader :doc, :vast
|
5
|
+
def initialize(vast,doc)
|
6
6
|
@attributes = {}
|
7
7
|
@doc = doc
|
8
|
+
@vast = vast
|
8
9
|
@doc.xpath("v:attribute/v:value").each do |value|
|
9
10
|
self[value["id"]] = { :name => value.content, :count => value["count"] }
|
10
11
|
end
|
11
12
|
end
|
12
|
-
|
13
|
+
|
13
14
|
def attribute(var_name)
|
14
15
|
@attributes[var_name] ||=
|
15
16
|
if %W{author updated}.index(var_name)
|
@@ -20,7 +21,7 @@ class VastApi
|
|
20
21
|
get_var("v:#{var_name}")
|
21
22
|
end
|
22
23
|
end
|
23
|
-
|
24
|
+
|
24
25
|
def author
|
25
26
|
@attributes['author'] ||= get_children(@doc.at_xpath('xmlns:author'))
|
26
27
|
end
|
@@ -28,7 +29,7 @@ class VastApi
|
|
28
29
|
def updated
|
29
30
|
@attributes["updated"] ||= DateTime.strptime(@doc.at_xpath('xmlns:updated').content)
|
30
31
|
end
|
31
|
-
|
32
|
+
|
32
33
|
private
|
33
34
|
|
34
35
|
def get_var(var_name)
|
@@ -38,15 +39,15 @@ class VastApi
|
|
38
39
|
nil
|
39
40
|
end
|
40
41
|
end
|
41
|
-
|
42
|
+
|
42
43
|
def get_children(var)
|
43
|
-
hash = {}
|
44
|
+
hash = {}
|
44
45
|
var.children.each do |item|
|
45
46
|
hash[item.name] = item.content
|
46
47
|
end
|
47
48
|
hash
|
48
49
|
end
|
49
|
-
|
50
|
+
|
50
51
|
end
|
51
52
|
end
|
52
53
|
end
|
data/lib/vast_api/listings.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
class VastApi
|
2
2
|
class Listings < Array
|
3
|
-
attr_reader :xml, :url, :vast
|
3
|
+
attr_reader :xml, :url, :vast, :attributes
|
4
4
|
|
5
|
-
delegate :
|
5
|
+
delegate :find, :find!, :to=>:vast
|
6
6
|
|
7
7
|
def initialize(vast)
|
8
8
|
@vast = vast
|
@@ -33,23 +33,26 @@ class VastApi
|
|
33
33
|
@query
|
34
34
|
end
|
35
35
|
|
36
|
-
def
|
37
|
-
|
36
|
+
def self.get(vast,url)
|
37
|
+
Entry.new(vast, Nokogiri::XML(open(url)).at('entry'))
|
38
38
|
end
|
39
39
|
|
40
|
-
def
|
41
|
-
@vast.
|
42
|
-
end
|
43
|
-
|
44
|
-
def self.get(url)
|
45
|
-
Entry.new(Nokogiri::XML(open(url)).at('entry'))
|
40
|
+
def attributes
|
41
|
+
@attributes ||= vast.attributes
|
46
42
|
end
|
47
43
|
|
48
44
|
private
|
49
45
|
def populate
|
50
46
|
@xml.css("entry").each do |entry|
|
51
|
-
|
47
|
+
e = @vast.create_entry(entry)
|
48
|
+
if e.kind_of? VastApi::Attributes::Entry
|
49
|
+
@attributes ||= {}
|
50
|
+
@attributes[entry.at_xpath('v:attribute')['id']] = e
|
51
|
+
elsif e.kind_of? VastApi::Listings::Entry
|
52
|
+
self << e
|
53
|
+
end
|
52
54
|
end
|
53
55
|
end
|
54
56
|
end
|
55
57
|
end
|
58
|
+
|
@@ -1,10 +1,11 @@
|
|
1
1
|
class VastApi
|
2
2
|
class Listings
|
3
3
|
class Entry
|
4
|
-
attr_reader :doc
|
5
|
-
def initialize(doc)
|
4
|
+
attr_reader :doc, :vast
|
5
|
+
def initialize(vast, doc)
|
6
6
|
@doc = doc
|
7
7
|
@attributes = {}
|
8
|
+
@vast = vast
|
8
9
|
end
|
9
10
|
|
10
11
|
def [](var_name)
|
@@ -30,7 +31,7 @@ class VastApi
|
|
30
31
|
end
|
31
32
|
@attributes
|
32
33
|
end
|
33
|
-
|
34
|
+
|
34
35
|
def id
|
35
36
|
@attributes['id'] ||= get_var('v:item_id')
|
36
37
|
end
|
@@ -46,7 +47,7 @@ class VastApi
|
|
46
47
|
def updated
|
47
48
|
@attributes["updated"] ||= DateTime.strptime(@doc.at_xpath('xmlns:updated').content)
|
48
49
|
end
|
49
|
-
|
50
|
+
|
50
51
|
def published
|
51
52
|
@attributes["published"] ||= DateTime.strptime(@doc.at_xpath('xmlns:published').content)
|
52
53
|
end
|
@@ -64,6 +65,56 @@ class VastApi
|
|
64
65
|
end
|
65
66
|
@attributes["vast_links"]
|
66
67
|
end
|
68
|
+
|
69
|
+
def req_fields
|
70
|
+
res = Net::HTTP.get_response(URI.parse("http://leads.vast.com/leads/schema/#{self.id}/-/#{@vast.category}?apikey=#{@vast.api_key}"))
|
71
|
+
req = {'name_first' => true, 'name_last' => true, 'email' => true}
|
72
|
+
doc = Nokogiri::XML(res.body)
|
73
|
+
%W{street city regioncode postalcode}.each do |a|
|
74
|
+
if (doc.at_css(a) && doc.at_css(a).attributes['required'])
|
75
|
+
req.merge!(a => true)
|
76
|
+
else
|
77
|
+
req.merge!(a => false)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
req
|
81
|
+
end
|
82
|
+
|
83
|
+
def post_leads(params)
|
84
|
+
url = "http://leads.vast.com/leads/-/#{@vast.category}?apikey=#{@vast.api_key}"
|
85
|
+
entry = {
|
86
|
+
"record_id" => "#{@vast.api_url}listings/#{self.id}/-/#{@vast.category}?apikey=#{@vast.api_key}",
|
87
|
+
"adf" =>
|
88
|
+
{
|
89
|
+
"customer" =>
|
90
|
+
{
|
91
|
+
"comments" => params[:comments] || "",
|
92
|
+
"contact" =>
|
93
|
+
{
|
94
|
+
"phone" => params[:phone] || "",
|
95
|
+
"address" =>
|
96
|
+
{
|
97
|
+
"street_1" => params[:street_1] || "",
|
98
|
+
"regioncode" => params[:regioncode] || "",
|
99
|
+
"postalcode" => params[:postalcode] || "",
|
100
|
+
"city" => params[:city]} || "",
|
101
|
+
"email" => params[:email] || "",
|
102
|
+
"name_last" => params[:name_last] || "",
|
103
|
+
"name_first" => params[:name_first] || ""
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
107
|
+
}
|
108
|
+
request = Net::HTTP::Post.new(url)
|
109
|
+
request.content_type = "application/atom+xml"
|
110
|
+
request.body = entry.to_xml(:root => 'entry', :dasherize => false)
|
111
|
+
uri = URI.parse(url)
|
112
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
113
|
+
response = http.request(request)
|
114
|
+
doc = Nokogiri::XML(response.body)
|
115
|
+
{:status => doc.at_css("status")["code"], :message => doc.at_css('message').text}
|
116
|
+
end
|
117
|
+
|
67
118
|
private
|
68
119
|
|
69
120
|
def get_var(var_name)
|
@@ -75,7 +126,7 @@ class VastApi
|
|
75
126
|
end
|
76
127
|
|
77
128
|
def get_children(var)
|
78
|
-
hash = {}
|
129
|
+
hash = {}
|
79
130
|
var.children.each do |item|
|
80
131
|
hash[item.name] = item.content
|
81
132
|
end
|
@@ -83,8 +134,9 @@ class VastApi
|
|
83
134
|
end
|
84
135
|
|
85
136
|
def method_missing(sym, *args, &block)
|
86
|
-
self[sym.to_s]
|
137
|
+
self[sym.to_s]
|
87
138
|
end
|
88
139
|
end
|
89
140
|
end
|
90
141
|
end
|
142
|
+
|
@@ -1,438 +1,3255 @@
|
|
1
|
-
---
|
2
|
-
- !ruby/struct:VCR::HTTPInteraction
|
3
|
-
request: !ruby/struct:VCR::Request
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
4
|
method: :get
|
5
5
|
uri: http://data.vast.com:80/listings/-/item_vehicle/bike?
|
6
|
-
body:
|
7
|
-
headers:
|
8
|
-
response: !ruby/struct:VCR::Response
|
9
|
-
status: !ruby/struct:VCR::ResponseStatus
|
6
|
+
body: !!null
|
7
|
+
headers: !!null
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
10
|
code: 200
|
11
11
|
message: OK
|
12
|
-
headers:
|
13
|
-
date:
|
12
|
+
headers:
|
13
|
+
date:
|
14
14
|
- Mon, 21 Mar 2011 20:15:46 GMT
|
15
|
-
server:
|
15
|
+
server:
|
16
16
|
- Apache
|
17
|
-
x-powered-by:
|
17
|
+
x-powered-by:
|
18
18
|
- PHP/5.2.14
|
19
|
-
content-type:
|
19
|
+
content-type:
|
20
20
|
- text/xml; charset=utf-8
|
21
|
-
accept-ranges:
|
21
|
+
accept-ranges:
|
22
22
|
- bytes
|
23
|
-
cache-control:
|
23
|
+
cache-control:
|
24
24
|
- private, max-age=300
|
25
|
-
age:
|
26
|
-
-
|
27
|
-
expires:
|
25
|
+
age:
|
26
|
+
- '0'
|
27
|
+
expires:
|
28
28
|
- Mon, 21 Mar 2011 20:20:46 GMT
|
29
|
-
transfer-encoding:
|
29
|
+
transfer-encoding:
|
30
30
|
- chunked
|
31
|
-
body:
|
32
|
-
|
33
|
-
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:o='http://a9.com/-/spec/opensearchrss/1.0/'
|
31
|
+
body: ! '<?xml version="1.0" encoding="utf-8"?>
|
32
|
+
|
33
|
+
<feed xmlns=''http://www.w3.org/2005/Atom'' xmlns:o=''http://a9.com/-/spec/opensearchrss/1.0/''
|
34
|
+
xmlns:v=''http://data.vast.com/ns/listings''>
|
35
|
+
|
34
36
|
<id>http://data.vast.com/listings/-/item_vehicle/bike</id>
|
37
|
+
|
35
38
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-/item_vehicle/bike"/>
|
39
|
+
|
36
40
|
<updated>2011-03-21T21:15:57+01:00</updated>
|
41
|
+
|
37
42
|
<title type="text">SAMPLE - Bicycles For Sale</title>
|
38
|
-
|
43
|
+
|
44
|
+
<subtitle>These are sample Vast API results. These results may only be used
|
45
|
+
for testing and demonstrating applications and components based on the Vast
|
46
|
+
API. All other uses are prohibited. For results suitable for other uses, including
|
47
|
+
commercial use, please include your API key using the apikey parameter. You
|
48
|
+
may apply for an API key at http://www.vast.com/partner</subtitle>
|
49
|
+
|
39
50
|
<logo>http://www.vast.com/resources/vast_v3/images/vast_logo.jpg</logo>
|
51
|
+
|
40
52
|
<o:totalResults>730</o:totalResults>
|
53
|
+
|
41
54
|
<o:startIndex>1</o:startIndex>
|
55
|
+
|
42
56
|
<o:itemsPerPage>10</o:itemsPerPage>
|
43
|
-
|
57
|
+
|
58
|
+
<o:Query xmlns:v="http://data.vast.com/ns/search" role="request" v:range="50"
|
59
|
+
startIndex="1" totalResults="10" v:feed="listings" v:category="item_vehicle,bike"
|
60
|
+
/>
|
61
|
+
|
44
62
|
<v:stem/>
|
63
|
+
|
45
64
|
<v:extra/>
|
65
|
+
|
46
66
|
<v:site_count>10</v:site_count>
|
67
|
+
|
47
68
|
<v:location/>
|
69
|
+
|
48
70
|
<entry>
|
71
|
+
|
49
72
|
<id>http://data.vast.com/listings/555288039954342885/-/item_vehicle/bike</id>
|
73
|
+
|
50
74
|
<updated>2011-03-18T09:04:04+01:00</updated>
|
75
|
+
|
51
76
|
<published>2011-02-14T09:03:26+01:00</published>
|
77
|
+
|
52
78
|
<author>
|
79
|
+
|
53
80
|
<name>www.sample.com</name>
|
81
|
+
|
54
82
|
</author>
|
83
|
+
|
55
84
|
<title type="text">SAMPLE - Vintage 25 Inch Univega</title>
|
85
|
+
|
56
86
|
<v:vertical>general</v:vertical>
|
87
|
+
|
57
88
|
<v:category>item_vehicle%2Cbike</v:category>
|
89
|
+
|
58
90
|
<v:item_id>555288039954342885</v:item_id>
|
91
|
+
|
59
92
|
<v:location precision="zip">
|
93
|
+
|
60
94
|
<v:state>WA</v:state>
|
95
|
+
|
61
96
|
<v:country>United States</v:country>
|
97
|
+
|
62
98
|
<v:zip>98077</v:zip>
|
99
|
+
|
63
100
|
<v:distance>0</v:distance>
|
101
|
+
|
64
102
|
<v:city>Woodinville</v:city>
|
103
|
+
|
65
104
|
<v:lat precision="unknown">47.749870</v:lat>
|
105
|
+
|
66
106
|
<v:lon precision="unknown">-122.098319</v:lon>
|
107
|
+
|
67
108
|
<v:address></v:address>
|
109
|
+
|
68
110
|
</v:location>
|
111
|
+
|
69
112
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
113
|
+
|
70
114
|
<v:currency type="text">USD</v:currency>
|
115
|
+
|
71
116
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/555288039954342885/-/item_vehicle/bike?apikey="/>
|
117
|
+
|
72
118
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CURHmZaIMMyUBGiJ/"/>
|
119
|
+
|
73
120
|
<link rel="alternate" type="text/html" title="Vintage 25 Inch Univega" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CURHmZaIMMyUBGiJ/"/>
|
74
|
-
|
121
|
+
|
122
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
123
|
+
result" href="http://www.vast.com/ajax/report?id=555288039954342885&category=item_vehicle/bike&apikey="/>
|
124
|
+
|
75
125
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
126
|
+
|
76
127
|
<v:year type="number"></v:year>
|
128
|
+
|
77
129
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/555288039954342885</v:image_url>
|
130
|
+
|
78
131
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/555288039954342885</v:large_image_url>
|
132
|
+
|
79
133
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/555288039954342885</v:tiny_image_url>
|
134
|
+
|
80
135
|
<v:image_count>1</v:image_count>
|
136
|
+
|
81
137
|
<v:hasimage type="boolean">yes</v:hasimage>
|
138
|
+
|
82
139
|
<v:hosted type="boolean">no</v:hosted>
|
140
|
+
|
83
141
|
<v:hosted_type type="text">landing</v:hosted_type>
|
84
|
-
|
85
|
-
<
|
142
|
+
|
143
|
+
<v:description type="text">This bike is in great condition. Everything on the
|
144
|
+
bike still works incredibly well. Questions and concerns - Kramsivamhotmail.com</v:description>
|
145
|
+
|
146
|
+
<content type="html"><img src="http://img.vast.com/128x96/555288039954342885"><ul><li><strong>description:</strong>This
|
147
|
+
bike is in great condition. Everything on the bike still works incredibly well.
|
148
|
+
Questions and concerns - Kramsivamhotmail.com</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
149
|
+
States</li><li><strong>state:</strong>WA</li><li><strong>zip:</strong>98077</li><li><strong>city:</strong>Woodinville</li></ul></content>
|
150
|
+
|
86
151
|
</entry>
|
152
|
+
|
87
153
|
<entry>
|
154
|
+
|
88
155
|
<id>http://data.vast.com/listings/2123402316116475953/-/item_vehicle/bike</id>
|
156
|
+
|
89
157
|
<updated>2011-03-18T21:15:58+01:00</updated>
|
158
|
+
|
90
159
|
<published>2010-03-02T19:38:03+01:00</published>
|
160
|
+
|
91
161
|
<author>
|
162
|
+
|
92
163
|
<name>www.sample.com</name>
|
164
|
+
|
93
165
|
</author>
|
166
|
+
|
94
167
|
<title type="text">SAMPLE - 2007 Yamaha C3</title>
|
168
|
+
|
95
169
|
<v:vertical>general</v:vertical>
|
170
|
+
|
96
171
|
<v:category>item_vehicle%2Cbike</v:category>
|
172
|
+
|
97
173
|
<v:item_id>2123402316116475953</v:item_id>
|
174
|
+
|
98
175
|
<v:location precision="unknown">
|
176
|
+
|
99
177
|
<v:state></v:state>
|
178
|
+
|
100
179
|
<v:country></v:country>
|
180
|
+
|
101
181
|
<v:zip></v:zip>
|
182
|
+
|
102
183
|
<v:distance>0</v:distance>
|
184
|
+
|
103
185
|
<v:city></v:city>
|
186
|
+
|
104
187
|
<v:lat precision="unknown"></v:lat>
|
188
|
+
|
105
189
|
<v:lon precision="unknown"></v:lon>
|
190
|
+
|
106
191
|
<v:address></v:address>
|
192
|
+
|
107
193
|
</v:location>
|
194
|
+
|
108
195
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
196
|
+
|
109
197
|
<v:currency type="text">USD</v:currency>
|
198
|
+
|
110
199
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/2123402316116475953/-/item_vehicle/bike?apikey="/>
|
200
|
+
|
111
201
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAmHa2BDYL271BnJDw==/"/>
|
202
|
+
|
112
203
|
<link rel="alternate" type="text/html" title="2007 Yamaha C3" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAmHa2BDYL271BnJDw==/"/>
|
113
|
-
|
204
|
+
|
205
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
206
|
+
result" href="http://www.vast.com/ajax/report?id=2123402316116475953&category=item_vehicle/bike&apikey="/>
|
207
|
+
|
114
208
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
209
|
+
|
115
210
|
<v:year type="number"></v:year>
|
211
|
+
|
116
212
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/2123402316116475953</v:image_url>
|
213
|
+
|
117
214
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/2123402316116475953</v:large_image_url>
|
215
|
+
|
118
216
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/2123402316116475953</v:tiny_image_url>
|
217
|
+
|
119
218
|
<v:image_count>1</v:image_count>
|
219
|
+
|
120
220
|
<v:hasimage type="boolean">yes</v:hasimage>
|
221
|
+
|
121
222
|
<v:hosted type="boolean">yes</v:hosted>
|
223
|
+
|
122
224
|
<v:hosted_type type="text">landing</v:hosted_type>
|
225
|
+
|
123
226
|
<content type="html"><img src="http://img.vast.com/128x96/2123402316116475953"><ul><li><strong>price:</strong>0</li></ul></content>
|
227
|
+
|
124
228
|
</entry>
|
229
|
+
|
125
230
|
<entry>
|
231
|
+
|
126
232
|
<id>http://data.vast.com/listings/-3583653123299953305/-/item_vehicle/bike</id>
|
233
|
+
|
127
234
|
<updated>2011-03-18T09:04:04+01:00</updated>
|
235
|
+
|
128
236
|
<published>2011-02-14T09:03:18+01:00</published>
|
237
|
+
|
129
238
|
<author>
|
239
|
+
|
130
240
|
<name>www.sample.com</name>
|
241
|
+
|
131
242
|
</author>
|
243
|
+
|
132
244
|
<title type="text">SAMPLE - TREK 77 FX TOUR BIKE RAGBRAI</title>
|
245
|
+
|
133
246
|
<v:vertical>general</v:vertical>
|
247
|
+
|
134
248
|
<v:category>item_vehicle%2Cbike</v:category>
|
249
|
+
|
135
250
|
<v:item_id>-3583653123299953305</v:item_id>
|
251
|
+
|
136
252
|
<v:location precision="zip">
|
253
|
+
|
137
254
|
<v:state>IA</v:state>
|
255
|
+
|
138
256
|
<v:country>United States</v:country>
|
257
|
+
|
139
258
|
<v:zip>50208</v:zip>
|
259
|
+
|
140
260
|
<v:distance>0</v:distance>
|
261
|
+
|
141
262
|
<v:city>Newton</v:city>
|
263
|
+
|
142
264
|
<v:lat precision="unknown">41.697360</v:lat>
|
265
|
+
|
143
266
|
<v:lon precision="unknown">-93.047460</v:lon>
|
267
|
+
|
144
268
|
<v:address></v:address>
|
269
|
+
|
145
270
|
</v:location>
|
271
|
+
|
146
272
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
273
|
+
|
147
274
|
<v:currency type="text">USD</v:currency>
|
275
|
+
|
148
276
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-3583653123299953305/-/item_vehicle/bike?apikey="/>
|
277
|
+
|
149
278
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CURHUJgNkLYGzMkAOQ==/"/>
|
150
|
-
|
151
|
-
<link rel="
|
279
|
+
|
280
|
+
<link rel="alternate" type="text/html" title="TREK 77 FX TOUR BIKE RAGBRAI"
|
281
|
+
href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CURHUJgNkLYGzMkAOQ==/"/>
|
282
|
+
|
283
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
284
|
+
result" href="http://www.vast.com/ajax/report?id=-3583653123299953305&category=item_vehicle/bike&apikey="/>
|
285
|
+
|
152
286
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
287
|
+
|
153
288
|
<v:year type="number"></v:year>
|
289
|
+
|
154
290
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-3583653123299953305</v:image_url>
|
291
|
+
|
155
292
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-3583653123299953305</v:large_image_url>
|
293
|
+
|
156
294
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-3583653123299953305</v:tiny_image_url>
|
295
|
+
|
157
296
|
<v:image_count>1</v:image_count>
|
297
|
+
|
158
298
|
<v:hasimage type="boolean">yes</v:hasimage>
|
299
|
+
|
159
300
|
<v:hosted type="boolean">no</v:hosted>
|
301
|
+
|
160
302
|
<v:hosted_type type="text">landing</v:hosted_type>
|
161
|
-
|
162
|
-
<
|
303
|
+
|
304
|
+
<v:description type="text">I have a 2007 Trek 7.7 FX Touring bike Bontrager
|
305
|
+
front fork carbon fiber rear stays. This bike has been completely customized.
|
306
|
+
It was customized by Mr. Tyler the very well know bike guru from north of hwy
|
307
|
+
20!!! It has custom made Velocity rims with Hope hubs Ultegra components Alien
|
308
|
+
seat post Hope post clamp dual post stand Chris King headset Hope stem Hope
|
309
|
+
bottom bracket carbon fiber bars cane creek bar endsCat Eye computer red brake
|
310
|
+
cables front and rear pannier racks and front and rear fenders. It also includes
|
311
|
+
four Axiom Panniers. I rode this on Ragbrai last year and it was perfect. Plenty
|
312
|
+
of room for all the stuff you want to carry. I had my 2sleeping bags a tent
|
313
|
+
and all the gear for two people on it last year and it rode great. You will
|
314
|
+
not be disappointed this bike looks and rides like new. This is the perfect
|
315
|
+
combination road touring bike for Ragbrai. please call or email Please call</v:description>
|
316
|
+
|
317
|
+
<content type="html"><img src="http://img.vast.com/128x96/-3583653123299953305"><ul><li><strong>description:</strong>I
|
318
|
+
have a 2007 Trek 7.7 FX Touring bike Bontrager front fork carbon fiber rear
|
319
|
+
stays. This bike has been completely customized. It was customized by Mr. Tyler
|
320
|
+
the very well know bike guru from north of hwy 20!!! It has custom made Velocity
|
321
|
+
rims with Hope hubs Ultegra components Alien seat post Hope post clamp dual
|
322
|
+
post stand Chris King headset Hope stem Hope bottom bracket carbon fiber bars
|
323
|
+
cane creek bar endsCat Eye computer red brake cables front and rear pannier
|
324
|
+
racks and front and rear fenders. It also includes four Axiom Panniers. I rode
|
325
|
+
this on Ragbrai last year and it was perfect. Plenty of room for all the stuff
|
326
|
+
you want to carry. I had my 2sleeping bags a tent and all the gear for two people
|
327
|
+
on it last year and it rode great. You will not be disappointed this bike looks
|
328
|
+
and rides like new. This is the perfect combination road touring bike for Ragbrai.
|
329
|
+
please call or email Please call</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
330
|
+
States</li><li><strong>state:</strong>IA</li><li><strong>zip:</strong>50208</li><li><strong>city:</strong>Newton</li></ul></content>
|
331
|
+
|
163
332
|
</entry>
|
333
|
+
|
164
334
|
<entry>
|
335
|
+
|
165
336
|
<id>http://data.vast.com/listings/-4499312207695301837/-/item_vehicle/bike</id>
|
337
|
+
|
166
338
|
<updated>2011-03-18T21:15:56+01:00</updated>
|
339
|
+
|
167
340
|
<published>2011-01-01T21:16:06+01:00</published>
|
341
|
+
|
168
342
|
<author>
|
343
|
+
|
169
344
|
<name>www.sample.com</name>
|
345
|
+
|
170
346
|
</author>
|
347
|
+
|
171
348
|
<title type="text">SAMPLE - 2010 Peace Sport</title>
|
349
|
+
|
172
350
|
<v:vertical>general</v:vertical>
|
351
|
+
|
173
352
|
<v:category>item_vehicle%2Cbike</v:category>
|
353
|
+
|
174
354
|
<v:item_id>-4499312207695301837</v:item_id>
|
355
|
+
|
175
356
|
<v:location precision="unknown">
|
357
|
+
|
176
358
|
<v:state></v:state>
|
359
|
+
|
177
360
|
<v:country></v:country>
|
361
|
+
|
178
362
|
<v:zip></v:zip>
|
363
|
+
|
179
364
|
<v:distance>0</v:distance>
|
365
|
+
|
180
366
|
<v:city></v:city>
|
367
|
+
|
181
368
|
<v:lat precision="unknown"></v:lat>
|
369
|
+
|
182
370
|
<v:lon precision="unknown"></v:lon>
|
371
|
+
|
183
372
|
<v:address></v:address>
|
373
|
+
|
184
374
|
</v:location>
|
375
|
+
|
185
376
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
377
|
+
|
186
378
|
<v:currency type="text">USD</v:currency>
|
379
|
+
|
187
380
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-4499312207695301837/-/item_vehicle/bike?apikey="/>
|
381
|
+
|
188
382
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAnXVEzAtmMdyQO4AQ==/"/>
|
383
|
+
|
189
384
|
<link rel="alternate" type="text/html" title="2010 Peace Sport" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAnXVEzAtmMdyQO4AQ==/"/>
|
190
|
-
|
385
|
+
|
386
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
387
|
+
result" href="http://www.vast.com/ajax/report?id=-4499312207695301837&category=item_vehicle/bike&apikey="/>
|
388
|
+
|
191
389
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
390
|
+
|
192
391
|
<v:year type="number"></v:year>
|
392
|
+
|
193
393
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-4499312207695301837</v:image_url>
|
394
|
+
|
194
395
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-4499312207695301837</v:large_image_url>
|
396
|
+
|
195
397
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-4499312207695301837</v:tiny_image_url>
|
398
|
+
|
196
399
|
<v:image_count>1</v:image_count>
|
400
|
+
|
197
401
|
<v:hasimage type="boolean">yes</v:hasimage>
|
402
|
+
|
198
403
|
<v:hosted type="boolean">yes</v:hosted>
|
404
|
+
|
199
405
|
<v:hosted_type type="text">email</v:hosted_type>
|
406
|
+
|
200
407
|
<v:description type="text">No Tag or Motorcycle License Required, 50cc</v:description>
|
201
|
-
|
408
|
+
|
409
|
+
<content type="html"><img src="http://img.vast.com/128x96/-4499312207695301837"><ul><li><strong>description:</strong>No
|
410
|
+
Tag or Motorcycle License Required, 50cc</li></ul></content>
|
411
|
+
|
202
412
|
</entry>
|
413
|
+
|
203
414
|
<entry>
|
415
|
+
|
204
416
|
<id>http://data.vast.com/listings/8316717306012904287/-/item_vehicle/bike</id>
|
417
|
+
|
205
418
|
<updated>2011-03-18T09:04:03+01:00</updated>
|
419
|
+
|
206
420
|
<published>2011-02-24T09:03:23+01:00</published>
|
421
|
+
|
207
422
|
<author>
|
423
|
+
|
208
424
|
<name>www.sample.com</name>
|
425
|
+
|
209
426
|
</author>
|
427
|
+
|
210
428
|
<title type="text">SAMPLE - Mongoose Fraction 20 inch freestyle BMX bicycle</title>
|
429
|
+
|
211
430
|
<v:vertical>general</v:vertical>
|
431
|
+
|
212
432
|
<v:category>item_vehicle%2Cbike</v:category>
|
433
|
+
|
213
434
|
<v:item_id>8316717306012904287</v:item_id>
|
435
|
+
|
214
436
|
<v:location precision="zip">
|
437
|
+
|
215
438
|
<v:state>TX</v:state>
|
439
|
+
|
216
440
|
<v:country>United States</v:country>
|
441
|
+
|
217
442
|
<v:zip>77365</v:zip>
|
443
|
+
|
218
444
|
<v:distance>0</v:distance>
|
445
|
+
|
219
446
|
<v:city>Porter</v:city>
|
447
|
+
|
220
448
|
<v:lat precision="unknown">30.104937</v:lat>
|
449
|
+
|
221
450
|
<v:lon precision="unknown">-95.258334</v:lon>
|
451
|
+
|
222
452
|
<v:address></v:address>
|
453
|
+
|
223
454
|
</v:location>
|
455
|
+
|
224
456
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
457
|
+
|
225
458
|
<v:currency type="text">USD</v:currency>
|
459
|
+
|
226
460
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/8316717306012904287/-/item_vehicle/bike?apikey="/>
|
461
|
+
|
227
462
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CUQHgL0bED07bDRoHw==/"/>
|
228
|
-
|
229
|
-
<link rel="
|
463
|
+
|
464
|
+
<link rel="alternate" type="text/html" title="Mongoose Fraction 20 inch freestyle
|
465
|
+
BMX bicycle" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CUQHgL0bED07bDRoHw==/"/>
|
466
|
+
|
467
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
468
|
+
result" href="http://www.vast.com/ajax/report?id=8316717306012904287&category=item_vehicle/bike&apikey="/>
|
469
|
+
|
230
470
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
471
|
+
|
231
472
|
<v:year type="number"></v:year>
|
473
|
+
|
232
474
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/8316717306012904287</v:image_url>
|
475
|
+
|
233
476
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/8316717306012904287</v:large_image_url>
|
477
|
+
|
234
478
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/8316717306012904287</v:tiny_image_url>
|
479
|
+
|
235
480
|
<v:image_count>1</v:image_count>
|
481
|
+
|
236
482
|
<v:hasimage type="boolean">yes</v:hasimage>
|
483
|
+
|
237
484
|
<v:hosted type="boolean">no</v:hosted>
|
485
|
+
|
238
486
|
<v:hosted_type type="text">landing</v:hosted_type>
|
239
|
-
|
240
|
-
<
|
487
|
+
|
488
|
+
<v:description type="text">Mongoose Fraction 20 inch freestyle BMX bicycle.
|
489
|
+
All sealed components. Brand new bicycle! Closeout special! Rides great. Local
|
490
|
+
pickup only. 281-354-0163. See our other bicycles at www.sprocketsbicycles.com.
|
491
|
+
Click on the quick links or just scroll down our webpage. We are located in
|
492
|
+
Porter Texas...just north of Houston.</v:description>
|
493
|
+
|
494
|
+
<content type="html"><img src="http://img.vast.com/128x96/8316717306012904287"><ul><li><strong>description:</strong>Mongoose
|
495
|
+
Fraction 20 inch freestyle BMX bicycle. All sealed components. Brand new bicycle!
|
496
|
+
Closeout special! Rides great. Local pickup only. 281-354-0163. See our other
|
497
|
+
bicycles at www.sprocketsbicycles.com. Click on the quick links or just scroll
|
498
|
+
down our webpage. We are located in Porter Texas...just north of Houston.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
499
|
+
States</li><li><strong>state:</strong>TX</li><li><strong>zip:</strong>77365</li><li><strong>city:</strong>Porter</li></ul></content>
|
500
|
+
|
241
501
|
</entry>
|
502
|
+
|
242
503
|
<entry>
|
504
|
+
|
243
505
|
<id>http://data.vast.com/listings/-2515976981155663662/-/item_vehicle/bike</id>
|
506
|
+
|
244
507
|
<updated>2011-03-18T21:15:58+01:00</updated>
|
508
|
+
|
245
509
|
<published>2010-10-13T21:16:21+02:00</published>
|
510
|
+
|
246
511
|
<author>
|
512
|
+
|
247
513
|
<name>www.sample.com</name>
|
514
|
+
|
248
515
|
</author>
|
516
|
+
|
249
517
|
<title type="text">SAMPLE - 2005 Harley Davidson Harley Davidson</title>
|
518
|
+
|
250
519
|
<v:vertical>general</v:vertical>
|
520
|
+
|
251
521
|
<v:category>item_vehicle%2Cbike</v:category>
|
522
|
+
|
252
523
|
<v:item_id>-2515976981155663662</v:item_id>
|
524
|
+
|
253
525
|
<v:location precision="unknown">
|
526
|
+
|
254
527
|
<v:state></v:state>
|
528
|
+
|
255
529
|
<v:country></v:country>
|
530
|
+
|
256
531
|
<v:zip></v:zip>
|
532
|
+
|
257
533
|
<v:distance>0</v:distance>
|
534
|
+
|
258
535
|
<v:city></v:city>
|
536
|
+
|
259
537
|
<v:lat precision="unknown"></v:lat>
|
538
|
+
|
260
539
|
<v:lon precision="unknown"></v:lon>
|
540
|
+
|
261
541
|
<v:address></v:address>
|
542
|
+
|
262
543
|
</v:location>
|
544
|
+
|
263
545
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
546
|
+
|
264
547
|
<v:currency type="text">USD</v:currency>
|
548
|
+
|
265
549
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-2515976981155663662/-/item_vehicle/bike?apikey="/>
|
550
|
+
|
266
551
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAmHVpucHci7md0N1g==/"/>
|
267
|
-
|
268
|
-
<link rel="
|
552
|
+
|
553
|
+
<link rel="alternate" type="text/html" title="2005 Harley Davidson Harley Davidson"
|
554
|
+
href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAmHVpucHci7md0N1g==/"/>
|
555
|
+
|
556
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
557
|
+
result" href="http://www.vast.com/ajax/report?id=-2515976981155663662&category=item_vehicle/bike&apikey="/>
|
558
|
+
|
269
559
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
560
|
+
|
270
561
|
<v:year type="number"></v:year>
|
562
|
+
|
271
563
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-2515976981155663662</v:image_url>
|
564
|
+
|
272
565
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-2515976981155663662</v:large_image_url>
|
566
|
+
|
273
567
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-2515976981155663662</v:tiny_image_url>
|
568
|
+
|
274
569
|
<v:image_count>1</v:image_count>
|
570
|
+
|
275
571
|
<v:hasimage type="boolean">yes</v:hasimage>
|
572
|
+
|
276
573
|
<v:hosted type="boolean">yes</v:hosted>
|
574
|
+
|
277
575
|
<v:hosted_type type="text">email</v:hosted_type>
|
576
|
+
|
278
577
|
<v:description type="text">Only 2557 miles, one owner, fuel injected, with windshield!</v:description>
|
279
|
-
|
578
|
+
|
579
|
+
<content type="html"><img src="http://img.vast.com/128x96/-2515976981155663662"><ul><li><strong>description:</strong>Only
|
580
|
+
2557 miles, one owner, fuel injected, with windshield!</li><li><strong>price:</strong>0</li></ul></content>
|
581
|
+
|
280
582
|
</entry>
|
583
|
+
|
281
584
|
<entry>
|
585
|
+
|
282
586
|
<id>http://data.vast.com/listings/-8360389492568647455/-/item_vehicle/bike</id>
|
587
|
+
|
283
588
|
<updated>2011-03-18T09:04:04+01:00</updated>
|
589
|
+
|
284
590
|
<published>2011-02-14T09:03:19+01:00</published>
|
591
|
+
|
285
592
|
<author>
|
593
|
+
|
286
594
|
<name>www.sample.com</name>
|
595
|
+
|
287
596
|
</author>
|
597
|
+
|
288
598
|
<title type="text">SAMPLE - CANNONDALE MOUNTAIN BIKE</title>
|
599
|
+
|
289
600
|
<v:vertical>general</v:vertical>
|
601
|
+
|
290
602
|
<v:category>item_vehicle%2Cbike</v:category>
|
603
|
+
|
291
604
|
<v:item_id>-8360389492568647455</v:item_id>
|
605
|
+
|
292
606
|
<v:location precision="zip">
|
607
|
+
|
293
608
|
<v:state>FL</v:state>
|
609
|
+
|
294
610
|
<v:country>United States</v:country>
|
611
|
+
|
295
612
|
<v:zip>33705</v:zip>
|
613
|
+
|
296
614
|
<v:distance>0</v:distance>
|
615
|
+
|
297
616
|
<v:city>Saint Petersburg</v:city>
|
617
|
+
|
298
618
|
<v:lat precision="unknown">27.741797</v:lat>
|
619
|
+
|
299
620
|
<v:lon precision="unknown">-82.641410</v:lon>
|
621
|
+
|
300
622
|
<v:address></v:address>
|
623
|
+
|
301
624
|
</v:location>
|
625
|
+
|
302
626
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
627
|
+
|
303
628
|
<v:currency type="text">USD</v:currency>
|
629
|
+
|
304
630
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-8360389492568647455/-/item_vehicle/bike?apikey="/>
|
631
|
+
|
305
632
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CURHWA0wjExp2NQUmQ==/"/>
|
633
|
+
|
306
634
|
<link rel="alternate" type="text/html" title="CANNONDALE MOUNTAIN BIKE" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CURHWA0wjExp2NQUmQ==/"/>
|
307
|
-
|
635
|
+
|
636
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
637
|
+
result" href="http://www.vast.com/ajax/report?id=-8360389492568647455&category=item_vehicle/bike&apikey="/>
|
638
|
+
|
308
639
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
640
|
+
|
309
641
|
<v:year type="number"></v:year>
|
642
|
+
|
310
643
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-8360389492568647455</v:image_url>
|
644
|
+
|
311
645
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-8360389492568647455</v:large_image_url>
|
646
|
+
|
312
647
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-8360389492568647455</v:tiny_image_url>
|
648
|
+
|
313
649
|
<v:image_count>1</v:image_count>
|
650
|
+
|
314
651
|
<v:hasimage type="boolean">yes</v:hasimage>
|
652
|
+
|
315
653
|
<v:hosted type="boolean">no</v:hosted>
|
654
|
+
|
316
655
|
<v:hosted_type type="text">landing</v:hosted_type>
|
317
|
-
|
318
|
-
<
|
656
|
+
|
657
|
+
<v:description type="text">DISK BRAKES FULL SUSPENSION WITH OPTION TO LOCK OUT.
|
658
|
+
GRIMECA GEARS GEL SEAT..... LOADED A MUST SEE MAKE OFFER!</v:description>
|
659
|
+
|
660
|
+
<content type="html"><img src="http://img.vast.com/128x96/-8360389492568647455"><ul><li><strong>description:</strong>DISK
|
661
|
+
BRAKES FULL SUSPENSION WITH OPTION TO LOCK OUT. GRIMECA GEARS GEL SEAT.....
|
662
|
+
LOADED A MUST SEE MAKE OFFER!</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
663
|
+
States</li><li><strong>state:</strong>FL</li><li><strong>zip:</strong>33705</li><li><strong>city:</strong>Saint
|
664
|
+
Petersburg</li></ul></content>
|
665
|
+
|
319
666
|
</entry>
|
667
|
+
|
320
668
|
<entry>
|
669
|
+
|
321
670
|
<id>http://data.vast.com/listings/7746972001580110582/-/item_vehicle/bike</id>
|
671
|
+
|
322
672
|
<updated>2011-03-18T21:15:56+01:00</updated>
|
673
|
+
|
323
674
|
<published>2011-01-01T21:16:07+01:00</published>
|
675
|
+
|
324
676
|
<author>
|
677
|
+
|
325
678
|
<name>www.sample.com</name>
|
679
|
+
|
326
680
|
</author>
|
681
|
+
|
327
682
|
<title type="text">SAMPLE - 2010 Yamaha B09</title>
|
683
|
+
|
328
684
|
<v:vertical>general</v:vertical>
|
685
|
+
|
329
686
|
<v:category>item_vehicle%2Cbike</v:category>
|
687
|
+
|
330
688
|
<v:item_id>7746972001580110582</v:item_id>
|
689
|
+
|
331
690
|
<v:location precision="unknown">
|
691
|
+
|
332
692
|
<v:state></v:state>
|
693
|
+
|
333
694
|
<v:country></v:country>
|
695
|
+
|
334
696
|
<v:zip></v:zip>
|
697
|
+
|
335
698
|
<v:distance>0</v:distance>
|
699
|
+
|
336
700
|
<v:city></v:city>
|
701
|
+
|
337
702
|
<v:lat precision="unknown"></v:lat>
|
703
|
+
|
338
704
|
<v:lon precision="unknown"></v:lon>
|
705
|
+
|
339
706
|
<v:address></v:address>
|
707
|
+
|
340
708
|
</v:location>
|
709
|
+
|
341
710
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
711
|
+
|
342
712
|
<v:currency type="text">USD</v:currency>
|
713
|
+
|
343
714
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/7746972001580110582/-/item_vehicle/bike?apikey="/>
|
715
|
+
|
344
716
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAnXEU3BYzuYO7OYbw==/"/>
|
717
|
+
|
345
718
|
<link rel="alternate" type="text/html" title="2010 Yamaha B09" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAnXEU3BYzuYO7OYbw==/"/>
|
346
|
-
|
719
|
+
|
720
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
721
|
+
result" href="http://www.vast.com/ajax/report?id=7746972001580110582&category=item_vehicle/bike&apikey="/>
|
722
|
+
|
347
723
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
724
|
+
|
348
725
|
<v:year type="number"></v:year>
|
726
|
+
|
349
727
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/7746972001580110582</v:image_url>
|
728
|
+
|
350
729
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/7746972001580110582</v:large_image_url>
|
730
|
+
|
351
731
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/7746972001580110582</v:tiny_image_url>
|
732
|
+
|
352
733
|
<v:image_count>1</v:image_count>
|
734
|
+
|
353
735
|
<v:hasimage type="boolean">yes</v:hasimage>
|
736
|
+
|
354
737
|
<v:hosted type="boolean">yes</v:hosted>
|
738
|
+
|
355
739
|
<v:hosted_type type="text">email</v:hosted_type>
|
740
|
+
|
356
741
|
<v:description type="text">No Tag or Motorcycle License Required, 50cc</v:description>
|
357
|
-
|
742
|
+
|
743
|
+
<content type="html"><img src="http://img.vast.com/128x96/7746972001580110582"><ul><li><strong>description:</strong>No
|
744
|
+
Tag or Motorcycle License Required, 50cc</li></ul></content>
|
745
|
+
|
358
746
|
</entry>
|
747
|
+
|
359
748
|
<entry>
|
749
|
+
|
360
750
|
<id>http://data.vast.com/listings/1834426840979448325/-/item_vehicle/bike</id>
|
751
|
+
|
361
752
|
<updated>2011-03-18T09:04:06+01:00</updated>
|
753
|
+
|
362
754
|
<published>2011-03-08T09:02:54+01:00</published>
|
755
|
+
|
363
756
|
<author>
|
757
|
+
|
364
758
|
<name>www.sample.com</name>
|
759
|
+
|
365
760
|
</author>
|
761
|
+
|
366
762
|
<title type="text">SAMPLE - 1988 Peugeot Monaco 12 sp Ladies English Racer bike</title>
|
763
|
+
|
367
764
|
<v:vertical>general</v:vertical>
|
765
|
+
|
368
766
|
<v:category>item_vehicle%2Cbike</v:category>
|
767
|
+
|
369
768
|
<v:item_id>1834426840979448325</v:item_id>
|
769
|
+
|
370
770
|
<v:location precision="zip">
|
771
|
+
|
371
772
|
<v:state>FL</v:state>
|
773
|
+
|
372
774
|
<v:country>United States</v:country>
|
775
|
+
|
373
776
|
<v:zip>33951</v:zip>
|
777
|
+
|
374
778
|
<v:distance>0</v:distance>
|
779
|
+
|
375
780
|
<v:city>Punta Gorda</v:city>
|
781
|
+
|
376
782
|
<v:lat precision="unknown">26.932446</v:lat>
|
783
|
+
|
377
784
|
<v:lon precision="unknown">-81.986818</v:lon>
|
785
|
+
|
378
786
|
<v:address></v:address>
|
787
|
+
|
379
788
|
</v:location>
|
789
|
+
|
380
790
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
791
|
+
|
381
792
|
<v:currency type="text">USD</v:currency>
|
793
|
+
|
382
794
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/1834426840979448325/-/item_vehicle/bike?apikey="/>
|
795
|
+
|
383
796
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CUTXuARG2EPBxEgGnw==/"/>
|
384
|
-
|
385
|
-
<link rel="
|
797
|
+
|
798
|
+
<link rel="alternate" type="text/html" title="1988 Peugeot Monaco 12 sp Ladies
|
799
|
+
English Racer bike" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0CUTXuARG2EPBxEgGnw==/"/>
|
800
|
+
|
801
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
802
|
+
result" href="http://www.vast.com/ajax/report?id=1834426840979448325&category=item_vehicle/bike&apikey="/>
|
803
|
+
|
386
804
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
805
|
+
|
387
806
|
<v:year type="number"></v:year>
|
807
|
+
|
388
808
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/1834426840979448325</v:image_url>
|
809
|
+
|
389
810
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/1834426840979448325</v:large_image_url>
|
811
|
+
|
390
812
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/1834426840979448325</v:tiny_image_url>
|
813
|
+
|
391
814
|
<v:image_count>1</v:image_count>
|
815
|
+
|
392
816
|
<v:hasimage type="boolean">yes</v:hasimage>
|
817
|
+
|
393
818
|
<v:hosted type="boolean">no</v:hosted>
|
819
|
+
|
394
820
|
<v:hosted_type type="text">landing</v:hosted_type>
|
395
|
-
|
396
|
-
<
|
821
|
+
|
822
|
+
<v:description type="text">1988 Peugeot Monaco 12 speed ladies racer bike. New
|
823
|
+
Tires I Love My Peugeot gear pouch. Water bottle holder. 150.00.</v:description>
|
824
|
+
|
825
|
+
<content type="html"><img src="http://img.vast.com/128x96/1834426840979448325"><ul><li><strong>description:</strong>1988
|
826
|
+
Peugeot Monaco 12 speed ladies racer bike. New Tires I Love My Peugeot gear
|
827
|
+
pouch. Water bottle holder. 150.00.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
828
|
+
States</li><li><strong>state:</strong>FL</li><li><strong>zip:</strong>33951</li><li><strong>city:</strong>Punta
|
829
|
+
Gorda</li></ul></content>
|
830
|
+
|
397
831
|
</entry>
|
832
|
+
|
398
833
|
<entry>
|
834
|
+
|
399
835
|
<id>http://data.vast.com/listings/5882224905579195812/-/item_vehicle/bike</id>
|
836
|
+
|
400
837
|
<updated>2011-03-18T21:15:56+01:00</updated>
|
838
|
+
|
401
839
|
<published>2010-10-17T21:15:50+02:00</published>
|
840
|
+
|
402
841
|
<author>
|
842
|
+
|
403
843
|
<name>www.sample.com</name>
|
844
|
+
|
404
845
|
</author>
|
846
|
+
|
405
847
|
<title type="text">SAMPLE - 2010 Peace Sport</title>
|
848
|
+
|
406
849
|
<v:vertical>general</v:vertical>
|
850
|
+
|
407
851
|
<v:category>item_vehicle%2Cbike</v:category>
|
852
|
+
|
408
853
|
<v:item_id>5882224905579195812</v:item_id>
|
854
|
+
|
409
855
|
<v:location precision="unknown">
|
856
|
+
|
410
857
|
<v:state></v:state>
|
858
|
+
|
411
859
|
<v:country></v:country>
|
860
|
+
|
412
861
|
<v:zip></v:zip>
|
862
|
+
|
413
863
|
<v:distance>0</v:distance>
|
864
|
+
|
414
865
|
<v:city></v:city>
|
866
|
+
|
415
867
|
<v:lat precision="unknown"></v:lat>
|
868
|
+
|
416
869
|
<v:lon precision="unknown"></v:lon>
|
870
|
+
|
417
871
|
<v:address></v:address>
|
872
|
+
|
418
873
|
</v:location>
|
874
|
+
|
419
875
|
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
876
|
+
|
420
877
|
<v:currency type="text">USD</v:currency>
|
878
|
+
|
421
879
|
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/5882224905579195812/-/item_vehicle/bike?apikey="/>
|
880
|
+
|
422
881
|
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAnXmIZmTDmRy8mLbw==/"/>
|
882
|
+
|
423
883
|
<link rel="alternate" type="text/html" title="2010 Peace Sport" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewM0HAnXmIZmTDmRy8mLbw==/"/>
|
424
|
-
|
884
|
+
|
885
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
886
|
+
result" href="http://www.vast.com/ajax/report?id=5882224905579195812&category=item_vehicle/bike&apikey="/>
|
887
|
+
|
425
888
|
<v:domain_name type="text">www.sample.com</v:domain_name>
|
889
|
+
|
426
890
|
<v:year type="number"></v:year>
|
891
|
+
|
427
892
|
<v:image_url type="image/jpeg">http://img.vast.com/128x96/5882224905579195812</v:image_url>
|
893
|
+
|
428
894
|
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/5882224905579195812</v:large_image_url>
|
895
|
+
|
429
896
|
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/5882224905579195812</v:tiny_image_url>
|
897
|
+
|
430
898
|
<v:image_count>1</v:image_count>
|
899
|
+
|
431
900
|
<v:hasimage type="boolean">yes</v:hasimage>
|
901
|
+
|
432
902
|
<v:hosted type="boolean">yes</v:hosted>
|
903
|
+
|
433
904
|
<v:hosted_type type="text">email</v:hosted_type>
|
905
|
+
|
434
906
|
<content type="html"><img src="http://img.vast.com/128x96/5882224905579195812"><ul></ul></content>
|
907
|
+
|
908
|
+
</entry>
|
909
|
+
|
910
|
+
</feed>
|
911
|
+
|
912
|
+
'
|
913
|
+
http_version: '1.1'
|
914
|
+
- !ruby/struct:VCR::HTTPInteraction
|
915
|
+
request: !ruby/struct:VCR::Request
|
916
|
+
method: :get
|
917
|
+
uri: http://data.vast.com:80/listings/-/item_vehicle/bike?include=attributes
|
918
|
+
body: !!null
|
919
|
+
headers: !!null
|
920
|
+
response: !ruby/struct:VCR::Response
|
921
|
+
status: !ruby/struct:VCR::ResponseStatus
|
922
|
+
code: 200
|
923
|
+
message: OK
|
924
|
+
headers:
|
925
|
+
date:
|
926
|
+
- Fri, 12 Aug 2011 13:39:55 GMT
|
927
|
+
server:
|
928
|
+
- Apache
|
929
|
+
x-powered-by:
|
930
|
+
- PHP/5.2.14
|
931
|
+
content-type:
|
932
|
+
- text/xml; charset=utf-8
|
933
|
+
accept-ranges:
|
934
|
+
- bytes
|
935
|
+
cache-control:
|
936
|
+
- private, max-age=300
|
937
|
+
age:
|
938
|
+
- '0'
|
939
|
+
expires:
|
940
|
+
- Fri, 12 Aug 2011 13:44:55 GMT
|
941
|
+
transfer-encoding:
|
942
|
+
- chunked
|
943
|
+
body: ! '<?xml version="1.0" encoding="utf-8"?>
|
944
|
+
|
945
|
+
<feed xmlns=''http://www.w3.org/2005/Atom'' xmlns:o=''http://a9.com/-/spec/opensearchrss/1.0/''
|
946
|
+
xmlns:v=''http://data.vast.com/ns/listings''>
|
947
|
+
|
948
|
+
<id>http://data.vast.com/listings/-/item_vehicle/bike?include=attributes</id>
|
949
|
+
|
950
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-/item_vehicle/bike?include=attributes"/>
|
951
|
+
|
952
|
+
<updated>2011-08-12T15:40:14+02:00</updated>
|
953
|
+
|
954
|
+
<title type="text">SAMPLE - Bicycles For Sale</title>
|
955
|
+
|
956
|
+
<subtitle>These are sample Vast API results. These results may only be used
|
957
|
+
for testing and demonstrating applications and components based on the Vast
|
958
|
+
API. All other uses are prohibited. For results suitable for other uses, including
|
959
|
+
commercial use, please include your API key using the apikey parameter. You
|
960
|
+
may apply for an API key at http://www.vast.com/partner</subtitle>
|
961
|
+
|
962
|
+
<logo>http://www.vast.com/resources/vast_v3/images/vast_logo.jpg</logo>
|
963
|
+
|
964
|
+
<o:totalResults>950</o:totalResults>
|
965
|
+
|
966
|
+
<o:startIndex>1</o:startIndex>
|
967
|
+
|
968
|
+
<o:itemsPerPage>10</o:itemsPerPage>
|
969
|
+
|
970
|
+
<o:Query xmlns:v="http://data.vast.com/ns/search" role="request" v:range="50"
|
971
|
+
startIndex="1" totalResults="10" v:feed="listings" v:category="item_vehicle,bike"
|
972
|
+
/>
|
973
|
+
|
974
|
+
<v:stem/>
|
975
|
+
|
976
|
+
<v:extra/>
|
977
|
+
|
978
|
+
<v:site_count>8</v:site_count>
|
979
|
+
|
980
|
+
<v:location/>
|
981
|
+
|
982
|
+
<entry>
|
983
|
+
|
984
|
+
<id>http://data.vast.com/listings/-1184630917991775617/-/item_vehicle/bike</id>
|
985
|
+
|
986
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
987
|
+
|
988
|
+
<published>2011-07-08T09:04:27+02:00</published>
|
989
|
+
|
990
|
+
<author>
|
991
|
+
|
992
|
+
<name>www.sample.com</name>
|
993
|
+
|
994
|
+
</author>
|
995
|
+
|
996
|
+
<title type="text">SAMPLE - 93 Kestrel CSX MTB</title>
|
997
|
+
|
998
|
+
<v:vertical>general</v:vertical>
|
999
|
+
|
1000
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1001
|
+
|
1002
|
+
<v:item_id>-1184630917991775617</v:item_id>
|
1003
|
+
|
1004
|
+
<v:location precision="address">
|
1005
|
+
|
1006
|
+
<v:state>FL</v:state>
|
1007
|
+
|
1008
|
+
<v:country>United States</v:country>
|
1009
|
+
|
1010
|
+
<v:zip>33309</v:zip>
|
1011
|
+
|
1012
|
+
<v:distance>0</v:distance>
|
1013
|
+
|
1014
|
+
<v:city>Oakland Park</v:city>
|
1015
|
+
|
1016
|
+
<v:lat precision="city">26.183096</v:lat>
|
1017
|
+
|
1018
|
+
<v:lon precision="city">-80.173925</v:lon>
|
1019
|
+
|
1020
|
+
<v:address>721 NW 36th Street</v:address>
|
1021
|
+
|
1022
|
+
</v:location>
|
1023
|
+
|
1024
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1025
|
+
|
1026
|
+
<v:currency type="text">USD</v:currency>
|
1027
|
+
|
1028
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-1184630917991775617/-/item_vehicle/bike?apikey="/>
|
1029
|
+
|
1030
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3W7hNA8scyxGdsQ==/"/>
|
1031
|
+
|
1032
|
+
<link rel="alternate" type="text/html" title="93 Kestrel CSX MTB" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3W7hNA8scyxGdsQ==/"/>
|
1033
|
+
|
1034
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1035
|
+
result" href="http://www.vast.com/ajax/report?id=-1184630917991775617&category=item_vehicle/bike&apikey="/>
|
1036
|
+
|
1037
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1038
|
+
|
1039
|
+
<v:year type="number"></v:year>
|
1040
|
+
|
1041
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-1184630917991775617</v:image_url>
|
1042
|
+
|
1043
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-1184630917991775617</v:large_image_url>
|
1044
|
+
|
1045
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-1184630917991775617</v:tiny_image_url>
|
1046
|
+
|
1047
|
+
<v:image_count>1</v:image_count>
|
1048
|
+
|
1049
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1050
|
+
|
1051
|
+
<v:hosted type="boolean">no</v:hosted>
|
1052
|
+
|
1053
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1054
|
+
|
1055
|
+
<v:description type="text">Circa 1993 19.5 Kestrel CSX Carbon Fiber Hard Tail
|
1056
|
+
Frame Black/Green Ritchey Logic Cantilever Brakes Pads Levers Ritchey Vantage
|
1057
|
+
Comp 32-hole Rims Ritchey Seat Post Shimano Deore XT Derailleurs Hubs Thumb
|
1058
|
+
Shifters Shimano Deore XT FC-M730 Cranks 175mm Shimano SG Superglide Chainwheels
|
1059
|
+
Tioga Avenger DSL Headset Tioga Avenger T-Bone Super Lite Neck Tioga Avenger
|
1060
|
+
DL-2000 Bars GT Saddle Needs tuneup and rear tire sidewall blowout Shipping
|
1061
|
+
not included</v:description>
|
1062
|
+
|
1063
|
+
<content type="html"><img src="http://img.vast.com/128x96/-1184630917991775617"><ul><li><strong>description:</strong>Circa
|
1064
|
+
1993 19.5 Kestrel CSX Carbon Fiber Hard Tail Frame Black/Green Ritchey Logic
|
1065
|
+
Cantilever Brakes Pads Levers Ritchey Vantage Comp 32-hole Rims Ritchey Seat
|
1066
|
+
Post Shimano Deore XT Derailleurs Hubs Thumb Shifters Shimano Deore XT FC-M730
|
1067
|
+
Cranks 175mm Shimano SG Superglide Chainwheels Tioga Avenger DSL Headset Tioga
|
1068
|
+
Avenger T-Bone Super Lite Neck Tioga Avenger DL-2000 Bars GT Saddle Needs tuneup
|
1069
|
+
and rear tire sidewall blowout Shipping not included</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1070
|
+
States</li><li><strong>state:</strong>FL</li><li><strong>zip:</strong>33309</li><li><strong>city:</strong>Oakland
|
1071
|
+
Park</li></ul></content>
|
1072
|
+
|
435
1073
|
</entry>
|
1074
|
+
|
1075
|
+
<entry>
|
1076
|
+
|
1077
|
+
<id>http://data.vast.com/listings/-7613361941507880488/-/item_vehicle/bike</id>
|
1078
|
+
|
1079
|
+
<updated>2011-08-08T09:05:20+02:00</updated>
|
1080
|
+
|
1081
|
+
<published>2011-07-08T09:04:23+02:00</published>
|
1082
|
+
|
1083
|
+
<author>
|
1084
|
+
|
1085
|
+
<name>www.sample.com</name>
|
1086
|
+
|
1087
|
+
</author>
|
1088
|
+
|
1089
|
+
<title type="text">SAMPLE - Schwinn Super Le Tour 122</title>
|
1090
|
+
|
1091
|
+
<v:vertical>general</v:vertical>
|
1092
|
+
|
1093
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1094
|
+
|
1095
|
+
<v:item_id>-7613361941507880488</v:item_id>
|
1096
|
+
|
1097
|
+
<v:location precision="zip">
|
1098
|
+
|
1099
|
+
<v:state>MN</v:state>
|
1100
|
+
|
1101
|
+
<v:country>United States</v:country>
|
1102
|
+
|
1103
|
+
<v:zip>55424</v:zip>
|
1104
|
+
|
1105
|
+
<v:distance>0</v:distance>
|
1106
|
+
|
1107
|
+
<v:city>Minneapolis</v:city>
|
1108
|
+
|
1109
|
+
<v:lat precision="unknown">44.905616</v:lat>
|
1110
|
+
|
1111
|
+
<v:lon precision="unknown">-93.340476</v:lon>
|
1112
|
+
|
1113
|
+
<v:address></v:address>
|
1114
|
+
|
1115
|
+
</v:location>
|
1116
|
+
|
1117
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1118
|
+
|
1119
|
+
<v:currency type="text">USD</v:currency>
|
1120
|
+
|
1121
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-7613361941507880488/-/item_vehicle/bike?apikey="/>
|
1122
|
+
|
1123
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3UdsA28S5MYg0iA==/"/>
|
1124
|
+
|
1125
|
+
<link rel="alternate" type="text/html" title="Schwinn Super Le Tour 122" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3UdsA28S5MYg0iA==/"/>
|
1126
|
+
|
1127
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1128
|
+
result" href="http://www.vast.com/ajax/report?id=-7613361941507880488&category=item_vehicle/bike&apikey="/>
|
1129
|
+
|
1130
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1131
|
+
|
1132
|
+
<v:year type="number"></v:year>
|
1133
|
+
|
1134
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-7613361941507880488</v:image_url>
|
1135
|
+
|
1136
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-7613361941507880488</v:large_image_url>
|
1137
|
+
|
1138
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-7613361941507880488</v:tiny_image_url>
|
1139
|
+
|
1140
|
+
<v:image_count>1</v:image_count>
|
1141
|
+
|
1142
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1143
|
+
|
1144
|
+
<v:hosted type="boolean">no</v:hosted>
|
1145
|
+
|
1146
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1147
|
+
|
1148
|
+
<v:description type="text">Nice 1978 bike. One owner stored indoors since it
|
1149
|
+
was purchased. Includes new Schwinn HP Sport tires Blackburn rack Zefal air
|
1150
|
+
pump and other original accessories. 285 or best.</v:description>
|
1151
|
+
|
1152
|
+
<content type="html"><img src="http://img.vast.com/128x96/-7613361941507880488"><ul><li><strong>description:</strong>Nice
|
1153
|
+
1978 bike. One owner stored indoors since it was purchased. Includes new Schwinn
|
1154
|
+
HP Sport tires Blackburn rack Zefal air pump and other original accessories.
|
1155
|
+
285 or best.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1156
|
+
States</li><li><strong>state:</strong>MN</li><li><strong>zip:</strong>55424</li><li><strong>city:</strong>Minneapolis</li></ul></content>
|
1157
|
+
|
1158
|
+
</entry>
|
1159
|
+
|
1160
|
+
<entry>
|
1161
|
+
|
1162
|
+
<id>http://data.vast.com/listings/-6082803932649744285/-/item_vehicle/bike</id>
|
1163
|
+
|
1164
|
+
<updated>2011-08-08T09:05:27+02:00</updated>
|
1165
|
+
|
1166
|
+
<published>2011-08-08T09:05:28+02:00</published>
|
1167
|
+
|
1168
|
+
<author>
|
1169
|
+
|
1170
|
+
<name>www.sample.com</name>
|
1171
|
+
|
1172
|
+
</author>
|
1173
|
+
|
1174
|
+
<title type="text">SAMPLE - Cannondale Silk Road 500</title>
|
1175
|
+
|
1176
|
+
<v:vertical>general</v:vertical>
|
1177
|
+
|
1178
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1179
|
+
|
1180
|
+
<v:item_id>-6082803932649744285</v:item_id>
|
1181
|
+
|
1182
|
+
<v:location precision="zip">
|
1183
|
+
|
1184
|
+
<v:state>TX</v:state>
|
1185
|
+
|
1186
|
+
<v:country>United States</v:country>
|
1187
|
+
|
1188
|
+
<v:zip>77345</v:zip>
|
1189
|
+
|
1190
|
+
<v:distance>0</v:distance>
|
1191
|
+
|
1192
|
+
<v:city>Kingwood</v:city>
|
1193
|
+
|
1194
|
+
<v:lat precision="unknown">30.058980</v:lat>
|
1195
|
+
|
1196
|
+
<v:lon precision="unknown">-95.167380</v:lon>
|
1197
|
+
|
1198
|
+
<v:address></v:address>
|
1199
|
+
|
1200
|
+
</v:location>
|
1201
|
+
|
1202
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1203
|
+
|
1204
|
+
<v:currency type="text">USD</v:currency>
|
1205
|
+
|
1206
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-6082803932649744285/-/item_vehicle/bike?apikey="/>
|
1207
|
+
|
1208
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbYXXThoMMBtTBRGiQ==/"/>
|
1209
|
+
|
1210
|
+
<link rel="alternate" type="text/html" title="Cannondale Silk Road 500" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbYXXThoMMBtTBRGiQ==/"/>
|
1211
|
+
|
1212
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1213
|
+
result" href="http://www.vast.com/ajax/report?id=-6082803932649744285&category=item_vehicle/bike&apikey="/>
|
1214
|
+
|
1215
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1216
|
+
|
1217
|
+
<v:year type="number"></v:year>
|
1218
|
+
|
1219
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-6082803932649744285</v:image_url>
|
1220
|
+
|
1221
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-6082803932649744285</v:large_image_url>
|
1222
|
+
|
1223
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-6082803932649744285</v:tiny_image_url>
|
1224
|
+
|
1225
|
+
<v:image_count>1</v:image_count>
|
1226
|
+
|
1227
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1228
|
+
|
1229
|
+
<v:hosted type="boolean">no</v:hosted>
|
1230
|
+
|
1231
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1232
|
+
|
1233
|
+
<v:description type="text">Size 52cm. Color Starlight Violet. Left shifter is
|
1234
|
+
sticking a bit from non-use otherwise excellent condition and rides silky smooth.
|
1235
|
+
Headshock front suspension can be dialed off when desired. Brand new tires/tubes.
|
1236
|
+
Includes Profile Aerobars. Price recently reduced. Prefer local buyer price
|
1237
|
+
does not include shipping/packing.</v:description>
|
1238
|
+
|
1239
|
+
<content type="html"><img src="http://img.vast.com/128x96/-6082803932649744285"><ul><li><strong>description:</strong>Size
|
1240
|
+
52cm. Color Starlight Violet. Left shifter is sticking a bit from non-use otherwise
|
1241
|
+
excellent condition and rides silky smooth. Headshock front suspension can be
|
1242
|
+
dialed off when desired. Brand new tires/tubes. Includes Profile Aerobars. Price
|
1243
|
+
recently reduced. Prefer local buyer price does not include shipping/packing.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1244
|
+
States</li><li><strong>state:</strong>TX</li><li><strong>zip:</strong>77345</li><li><strong>city:</strong>Kingwood</li></ul></content>
|
1245
|
+
|
1246
|
+
</entry>
|
1247
|
+
|
1248
|
+
<entry>
|
1249
|
+
|
1250
|
+
<id>http://data.vast.com/listings/4492261456855456117/-/item_vehicle/bike</id>
|
1251
|
+
|
1252
|
+
<updated>2011-08-08T09:05:26+02:00</updated>
|
1253
|
+
|
1254
|
+
<published>2011-08-08T09:05:27+02:00</published>
|
1255
|
+
|
1256
|
+
<author>
|
1257
|
+
|
1258
|
+
<name>www.sample.com</name>
|
1259
|
+
|
1260
|
+
</author>
|
1261
|
+
|
1262
|
+
<title type="text">SAMPLE - 1974 Womens Schwinn Varsity 10 Speed Bike All Original
|
1263
|
+
w Fenders Light...</title>
|
1264
|
+
|
1265
|
+
<v:vertical>general</v:vertical>
|
1266
|
+
|
1267
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1268
|
+
|
1269
|
+
<v:item_id>4492261456855456117</v:item_id>
|
1270
|
+
|
1271
|
+
<v:location precision="zip">
|
1272
|
+
|
1273
|
+
<v:state>TN</v:state>
|
1274
|
+
|
1275
|
+
<v:country>United States</v:country>
|
1276
|
+
|
1277
|
+
<v:zip>37132</v:zip>
|
1278
|
+
|
1279
|
+
<v:distance>0</v:distance>
|
1280
|
+
|
1281
|
+
<v:city>Murfreesboro</v:city>
|
1282
|
+
|
1283
|
+
<v:lat precision="unknown">35.847750</v:lat>
|
1284
|
+
|
1285
|
+
<v:lon precision="unknown">-86.363590</v:lon>
|
1286
|
+
|
1287
|
+
<v:address></v:address>
|
1288
|
+
|
1289
|
+
</v:location>
|
1290
|
+
|
1291
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1292
|
+
|
1293
|
+
<v:currency type="text">USD</v:currency>
|
1294
|
+
|
1295
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/4492261456855456117/-/item_vehicle/bike?apikey="/>
|
1296
|
+
|
1297
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbbXRMZttJ2JlJ27Hw==/"/>
|
1298
|
+
|
1299
|
+
<link rel="alternate" type="text/html" title="1974 Womens Schwinn Varsity 10
|
1300
|
+
Speed Bike All Original w Fenders Light..." href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbbXRMZttJ2JlJ27Hw==/"/>
|
1301
|
+
|
1302
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1303
|
+
result" href="http://www.vast.com/ajax/report?id=4492261456855456117&category=item_vehicle/bike&apikey="/>
|
1304
|
+
|
1305
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1306
|
+
|
1307
|
+
<v:year type="number"></v:year>
|
1308
|
+
|
1309
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/4492261456855456117</v:image_url>
|
1310
|
+
|
1311
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/4492261456855456117</v:large_image_url>
|
1312
|
+
|
1313
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/4492261456855456117</v:tiny_image_url>
|
1314
|
+
|
1315
|
+
<v:image_count>1</v:image_count>
|
1316
|
+
|
1317
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1318
|
+
|
1319
|
+
<v:hosted type="boolean">no</v:hosted>
|
1320
|
+
|
1321
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1322
|
+
|
1323
|
+
<v:description type="text">1974 Schwinn Varsity Sport. It is all original and
|
1324
|
+
in great shape just look at the pictures. It has metal fenders a working generator
|
1325
|
+
and working lights front and tail. The original paint and decals are in great
|
1326
|
+
shape as well as the leather seat. Also included the original owners manual
|
1327
|
+
that came with this bicycle.</v:description>
|
1328
|
+
|
1329
|
+
<content type="html"><img src="http://img.vast.com/128x96/4492261456855456117"><ul><li><strong>description:</strong>1974
|
1330
|
+
Schwinn Varsity Sport. It is all original and in great shape just look at the
|
1331
|
+
pictures. It has metal fenders a working generator and working lights front
|
1332
|
+
and tail. The original paint and decals are in great shape as well as the leather
|
1333
|
+
seat. Also included the original owners manual that came with this bicycle.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1334
|
+
States</li><li><strong>state:</strong>TN</li><li><strong>zip:</strong>37132</li><li><strong>city:</strong>Murfreesboro</li></ul></content>
|
1335
|
+
|
1336
|
+
</entry>
|
1337
|
+
|
1338
|
+
<entry>
|
1339
|
+
|
1340
|
+
<id>http://data.vast.com/listings/-773648803556276606/-/item_vehicle/bike</id>
|
1341
|
+
|
1342
|
+
<updated>2011-08-08T09:05:20+02:00</updated>
|
1343
|
+
|
1344
|
+
<published>2011-07-06T09:04:19+02:00</published>
|
1345
|
+
|
1346
|
+
<author>
|
1347
|
+
|
1348
|
+
<name>www.sample.com</name>
|
1349
|
+
|
1350
|
+
</author>
|
1351
|
+
|
1352
|
+
<title type="text">SAMPLE - 20 MiniChopperCruiser</title>
|
1353
|
+
|
1354
|
+
<v:vertical>general</v:vertical>
|
1355
|
+
|
1356
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1357
|
+
|
1358
|
+
<v:item_id>-773648803556276606</v:item_id>
|
1359
|
+
|
1360
|
+
<v:location precision="zip">
|
1361
|
+
|
1362
|
+
<v:state>CA</v:state>
|
1363
|
+
|
1364
|
+
<v:country>United States</v:country>
|
1365
|
+
|
1366
|
+
<v:zip>93001</v:zip>
|
1367
|
+
|
1368
|
+
<v:distance>0</v:distance>
|
1369
|
+
|
1370
|
+
<v:city>Ventura</v:city>
|
1371
|
+
|
1372
|
+
<v:lat precision="unknown">34.293118</v:lat>
|
1373
|
+
|
1374
|
+
<v:lon precision="unknown">-119.294065</v:lon>
|
1375
|
+
|
1376
|
+
<v:address></v:address>
|
1377
|
+
|
1378
|
+
</v:location>
|
1379
|
+
|
1380
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1381
|
+
|
1382
|
+
<v:currency type="text">USD</v:currency>
|
1383
|
+
|
1384
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-773648803556276606/-/item_vehicle/bike?apikey="/>
|
1385
|
+
|
1386
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3URDUiDCZ1h3T3w==/"/>
|
1387
|
+
|
1388
|
+
<link rel="alternate" type="text/html" title="20 MiniChopperCruiser" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3URDUiDCZ1h3T3w==/"/>
|
1389
|
+
|
1390
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1391
|
+
result" href="http://www.vast.com/ajax/report?id=-773648803556276606&category=item_vehicle/bike&apikey="/>
|
1392
|
+
|
1393
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1394
|
+
|
1395
|
+
<v:year type="number"></v:year>
|
1396
|
+
|
1397
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-773648803556276606</v:image_url>
|
1398
|
+
|
1399
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-773648803556276606</v:large_image_url>
|
1400
|
+
|
1401
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-773648803556276606</v:tiny_image_url>
|
1402
|
+
|
1403
|
+
<v:image_count>1</v:image_count>
|
1404
|
+
|
1405
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1406
|
+
|
1407
|
+
<v:hosted type="boolean">no</v:hosted>
|
1408
|
+
|
1409
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1410
|
+
|
1411
|
+
<v:description type="text">This sweet kids bike is the nicest I''ve found to
|
1412
|
+
re-build. Steel tube forks 80 spoke rims custom paint Silver flash and comfortable....
|
1413
|
+
Come get-er''</v:description>
|
1414
|
+
|
1415
|
+
<content type="html"><img src="http://img.vast.com/128x96/-773648803556276606"><ul><li><strong>description:</strong>This
|
1416
|
+
sweet kids bike is the nicest I''ve found to re-build. Steel tube forks 80 spoke
|
1417
|
+
rims custom paint Silver flash and comfortable.... Come get-er''</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1418
|
+
States</li><li><strong>state:</strong>CA</li><li><strong>zip:</strong>93001</li><li><strong>city:</strong>Ventura</li></ul></content>
|
1419
|
+
|
1420
|
+
</entry>
|
1421
|
+
|
1422
|
+
<entry>
|
1423
|
+
|
1424
|
+
<id>http://data.vast.com/listings/-5638312655931235751/-/item_vehicle/bike</id>
|
1425
|
+
|
1426
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
1427
|
+
|
1428
|
+
<published>2011-08-04T09:04:55+02:00</published>
|
1429
|
+
|
1430
|
+
<author>
|
1431
|
+
|
1432
|
+
<name>www.sample.com</name>
|
1433
|
+
|
1434
|
+
</author>
|
1435
|
+
|
1436
|
+
<title type="text">SAMPLE - LITESPEED BELLA</title>
|
1437
|
+
|
1438
|
+
<v:vertical>general</v:vertical>
|
1439
|
+
|
1440
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1441
|
+
|
1442
|
+
<v:item_id>-5638312655931235751</v:item_id>
|
1443
|
+
|
1444
|
+
<v:location precision="address">
|
1445
|
+
|
1446
|
+
<v:state>CA</v:state>
|
1447
|
+
|
1448
|
+
<v:country>United States</v:country>
|
1449
|
+
|
1450
|
+
<v:zip>91606</v:zip>
|
1451
|
+
|
1452
|
+
<v:distance>0</v:distance>
|
1453
|
+
|
1454
|
+
<v:city>North Hollywood</v:city>
|
1455
|
+
|
1456
|
+
<v:lat precision="city">34.186304</v:lat>
|
1457
|
+
|
1458
|
+
<v:lon precision="city">-118.389143</v:lon>
|
1459
|
+
|
1460
|
+
<v:address>6307 Babcock Avenue</v:address>
|
1461
|
+
|
1462
|
+
</v:location>
|
1463
|
+
|
1464
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1465
|
+
|
1466
|
+
<v:currency type="text">USD</v:currency>
|
1467
|
+
|
1468
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-5638312655931235751/-/item_vehicle/bike?apikey="/>
|
1469
|
+
|
1470
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WdCAttmcC2CRmw==/"/>
|
1471
|
+
|
1472
|
+
<link rel="alternate" type="text/html" title="LITESPEED BELLA" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WdCAttmcC2CRmw==/"/>
|
1473
|
+
|
1474
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1475
|
+
result" href="http://www.vast.com/ajax/report?id=-5638312655931235751&category=item_vehicle/bike&apikey="/>
|
1476
|
+
|
1477
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1478
|
+
|
1479
|
+
<v:year type="number"></v:year>
|
1480
|
+
|
1481
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-5638312655931235751</v:image_url>
|
1482
|
+
|
1483
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-5638312655931235751</v:large_image_url>
|
1484
|
+
|
1485
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-5638312655931235751</v:tiny_image_url>
|
1486
|
+
|
1487
|
+
<v:image_count>1</v:image_count>
|
1488
|
+
|
1489
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1490
|
+
|
1491
|
+
<v:hosted type="boolean">no</v:hosted>
|
1492
|
+
|
1493
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1494
|
+
|
1495
|
+
<v:description type="text">Ladies Litespeed Bella Size small Like New - Hardly
|
1496
|
+
ridden Cost new 1500.00 added extras-computer</v:description>
|
1497
|
+
|
1498
|
+
<content type="html"><img src="http://img.vast.com/128x96/-5638312655931235751"><ul><li><strong>description:</strong>Ladies
|
1499
|
+
Litespeed Bella Size small Like New - Hardly ridden Cost new 1500.00 added extras-computer</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1500
|
+
States</li><li><strong>state:</strong>CA</li><li><strong>zip:</strong>91606</li><li><strong>city:</strong>North
|
1501
|
+
Hollywood</li></ul></content>
|
1502
|
+
|
1503
|
+
</entry>
|
1504
|
+
|
1505
|
+
<entry>
|
1506
|
+
|
1507
|
+
<id>http://data.vast.com/listings/-2828790551934852365/-/item_vehicle/bike</id>
|
1508
|
+
|
1509
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
1510
|
+
|
1511
|
+
<published>2011-07-22T09:04:42+02:00</published>
|
1512
|
+
|
1513
|
+
<author>
|
1514
|
+
|
1515
|
+
<name>www.sample.com</name>
|
1516
|
+
|
1517
|
+
</author>
|
1518
|
+
|
1519
|
+
<title type="text">SAMPLE - 2010 Trek 4 Series 4300 BlackRed 225</title>
|
1520
|
+
|
1521
|
+
<v:vertical>general</v:vertical>
|
1522
|
+
|
1523
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1524
|
+
|
1525
|
+
<v:item_id>-2828790551934852365</v:item_id>
|
1526
|
+
|
1527
|
+
<v:location precision="zip">
|
1528
|
+
|
1529
|
+
<v:state>PA</v:state>
|
1530
|
+
|
1531
|
+
<v:country>United States</v:country>
|
1532
|
+
|
1533
|
+
<v:zip>18091</v:zip>
|
1534
|
+
|
1535
|
+
<v:distance>0</v:distance>
|
1536
|
+
|
1537
|
+
<v:city>Wind Gap</v:city>
|
1538
|
+
|
1539
|
+
<v:lat precision="unknown">40.828784</v:lat>
|
1540
|
+
|
1541
|
+
<v:lon precision="unknown">-75.309836</v:lon>
|
1542
|
+
|
1543
|
+
<v:address></v:address>
|
1544
|
+
|
1545
|
+
</v:location>
|
1546
|
+
|
1547
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1548
|
+
|
1549
|
+
<v:currency type="text">USD</v:currency>
|
1550
|
+
|
1551
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-2828790551934852365/-/item_vehicle/bike?apikey="/>
|
1552
|
+
|
1553
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3VoaBw5m8BIlg2Q==/"/>
|
1554
|
+
|
1555
|
+
<link rel="alternate" type="text/html" title="2010 Trek 4 Series 4300 BlackRed
|
1556
|
+
225" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3VoaBw5m8BIlg2Q==/"/>
|
1557
|
+
|
1558
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1559
|
+
result" href="http://www.vast.com/ajax/report?id=-2828790551934852365&category=item_vehicle/bike&apikey="/>
|
1560
|
+
|
1561
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1562
|
+
|
1563
|
+
<v:year type="number"></v:year>
|
1564
|
+
|
1565
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-2828790551934852365</v:image_url>
|
1566
|
+
|
1567
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-2828790551934852365</v:large_image_url>
|
1568
|
+
|
1569
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-2828790551934852365</v:tiny_image_url>
|
1570
|
+
|
1571
|
+
<v:image_count>1</v:image_count>
|
1572
|
+
|
1573
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1574
|
+
|
1575
|
+
<v:hosted type="boolean">no</v:hosted>
|
1576
|
+
|
1577
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1578
|
+
|
1579
|
+
<v:description type="text">Awesome shape only ridden a few times.</v:description>
|
1580
|
+
|
1581
|
+
<content type="html"><img src="http://img.vast.com/128x96/-2828790551934852365"><ul><li><strong>description:</strong>Awesome
|
1582
|
+
shape only ridden a few times.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1583
|
+
States</li><li><strong>state:</strong>PA</li><li><strong>zip:</strong>18091</li><li><strong>city:</strong>Wind
|
1584
|
+
Gap</li></ul></content>
|
1585
|
+
|
1586
|
+
</entry>
|
1587
|
+
|
1588
|
+
<entry>
|
1589
|
+
|
1590
|
+
<id>http://data.vast.com/listings/-5777791708056535799/-/item_vehicle/bike</id>
|
1591
|
+
|
1592
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
1593
|
+
|
1594
|
+
<published>2011-07-28T09:04:49+02:00</published>
|
1595
|
+
|
1596
|
+
<author>
|
1597
|
+
|
1598
|
+
<name>www.sample.com</name>
|
1599
|
+
|
1600
|
+
</author>
|
1601
|
+
|
1602
|
+
<title type="text">SAMPLE - Cannondale ST400</title>
|
1603
|
+
|
1604
|
+
<v:vertical>general</v:vertical>
|
1605
|
+
|
1606
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1607
|
+
|
1608
|
+
<v:item_id>-5777791708056535799</v:item_id>
|
1609
|
+
|
1610
|
+
<v:location precision="zip">
|
1611
|
+
|
1612
|
+
<v:state>MD</v:state>
|
1613
|
+
|
1614
|
+
<v:country>United States</v:country>
|
1615
|
+
|
1616
|
+
<v:zip>20677</v:zip>
|
1617
|
+
|
1618
|
+
<v:distance>0</v:distance>
|
1619
|
+
|
1620
|
+
<v:city>Port Tobacco</v:city>
|
1621
|
+
|
1622
|
+
<v:lat precision="unknown">38.508349</v:lat>
|
1623
|
+
|
1624
|
+
<v:lon precision="unknown">-77.042380</v:lon>
|
1625
|
+
|
1626
|
+
<v:address></v:address>
|
1627
|
+
|
1628
|
+
</v:location>
|
1629
|
+
|
1630
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1631
|
+
|
1632
|
+
<v:currency type="text">USD</v:currency>
|
1633
|
+
|
1634
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-5777791708056535799/-/item_vehicle/bike?apikey="/>
|
1635
|
+
|
1636
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WRERyxODnZCRzA==/"/>
|
1637
|
+
|
1638
|
+
<link rel="alternate" type="text/html" title="Cannondale ST400" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WRERyxODnZCRzA==/"/>
|
1639
|
+
|
1640
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1641
|
+
result" href="http://www.vast.com/ajax/report?id=-5777791708056535799&category=item_vehicle/bike&apikey="/>
|
1642
|
+
|
1643
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1644
|
+
|
1645
|
+
<v:year type="number"></v:year>
|
1646
|
+
|
1647
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-5777791708056535799</v:image_url>
|
1648
|
+
|
1649
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-5777791708056535799</v:large_image_url>
|
1650
|
+
|
1651
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-5777791708056535799</v:tiny_image_url>
|
1652
|
+
|
1653
|
+
<v:image_count>1</v:image_count>
|
1654
|
+
|
1655
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1656
|
+
|
1657
|
+
<v:hosted type="boolean">no</v:hosted>
|
1658
|
+
|
1659
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1660
|
+
|
1661
|
+
<v:description type="text">This is a great vintage bike! Only a few scratches
|
1662
|
+
new Vittoria Zafffiro tires great touring bike and it is very clean.</v:description>
|
1663
|
+
|
1664
|
+
<content type="html"><img src="http://img.vast.com/128x96/-5777791708056535799"><ul><li><strong>description:</strong>This
|
1665
|
+
is a great vintage bike! Only a few scratches new Vittoria Zafffiro tires great
|
1666
|
+
touring bike and it is very clean.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1667
|
+
States</li><li><strong>state:</strong>MD</li><li><strong>zip:</strong>20677</li><li><strong>city:</strong>Port
|
1668
|
+
Tobacco</li></ul></content>
|
1669
|
+
|
1670
|
+
</entry>
|
1671
|
+
|
1672
|
+
<entry>
|
1673
|
+
|
1674
|
+
<id>http://data.vast.com/listings/-5585207250701382709/-/item_vehicle/bike</id>
|
1675
|
+
|
1676
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
1677
|
+
|
1678
|
+
<published>2011-07-22T09:04:47+02:00</published>
|
1679
|
+
|
1680
|
+
<author>
|
1681
|
+
|
1682
|
+
<name>www.sample.com</name>
|
1683
|
+
|
1684
|
+
</author>
|
1685
|
+
|
1686
|
+
<title type="text">SAMPLE - BH Global concept womens</title>
|
1687
|
+
|
1688
|
+
<v:vertical>general</v:vertical>
|
1689
|
+
|
1690
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1691
|
+
|
1692
|
+
<v:item_id>-5585207250701382709</v:item_id>
|
1693
|
+
|
1694
|
+
<v:location precision="zip">
|
1695
|
+
|
1696
|
+
<v:state>AZ</v:state>
|
1697
|
+
|
1698
|
+
<v:country>United States</v:country>
|
1699
|
+
|
1700
|
+
<v:zip>85283</v:zip>
|
1701
|
+
|
1702
|
+
<v:distance>0</v:distance>
|
1703
|
+
|
1704
|
+
<v:city>Tempe</v:city>
|
1705
|
+
|
1706
|
+
<v:lat precision="unknown">33.362760</v:lat>
|
1707
|
+
|
1708
|
+
<v:lon precision="unknown">-111.935340</v:lon>
|
1709
|
+
|
1710
|
+
<v:address></v:address>
|
1711
|
+
|
1712
|
+
</v:location>
|
1713
|
+
|
1714
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1715
|
+
|
1716
|
+
<v:currency type="text">USD</v:currency>
|
1717
|
+
|
1718
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-5585207250701382709/-/item_vehicle/bike?apikey="/>
|
1719
|
+
|
1720
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WZiWMWkxOwhhPA==/"/>
|
1721
|
+
|
1722
|
+
<link rel="alternate" type="text/html" title="BH Global concept womens" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WZiWMWkxOwhhPA==/"/>
|
1723
|
+
|
1724
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1725
|
+
result" href="http://www.vast.com/ajax/report?id=-5585207250701382709&category=item_vehicle/bike&apikey="/>
|
1726
|
+
|
1727
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1728
|
+
|
1729
|
+
<v:year type="number"></v:year>
|
1730
|
+
|
1731
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-5585207250701382709</v:image_url>
|
1732
|
+
|
1733
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-5585207250701382709</v:large_image_url>
|
1734
|
+
|
1735
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-5585207250701382709</v:tiny_image_url>
|
1736
|
+
|
1737
|
+
<v:image_count>1</v:image_count>
|
1738
|
+
|
1739
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1740
|
+
|
1741
|
+
<v:hosted type="boolean">no</v:hosted>
|
1742
|
+
|
1743
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1744
|
+
|
1745
|
+
<v:description type="text">14 lbs womens 52 Specifications Frame BH Global Concept
|
1746
|
+
carbon Fork BH Carbon Seatpost BH Carbon san marcos seat SHIMANO ULTEGRA components
|
1747
|
+
custom tires blue spokes will take 1000 obo GOOD condition Great deal need to
|
1748
|
+
sell fast email for more pictures or info</v:description>
|
1749
|
+
|
1750
|
+
<content type="html"><img src="http://img.vast.com/128x96/-5585207250701382709"><ul><li><strong>description:</strong>14
|
1751
|
+
lbs womens 52 Specifications Frame BH Global Concept carbon Fork BH Carbon Seatpost
|
1752
|
+
BH Carbon san marcos seat SHIMANO ULTEGRA components custom tires blue spokes
|
1753
|
+
will take 1000 obo GOOD condition Great deal need to sell fast email for more
|
1754
|
+
pictures or info</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1755
|
+
States</li><li><strong>state:</strong>AZ</li><li><strong>zip:</strong>85283</li><li><strong>city:</strong>Tempe</li></ul></content>
|
1756
|
+
|
1757
|
+
</entry>
|
1758
|
+
|
1759
|
+
<entry>
|
1760
|
+
|
1761
|
+
<id>http://data.vast.com/listings/7788227058271190879/-/item_vehicle/bike</id>
|
1762
|
+
|
1763
|
+
<updated>2011-08-08T09:05:20+02:00</updated>
|
1764
|
+
|
1765
|
+
<published>2011-07-06T09:04:17+02:00</published>
|
1766
|
+
|
1767
|
+
<author>
|
1768
|
+
|
1769
|
+
<name>www.sample.com</name>
|
1770
|
+
|
1771
|
+
</author>
|
1772
|
+
|
1773
|
+
<title type="text">SAMPLE - Vintage Schwinn Three Wheel Bike Trike</title>
|
1774
|
+
|
1775
|
+
<v:vertical>general</v:vertical>
|
1776
|
+
|
1777
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
1778
|
+
|
1779
|
+
<v:item_id>7788227058271190879</v:item_id>
|
1780
|
+
|
1781
|
+
<v:location precision="zip">
|
1782
|
+
|
1783
|
+
<v:state>CA</v:state>
|
1784
|
+
|
1785
|
+
<v:country>United States</v:country>
|
1786
|
+
|
1787
|
+
<v:zip>93001</v:zip>
|
1788
|
+
|
1789
|
+
<v:distance>0</v:distance>
|
1790
|
+
|
1791
|
+
<v:city>Ventura</v:city>
|
1792
|
+
|
1793
|
+
<v:lat precision="unknown">34.293118</v:lat>
|
1794
|
+
|
1795
|
+
<v:lon precision="unknown">-119.294065</v:lon>
|
1796
|
+
|
1797
|
+
<v:address></v:address>
|
1798
|
+
|
1799
|
+
</v:location>
|
1800
|
+
|
1801
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
1802
|
+
|
1803
|
+
<v:currency type="text">USD</v:currency>
|
1804
|
+
|
1805
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/7788227058271190879/-/item_vehicle/bike?apikey="/>
|
1806
|
+
|
1807
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3EYhmE5hhu8OBzw==/"/>
|
1808
|
+
|
1809
|
+
<link rel="alternate" type="text/html" title="Vintage Schwinn Three Wheel Bike
|
1810
|
+
Trike" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3EYhmE5hhu8OBzw==/"/>
|
1811
|
+
|
1812
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
1813
|
+
result" href="http://www.vast.com/ajax/report?id=7788227058271190879&category=item_vehicle/bike&apikey="/>
|
1814
|
+
|
1815
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
1816
|
+
|
1817
|
+
<v:year type="number"></v:year>
|
1818
|
+
|
1819
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/7788227058271190879</v:image_url>
|
1820
|
+
|
1821
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/7788227058271190879</v:large_image_url>
|
1822
|
+
|
1823
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/7788227058271190879</v:tiny_image_url>
|
1824
|
+
|
1825
|
+
<v:image_count>1</v:image_count>
|
1826
|
+
|
1827
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
1828
|
+
|
1829
|
+
<v:hosted type="boolean">no</v:hosted>
|
1830
|
+
|
1831
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
1832
|
+
|
1833
|
+
<v:description type="text">Well I found another Vintage Three Wheel Town and
|
1834
|
+
Country. Located under a rock right here in Ventura. This beauty will be re-built
|
1835
|
+
to model a Fire Truck Thank you to all FF''s. Similar to my Army Trike this
|
1836
|
+
will feature custom wood work paint and all parts will and currently are will
|
1837
|
+
be the original Schwinn parts. Buy it now and save! Thank you Love those Trikes.</v:description>
|
1838
|
+
|
1839
|
+
<content type="html"><img src="http://img.vast.com/128x96/7788227058271190879"><ul><li><strong>description:</strong>Well
|
1840
|
+
I found another Vintage Three Wheel Town and Country. Located under a rock right
|
1841
|
+
here in Ventura. This beauty will be re-built to model a Fire Truck Thank you
|
1842
|
+
to all FF''s. Similar to my Army Trike this will feature custom wood work paint
|
1843
|
+
and all parts will and currently are will be the original Schwinn parts. Buy
|
1844
|
+
it now and save! Thank you Love those Trikes.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
1845
|
+
States</li><li><strong>state:</strong>CA</li><li><strong>zip:</strong>93001</li><li><strong>city:</strong>Ventura</li></ul></content>
|
1846
|
+
|
1847
|
+
</entry>
|
1848
|
+
|
1849
|
+
<entry>
|
1850
|
+
|
1851
|
+
<id>http://data.vast.com/attributes/location/-/item_vehicle/bike</id>
|
1852
|
+
|
1853
|
+
<title type=''text''>SAMPLE - Location</title>
|
1854
|
+
|
1855
|
+
<updated>2011-08-12T15:40:14+02:00</updated>
|
1856
|
+
|
1857
|
+
<author>
|
1858
|
+
|
1859
|
+
<name>www.vast.com</name>
|
1860
|
+
|
1861
|
+
</author>
|
1862
|
+
|
1863
|
+
<v:attribute id="location" type="text">
|
1864
|
+
|
1865
|
+
<v:value id="Park-City--UT" count="108">Park City, UT</v:value>
|
1866
|
+
|
1867
|
+
<v:value id="New-York--NY" count="32">New York, NY</v:value>
|
1868
|
+
|
1869
|
+
<v:value id="Fullerton--CA" count="18">Fullerton, CA</v:value>
|
1870
|
+
|
1871
|
+
<v:value id="Los-Angeles--CA" count="18">Los Angeles, CA</v:value>
|
1872
|
+
|
1873
|
+
<v:value id="Birmingham--AL" count="15">Birmingham, AL</v:value>
|
1874
|
+
|
1875
|
+
<v:value id="Boulder--CO" count="8">Boulder, CO</v:value>
|
1876
|
+
|
1877
|
+
<v:value id="Salt-Lake-City--UT" count="8">Salt Lake City, UT</v:value>
|
1878
|
+
|
1879
|
+
<v:value id="Porter--TX" count="8">Porter, TX</v:value>
|
1880
|
+
|
1881
|
+
<v:value id="North-Bend--WA" count="7">North Bend, WA</v:value>
|
1882
|
+
|
1883
|
+
<v:value id="Seattle--WA" count="6">Seattle, WA</v:value>
|
1884
|
+
|
1885
|
+
<v:value id="Louisville--KY" count="6">Louisville, KY</v:value>
|
1886
|
+
|
1887
|
+
<v:value id="Orlando--FL" count="6">Orlando, FL</v:value>
|
1888
|
+
|
1889
|
+
<v:value id="Bridgeport--CT" count="6">Bridgeport, CT</v:value>
|
1890
|
+
|
1891
|
+
<v:value id="Milwaukee--WI" count="5">Milwaukee, WI</v:value>
|
1892
|
+
|
1893
|
+
<v:value id="San-Carlos--CA" count="5">San Carlos, CA</v:value>
|
1894
|
+
|
1895
|
+
<v:value id="Sherman--IL" count="5">Sherman, IL</v:value>
|
1896
|
+
|
1897
|
+
<v:value id="Northbrook--IL" count="5">Northbrook, IL</v:value>
|
1898
|
+
|
1899
|
+
<v:value id="Ventura--CA" count="5">Ventura, CA</v:value>
|
1900
|
+
|
1901
|
+
<v:value id="Trumbull--CT" count="5">Trumbull, CT</v:value>
|
1902
|
+
|
1903
|
+
<v:value id="Norwalk--CT" count="5">Norwalk, CT</v:value>
|
1904
|
+
|
1905
|
+
<v:value id="Washington--NY" count="5">Washington, NY</v:value>
|
1906
|
+
|
1907
|
+
<v:value id="Phoenix--AZ" count="4">Phoenix, AZ</v:value>
|
1908
|
+
|
1909
|
+
<v:value id="Denver--CO" count="4">Denver, CO</v:value>
|
1910
|
+
|
1911
|
+
<v:value id="New-Haven--CT" count="4">New Haven, CT</v:value>
|
1912
|
+
|
1913
|
+
<v:value id="Indianapolis--IN" count="4">Indianapolis, IN</v:value>
|
1914
|
+
|
1915
|
+
<v:value id="Surprise--AZ" count="4">Surprise, AZ</v:value>
|
1916
|
+
|
1917
|
+
<v:value id="Jacksonville--FL" count="4">Jacksonville, FL</v:value>
|
1918
|
+
|
1919
|
+
<v:value id="Colorado-Springs--CO" count="3">Colorado Springs, CO</v:value>
|
1920
|
+
|
1921
|
+
<v:value id="Portland--OR" count="3">Portland, OR</v:value>
|
1922
|
+
|
1923
|
+
<v:value id="Sandy-Hook--CT" count="3">Sandy Hook, CT</v:value>
|
1924
|
+
|
1925
|
+
<v:value id="Salem--OR" count="3">Salem, OR</v:value>
|
1926
|
+
|
1927
|
+
<v:value id="Reading--PA" count="3">Reading, PA</v:value>
|
1928
|
+
|
1929
|
+
<v:value id="Spokane--WA" count="3">Spokane, WA</v:value>
|
1930
|
+
|
1931
|
+
<v:value id="Rock-Hill--SC" count="3">Rock Hill, SC</v:value>
|
1932
|
+
|
1933
|
+
<v:value id="Waxahachie--TX" count="3">Waxahachie, TX</v:value>
|
1934
|
+
|
1935
|
+
<v:value id="Columbus--OH" count="3">Columbus, OH</v:value>
|
1936
|
+
|
1937
|
+
<v:value id="Sacramento--CA" count="3">Sacramento, CA</v:value>
|
1938
|
+
|
1939
|
+
<v:value id="Aurora--IL" count="3">Aurora, IL</v:value>
|
1940
|
+
|
1941
|
+
<v:value id="Bellingham--WA" count="3">Bellingham, WA</v:value>
|
1942
|
+
|
1943
|
+
<v:value id="North-Haven--CT" count="3">North Haven, CT</v:value>
|
1944
|
+
|
1945
|
+
<v:value id="Kingwood--TX" count="3">Kingwood, TX</v:value>
|
1946
|
+
|
1947
|
+
<v:value id="Atlanta--GA" count="3">Atlanta, GA</v:value>
|
1948
|
+
|
1949
|
+
<v:value id="Houston--TX" count="3">Houston, TX</v:value>
|
1950
|
+
|
1951
|
+
<v:value id="Ontario--CA" count="3">Ontario, CA</v:value>
|
1952
|
+
|
1953
|
+
<v:value id="Lincoln--NE" count="3">Lincoln, NE</v:value>
|
1954
|
+
|
1955
|
+
<v:value id="Other-CA" count="6">Other CA</v:value>
|
1956
|
+
|
1957
|
+
<v:value id="Other-PA" count="6">Other PA</v:value>
|
1958
|
+
|
1959
|
+
<v:value id="Other-IN" count="5">Other IN</v:value>
|
1960
|
+
|
1961
|
+
<v:value id="Other-NY" count="4">Other NY</v:value>
|
1962
|
+
|
1963
|
+
<v:value id="unknown" count="190">unknown</v:value>
|
1964
|
+
|
1965
|
+
</v:attribute>
|
1966
|
+
|
1967
|
+
<content type="html"><ul><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Park-City--UT">Park
|
1968
|
+
City, UT</a> 108</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=New-York--NY">New
|
1969
|
+
York, NY</a> 32</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Fullerton--CA">Fullerton,
|
1970
|
+
CA</a> 18</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Los-Angeles--CA">Los
|
1971
|
+
Angeles, CA</a> 18</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Birmingham--AL">Birmingham,
|
1972
|
+
AL</a> 15</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Boulder--CO">Boulder,
|
1973
|
+
CO</a> 8</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Salt-Lake-City--UT">Salt
|
1974
|
+
Lake City, UT</a> 8</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Porter--TX">Porter,
|
1975
|
+
TX</a> 8</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=North-Bend--WA">North
|
1976
|
+
Bend, WA</a> 7</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Seattle--WA">Seattle,
|
1977
|
+
WA</a> 6</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Louisville--KY">Louisville,
|
1978
|
+
KY</a> 6</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Orlando--FL">Orlando,
|
1979
|
+
FL</a> 6</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Bridgeport--CT">Bridgeport,
|
1980
|
+
CT</a> 6</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Milwaukee--WI">Milwaukee,
|
1981
|
+
WI</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=San-Carlos--CA">San
|
1982
|
+
Carlos, CA</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Sherman--IL">Sherman,
|
1983
|
+
IL</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Northbrook--IL">Northbrook,
|
1984
|
+
IL</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Ventura--CA">Ventura,
|
1985
|
+
CA</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Trumbull--CT">Trumbull,
|
1986
|
+
CT</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Norwalk--CT">Norwalk,
|
1987
|
+
CT</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Washington--NY">Washington,
|
1988
|
+
NY</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Phoenix--AZ">Phoenix,
|
1989
|
+
AZ</a> 4</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Denver--CO">Denver,
|
1990
|
+
CO</a> 4</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=New-Haven--CT">New
|
1991
|
+
Haven, CT</a> 4</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Indianapolis--IN">Indianapolis,
|
1992
|
+
IN</a> 4</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Surprise--AZ">Surprise,
|
1993
|
+
AZ</a> 4</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Jacksonville--FL">Jacksonville,
|
1994
|
+
FL</a> 4</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Colorado-Springs--CO">Colorado
|
1995
|
+
Springs, CO</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Portland--OR">Portland,
|
1996
|
+
OR</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Sandy-Hook--CT">Sandy
|
1997
|
+
Hook, CT</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Salem--OR">Salem,
|
1998
|
+
OR</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Reading--PA">Reading,
|
1999
|
+
PA</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Spokane--WA">Spokane,
|
2000
|
+
WA</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Rock-Hill--SC">Rock
|
2001
|
+
Hill, SC</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Waxahachie--TX">Waxahachie,
|
2002
|
+
TX</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Columbus--OH">Columbus,
|
2003
|
+
OH</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Sacramento--CA">Sacramento,
|
2004
|
+
CA</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Aurora--IL">Aurora,
|
2005
|
+
IL</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Bellingham--WA">Bellingham,
|
2006
|
+
WA</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=North-Haven--CT">North
|
2007
|
+
Haven, CT</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Kingwood--TX">Kingwood,
|
2008
|
+
TX</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Atlanta--GA">Atlanta,
|
2009
|
+
GA</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Houston--TX">Houston,
|
2010
|
+
TX</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Ontario--CA">Ontario,
|
2011
|
+
CA</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Lincoln--NE">Lincoln,
|
2012
|
+
NE</a> 3</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Other-CA">Other
|
2013
|
+
CA</a> 6</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Other-PA">Other
|
2014
|
+
PA</a> 6</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Other-IN">Other
|
2015
|
+
IN</a> 5</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=Other-NY">Other
|
2016
|
+
NY</a> 4</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&location=unknown">unknown</a>
|
2017
|
+
190</li></ul></content>
|
2018
|
+
|
2019
|
+
</entry>
|
2020
|
+
|
2021
|
+
<entry>
|
2022
|
+
|
2023
|
+
<id>http://data.vast.com/attributes/price/-/item_vehicle/bike</id>
|
2024
|
+
|
2025
|
+
<title type=''text''>SAMPLE - Price</title>
|
2026
|
+
|
2027
|
+
<updated>2011-08-12T15:40:13+02:00</updated>
|
2028
|
+
|
2029
|
+
<author>
|
2030
|
+
|
2031
|
+
<name>www.vast.com</name>
|
2032
|
+
|
2033
|
+
</author>
|
2034
|
+
|
2035
|
+
<v:attribute id="price" type="money" symbol="$" currency="USD" lower="0" upper="3001"
|
2036
|
+
median="500">
|
2037
|
+
|
2038
|
+
<v:value id="0-1000" count="727" min="0" max="1000">less than $1,001</v:value>
|
2039
|
+
|
2040
|
+
<v:value id="1001-2000" count="98" min="1001" max="2000">$1,001 - $2,000</v:value>
|
2041
|
+
|
2042
|
+
<v:value id="2001-3000" count="44" min="2001" max="3000">$2,001 - $3,000</v:value>
|
2043
|
+
|
2044
|
+
<v:value id="3001-max" count="36" min="3001" max="max">$3,001+</v:value>
|
2045
|
+
|
2046
|
+
<v:value id="unknown" count="45" >unknown</v:value>
|
2047
|
+
|
2048
|
+
</v:attribute>
|
2049
|
+
|
2050
|
+
<content type="html"><ul><li><a href="/listings/-/item_vehicle/bike?include=attributes&price=0-1000">less
|
2051
|
+
than $1,001</a> 727</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&price=1001-2000">$1,001
|
2052
|
+
- $2,000</a> 98</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&price=2001-3000">$2,001
|
2053
|
+
- $3,000</a> 44</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&price=3001-max">$3,001+</a>
|
2054
|
+
36</li><li><a href="/listings/-/item_vehicle/bike?include=attributes&price=unknown">unknown</a>
|
2055
|
+
45</li></ul></content>
|
2056
|
+
|
2057
|
+
</entry>
|
2058
|
+
|
2059
|
+
<entry>
|
2060
|
+
|
2061
|
+
<id>http://data.vast.com/attributes/category/-/item_vehicle/bike</id>
|
2062
|
+
|
2063
|
+
<title type=''text''>SAMPLE - Category</title>
|
2064
|
+
|
2065
|
+
<updated>2011-08-12T15:40:12+02:00</updated>
|
2066
|
+
|
2067
|
+
<author>
|
2068
|
+
|
2069
|
+
<name>www.vast.com</name>
|
2070
|
+
|
2071
|
+
</author>
|
2072
|
+
|
2073
|
+
<v:attribute id="category" type="text">
|
2074
|
+
|
2075
|
+
</v:attribute>
|
2076
|
+
|
2077
|
+
<content type="html"><ul></ul></content>
|
2078
|
+
|
2079
|
+
</entry>
|
2080
|
+
|
2081
|
+
</feed>
|
2082
|
+
|
2083
|
+
'
|
2084
|
+
http_version: '1.1'
|
2085
|
+
- !ruby/struct:VCR::HTTPInteraction
|
2086
|
+
request: !ruby/struct:VCR::Request
|
2087
|
+
method: :get
|
2088
|
+
uri: http://data.vast.com:80/attributes/-/item_vehicle/bike?include=listings
|
2089
|
+
body: !!null
|
2090
|
+
headers: !!null
|
2091
|
+
response: !ruby/struct:VCR::Response
|
2092
|
+
status: !ruby/struct:VCR::ResponseStatus
|
2093
|
+
code: 200
|
2094
|
+
message: OK
|
2095
|
+
headers:
|
2096
|
+
date:
|
2097
|
+
- Fri, 12 Aug 2011 14:04:26 GMT
|
2098
|
+
server:
|
2099
|
+
- Apache
|
2100
|
+
x-powered-by:
|
2101
|
+
- PHP/5.2.14
|
2102
|
+
content-type:
|
2103
|
+
- text/xml; charset=utf-8
|
2104
|
+
accept-ranges:
|
2105
|
+
- bytes
|
2106
|
+
cache-control:
|
2107
|
+
- private, max-age=300
|
2108
|
+
age:
|
2109
|
+
- '0'
|
2110
|
+
expires:
|
2111
|
+
- Fri, 12 Aug 2011 14:09:26 GMT
|
2112
|
+
transfer-encoding:
|
2113
|
+
- chunked
|
2114
|
+
body: ! '<?xml version="1.0" encoding="utf-8"?>
|
2115
|
+
|
2116
|
+
<feed xmlns=''http://www.w3.org/2005/Atom'' xmlns:o=''http://a9.com/-/spec/opensearchrss/1.0/''
|
2117
|
+
xmlns:v=''http://data.vast.com/ns/attributes''>
|
2118
|
+
|
2119
|
+
<id>http://data.vast.com/attributes/-/item_vehicle/bike?include=listings</id>
|
2120
|
+
|
2121
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/attributes/-/item_vehicle/bike?include=listings"/>
|
2122
|
+
|
2123
|
+
<updated>2011-08-12T16:02:40+02:00</updated>
|
2124
|
+
|
2125
|
+
<title type="text">SAMPLE - Bicycles For Sale</title>
|
2126
|
+
|
2127
|
+
<subtitle>These are sample Vast API results. These results may only be used
|
2128
|
+
for testing and demonstrating applications and components based on the Vast
|
2129
|
+
API. All other uses are prohibited. For results suitable for other uses, including
|
2130
|
+
commercial use, please include your API key using the apikey parameter. You
|
2131
|
+
may apply for an API key at http://www.vast.com/partner</subtitle>
|
2132
|
+
|
2133
|
+
<logo>http://www.vast.com/resources/vast_v3/images/vast_logo.jpg</logo>
|
2134
|
+
|
2135
|
+
<o:totalResults>950</o:totalResults>
|
2136
|
+
|
2137
|
+
<o:startIndex>1</o:startIndex>
|
2138
|
+
|
2139
|
+
<o:itemsPerPage>10</o:itemsPerPage>
|
2140
|
+
|
2141
|
+
<o:Query xmlns:v="http://data.vast.com/ns/search" role="request" v:range="50"
|
2142
|
+
startIndex="1" totalResults="10" v:feed="attributes" v:category="item_vehicle,bike"
|
2143
|
+
/>
|
2144
|
+
|
2145
|
+
<v:stem/>
|
2146
|
+
|
2147
|
+
<v:extra/>
|
2148
|
+
|
2149
|
+
<v:site_count>8</v:site_count>
|
2150
|
+
|
2151
|
+
<v:location/>
|
2152
|
+
|
2153
|
+
<entry>
|
2154
|
+
|
2155
|
+
<id>http://data.vast.com/attributes/location/-/item_vehicle/bike</id>
|
2156
|
+
|
2157
|
+
<title type=''text''>SAMPLE - Location</title>
|
2158
|
+
|
2159
|
+
<updated>2011-08-12T16:02:40+02:00</updated>
|
2160
|
+
|
2161
|
+
<author>
|
2162
|
+
|
2163
|
+
<name>www.vast.com</name>
|
2164
|
+
|
2165
|
+
</author>
|
2166
|
+
|
2167
|
+
<v:attribute id="location" type="text">
|
2168
|
+
|
2169
|
+
<v:value id="Park-City--UT" count="108">Park City, UT</v:value>
|
2170
|
+
|
2171
|
+
<v:value id="New-York--NY" count="32">New York, NY</v:value>
|
2172
|
+
|
2173
|
+
<v:value id="Fullerton--CA" count="18">Fullerton, CA</v:value>
|
2174
|
+
|
2175
|
+
<v:value id="Los-Angeles--CA" count="18">Los Angeles, CA</v:value>
|
2176
|
+
|
2177
|
+
<v:value id="Birmingham--AL" count="15">Birmingham, AL</v:value>
|
2178
|
+
|
2179
|
+
<v:value id="Boulder--CO" count="8">Boulder, CO</v:value>
|
2180
|
+
|
2181
|
+
<v:value id="Salt-Lake-City--UT" count="8">Salt Lake City, UT</v:value>
|
2182
|
+
|
2183
|
+
<v:value id="Porter--TX" count="8">Porter, TX</v:value>
|
2184
|
+
|
2185
|
+
<v:value id="North-Bend--WA" count="7">North Bend, WA</v:value>
|
2186
|
+
|
2187
|
+
<v:value id="Seattle--WA" count="6">Seattle, WA</v:value>
|
2188
|
+
|
2189
|
+
<v:value id="Louisville--KY" count="6">Louisville, KY</v:value>
|
2190
|
+
|
2191
|
+
<v:value id="Orlando--FL" count="6">Orlando, FL</v:value>
|
2192
|
+
|
2193
|
+
<v:value id="Bridgeport--CT" count="6">Bridgeport, CT</v:value>
|
2194
|
+
|
2195
|
+
<v:value id="Milwaukee--WI" count="5">Milwaukee, WI</v:value>
|
2196
|
+
|
2197
|
+
<v:value id="San-Carlos--CA" count="5">San Carlos, CA</v:value>
|
2198
|
+
|
2199
|
+
<v:value id="Sherman--IL" count="5">Sherman, IL</v:value>
|
2200
|
+
|
2201
|
+
<v:value id="Northbrook--IL" count="5">Northbrook, IL</v:value>
|
2202
|
+
|
2203
|
+
<v:value id="Ventura--CA" count="5">Ventura, CA</v:value>
|
2204
|
+
|
2205
|
+
<v:value id="Trumbull--CT" count="5">Trumbull, CT</v:value>
|
2206
|
+
|
2207
|
+
<v:value id="Norwalk--CT" count="5">Norwalk, CT</v:value>
|
2208
|
+
|
2209
|
+
<v:value id="Washington--NY" count="5">Washington, NY</v:value>
|
2210
|
+
|
2211
|
+
<v:value id="Phoenix--AZ" count="4">Phoenix, AZ</v:value>
|
2212
|
+
|
2213
|
+
<v:value id="Denver--CO" count="4">Denver, CO</v:value>
|
2214
|
+
|
2215
|
+
<v:value id="New-Haven--CT" count="4">New Haven, CT</v:value>
|
2216
|
+
|
2217
|
+
<v:value id="Indianapolis--IN" count="4">Indianapolis, IN</v:value>
|
2218
|
+
|
2219
|
+
<v:value id="Surprise--AZ" count="4">Surprise, AZ</v:value>
|
2220
|
+
|
2221
|
+
<v:value id="Jacksonville--FL" count="4">Jacksonville, FL</v:value>
|
2222
|
+
|
2223
|
+
<v:value id="Colorado-Springs--CO" count="3">Colorado Springs, CO</v:value>
|
2224
|
+
|
2225
|
+
<v:value id="Portland--OR" count="3">Portland, OR</v:value>
|
2226
|
+
|
2227
|
+
<v:value id="Sandy-Hook--CT" count="3">Sandy Hook, CT</v:value>
|
2228
|
+
|
2229
|
+
<v:value id="Salem--OR" count="3">Salem, OR</v:value>
|
2230
|
+
|
2231
|
+
<v:value id="Reading--PA" count="3">Reading, PA</v:value>
|
2232
|
+
|
2233
|
+
<v:value id="Spokane--WA" count="3">Spokane, WA</v:value>
|
2234
|
+
|
2235
|
+
<v:value id="Rock-Hill--SC" count="3">Rock Hill, SC</v:value>
|
2236
|
+
|
2237
|
+
<v:value id="Waxahachie--TX" count="3">Waxahachie, TX</v:value>
|
2238
|
+
|
2239
|
+
<v:value id="Columbus--OH" count="3">Columbus, OH</v:value>
|
2240
|
+
|
2241
|
+
<v:value id="Sacramento--CA" count="3">Sacramento, CA</v:value>
|
2242
|
+
|
2243
|
+
<v:value id="Aurora--IL" count="3">Aurora, IL</v:value>
|
2244
|
+
|
2245
|
+
<v:value id="Bellingham--WA" count="3">Bellingham, WA</v:value>
|
2246
|
+
|
2247
|
+
<v:value id="North-Haven--CT" count="3">North Haven, CT</v:value>
|
2248
|
+
|
2249
|
+
<v:value id="Kingwood--TX" count="3">Kingwood, TX</v:value>
|
2250
|
+
|
2251
|
+
<v:value id="Atlanta--GA" count="3">Atlanta, GA</v:value>
|
2252
|
+
|
2253
|
+
<v:value id="Houston--TX" count="3">Houston, TX</v:value>
|
2254
|
+
|
2255
|
+
<v:value id="Ontario--CA" count="3">Ontario, CA</v:value>
|
2256
|
+
|
2257
|
+
<v:value id="Lincoln--NE" count="3">Lincoln, NE</v:value>
|
2258
|
+
|
2259
|
+
<v:value id="Other-CA" count="6">Other CA</v:value>
|
2260
|
+
|
2261
|
+
<v:value id="Other-PA" count="6">Other PA</v:value>
|
2262
|
+
|
2263
|
+
<v:value id="Other-IN" count="5">Other IN</v:value>
|
2264
|
+
|
2265
|
+
<v:value id="Other-NY" count="4">Other NY</v:value>
|
2266
|
+
|
2267
|
+
<v:value id="unknown" count="190">unknown</v:value>
|
2268
|
+
|
2269
|
+
</v:attribute>
|
2270
|
+
|
2271
|
+
<content type="html"><ul><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Park-City--UT">Park
|
2272
|
+
City, UT</a> 108</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=New-York--NY">New
|
2273
|
+
York, NY</a> 32</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Fullerton--CA">Fullerton,
|
2274
|
+
CA</a> 18</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Los-Angeles--CA">Los
|
2275
|
+
Angeles, CA</a> 18</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Birmingham--AL">Birmingham,
|
2276
|
+
AL</a> 15</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Boulder--CO">Boulder,
|
2277
|
+
CO</a> 8</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Salt-Lake-City--UT">Salt
|
2278
|
+
Lake City, UT</a> 8</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Porter--TX">Porter,
|
2279
|
+
TX</a> 8</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=North-Bend--WA">North
|
2280
|
+
Bend, WA</a> 7</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Seattle--WA">Seattle,
|
2281
|
+
WA</a> 6</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Louisville--KY">Louisville,
|
2282
|
+
KY</a> 6</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Orlando--FL">Orlando,
|
2283
|
+
FL</a> 6</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Bridgeport--CT">Bridgeport,
|
2284
|
+
CT</a> 6</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Milwaukee--WI">Milwaukee,
|
2285
|
+
WI</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=San-Carlos--CA">San
|
2286
|
+
Carlos, CA</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Sherman--IL">Sherman,
|
2287
|
+
IL</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Northbrook--IL">Northbrook,
|
2288
|
+
IL</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Ventura--CA">Ventura,
|
2289
|
+
CA</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Trumbull--CT">Trumbull,
|
2290
|
+
CT</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Norwalk--CT">Norwalk,
|
2291
|
+
CT</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Washington--NY">Washington,
|
2292
|
+
NY</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Phoenix--AZ">Phoenix,
|
2293
|
+
AZ</a> 4</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Denver--CO">Denver,
|
2294
|
+
CO</a> 4</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=New-Haven--CT">New
|
2295
|
+
Haven, CT</a> 4</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Indianapolis--IN">Indianapolis,
|
2296
|
+
IN</a> 4</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Surprise--AZ">Surprise,
|
2297
|
+
AZ</a> 4</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Jacksonville--FL">Jacksonville,
|
2298
|
+
FL</a> 4</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Colorado-Springs--CO">Colorado
|
2299
|
+
Springs, CO</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Portland--OR">Portland,
|
2300
|
+
OR</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Sandy-Hook--CT">Sandy
|
2301
|
+
Hook, CT</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Salem--OR">Salem,
|
2302
|
+
OR</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Reading--PA">Reading,
|
2303
|
+
PA</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Spokane--WA">Spokane,
|
2304
|
+
WA</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Rock-Hill--SC">Rock
|
2305
|
+
Hill, SC</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Waxahachie--TX">Waxahachie,
|
2306
|
+
TX</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Columbus--OH">Columbus,
|
2307
|
+
OH</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Sacramento--CA">Sacramento,
|
2308
|
+
CA</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Aurora--IL">Aurora,
|
2309
|
+
IL</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Bellingham--WA">Bellingham,
|
2310
|
+
WA</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=North-Haven--CT">North
|
2311
|
+
Haven, CT</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Kingwood--TX">Kingwood,
|
2312
|
+
TX</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Atlanta--GA">Atlanta,
|
2313
|
+
GA</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Houston--TX">Houston,
|
2314
|
+
TX</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Ontario--CA">Ontario,
|
2315
|
+
CA</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Lincoln--NE">Lincoln,
|
2316
|
+
NE</a> 3</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Other-CA">Other
|
2317
|
+
CA</a> 6</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Other-PA">Other
|
2318
|
+
PA</a> 6</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Other-IN">Other
|
2319
|
+
IN</a> 5</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=Other-NY">Other
|
2320
|
+
NY</a> 4</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&location=unknown">unknown</a>
|
2321
|
+
190</li></ul></content>
|
2322
|
+
|
2323
|
+
</entry>
|
2324
|
+
|
2325
|
+
<entry>
|
2326
|
+
|
2327
|
+
<id>http://data.vast.com/attributes/price/-/item_vehicle/bike</id>
|
2328
|
+
|
2329
|
+
<title type=''text''>SAMPLE - Price</title>
|
2330
|
+
|
2331
|
+
<updated>2011-08-12T16:02:39+02:00</updated>
|
2332
|
+
|
2333
|
+
<author>
|
2334
|
+
|
2335
|
+
<name>www.vast.com</name>
|
2336
|
+
|
2337
|
+
</author>
|
2338
|
+
|
2339
|
+
<v:attribute id="price" type="money" symbol="$" currency="USD" lower="0" upper="3001"
|
2340
|
+
median="500">
|
2341
|
+
|
2342
|
+
<v:value id="0-1000" count="727" min="0" max="1000">less than $1,001</v:value>
|
2343
|
+
|
2344
|
+
<v:value id="1001-2000" count="98" min="1001" max="2000">$1,001 - $2,000</v:value>
|
2345
|
+
|
2346
|
+
<v:value id="2001-3000" count="44" min="2001" max="3000">$2,001 - $3,000</v:value>
|
2347
|
+
|
2348
|
+
<v:value id="3001-max" count="36" min="3001" max="max">$3,001+</v:value>
|
2349
|
+
|
2350
|
+
<v:value id="unknown" count="45" >unknown</v:value>
|
2351
|
+
|
2352
|
+
</v:attribute>
|
2353
|
+
|
2354
|
+
<content type="html"><ul><li><a href="/attributes/-/item_vehicle/bike?include=listings&price=0-1000">less
|
2355
|
+
than $1,001</a> 727</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&price=1001-2000">$1,001
|
2356
|
+
- $2,000</a> 98</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&price=2001-3000">$2,001
|
2357
|
+
- $3,000</a> 44</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&price=3001-max">$3,001+</a>
|
2358
|
+
36</li><li><a href="/attributes/-/item_vehicle/bike?include=listings&price=unknown">unknown</a>
|
2359
|
+
45</li></ul></content>
|
2360
|
+
|
2361
|
+
</entry>
|
2362
|
+
|
2363
|
+
<entry>
|
2364
|
+
|
2365
|
+
<id>http://data.vast.com/attributes/category/-/item_vehicle/bike</id>
|
2366
|
+
|
2367
|
+
<title type=''text''>SAMPLE - Category</title>
|
2368
|
+
|
2369
|
+
<updated>2011-08-12T16:02:38+02:00</updated>
|
2370
|
+
|
2371
|
+
<author>
|
2372
|
+
|
2373
|
+
<name>www.vast.com</name>
|
2374
|
+
|
2375
|
+
</author>
|
2376
|
+
|
2377
|
+
<v:attribute id="category" type="text">
|
2378
|
+
|
2379
|
+
</v:attribute>
|
2380
|
+
|
2381
|
+
<content type="html"><ul></ul></content>
|
2382
|
+
|
2383
|
+
</entry>
|
2384
|
+
|
2385
|
+
<entry>
|
2386
|
+
|
2387
|
+
<id>http://data.vast.com/listings/-1184630917991775617/-/item_vehicle/bike</id>
|
2388
|
+
|
2389
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
2390
|
+
|
2391
|
+
<published>2011-07-08T09:04:27+02:00</published>
|
2392
|
+
|
2393
|
+
<author>
|
2394
|
+
|
2395
|
+
<name>www.sample.com</name>
|
2396
|
+
|
2397
|
+
</author>
|
2398
|
+
|
2399
|
+
<title type="text">SAMPLE - 93 Kestrel CSX MTB</title>
|
2400
|
+
|
2401
|
+
<v:vertical>general</v:vertical>
|
2402
|
+
|
2403
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
2404
|
+
|
2405
|
+
<v:item_id>-1184630917991775617</v:item_id>
|
2406
|
+
|
2407
|
+
<v:location precision="address">
|
2408
|
+
|
2409
|
+
<v:state>FL</v:state>
|
2410
|
+
|
2411
|
+
<v:country>United States</v:country>
|
2412
|
+
|
2413
|
+
<v:zip>33309</v:zip>
|
2414
|
+
|
2415
|
+
<v:distance>0</v:distance>
|
2416
|
+
|
2417
|
+
<v:city>Oakland Park</v:city>
|
2418
|
+
|
2419
|
+
<v:lat precision="city">26.183096</v:lat>
|
2420
|
+
|
2421
|
+
<v:lon precision="city">-80.173925</v:lon>
|
2422
|
+
|
2423
|
+
<v:address>721 NW 36th Street</v:address>
|
2424
|
+
|
2425
|
+
</v:location>
|
2426
|
+
|
2427
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
2428
|
+
|
2429
|
+
<v:currency type="text">USD</v:currency>
|
2430
|
+
|
2431
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-1184630917991775617/-/item_vehicle/bike?apikey="/>
|
2432
|
+
|
2433
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3W7hNA8scyxGdsQ==/"/>
|
2434
|
+
|
2435
|
+
<link rel="alternate" type="text/html" title="93 Kestrel CSX MTB" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3W7hNA8scyxGdsQ==/"/>
|
2436
|
+
|
2437
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
2438
|
+
result" href="http://www.vast.com/ajax/report?id=-1184630917991775617&category=item_vehicle/bike&apikey="/>
|
2439
|
+
|
2440
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
2441
|
+
|
2442
|
+
<v:year type="number"></v:year>
|
2443
|
+
|
2444
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-1184630917991775617</v:image_url>
|
2445
|
+
|
2446
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-1184630917991775617</v:large_image_url>
|
2447
|
+
|
2448
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-1184630917991775617</v:tiny_image_url>
|
2449
|
+
|
2450
|
+
<v:image_count>1</v:image_count>
|
2451
|
+
|
2452
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
2453
|
+
|
2454
|
+
<v:hosted type="boolean">no</v:hosted>
|
2455
|
+
|
2456
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
2457
|
+
|
2458
|
+
<v:description type="text">Circa 1993 19.5 Kestrel CSX Carbon Fiber Hard Tail
|
2459
|
+
Frame Black/Green Ritchey Logic Cantilever Brakes Pads Levers Ritchey Vantage
|
2460
|
+
Comp 32-hole Rims Ritchey Seat Post Shimano Deore XT Derailleurs Hubs Thumb
|
2461
|
+
Shifters Shimano Deore XT FC-M730 Cranks 175mm Shimano SG Superglide Chainwheels
|
2462
|
+
Tioga Avenger DSL Headset Tioga Avenger T-Bone Super Lite Neck Tioga Avenger
|
2463
|
+
DL-2000 Bars GT Saddle Needs tuneup and rear tire sidewall blowout Shipping
|
2464
|
+
not included</v:description>
|
2465
|
+
|
2466
|
+
<content type="html"><img src="http://img.vast.com/128x96/-1184630917991775617"><ul><li><strong>description:</strong>Circa
|
2467
|
+
1993 19.5 Kestrel CSX Carbon Fiber Hard Tail Frame Black/Green Ritchey Logic
|
2468
|
+
Cantilever Brakes Pads Levers Ritchey Vantage Comp 32-hole Rims Ritchey Seat
|
2469
|
+
Post Shimano Deore XT Derailleurs Hubs Thumb Shifters Shimano Deore XT FC-M730
|
2470
|
+
Cranks 175mm Shimano SG Superglide Chainwheels Tioga Avenger DSL Headset Tioga
|
2471
|
+
Avenger T-Bone Super Lite Neck Tioga Avenger DL-2000 Bars GT Saddle Needs tuneup
|
2472
|
+
and rear tire sidewall blowout Shipping not included</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
2473
|
+
States</li><li><strong>state:</strong>FL</li><li><strong>zip:</strong>33309</li><li><strong>city:</strong>Oakland
|
2474
|
+
Park</li></ul></content>
|
2475
|
+
|
2476
|
+
</entry>
|
2477
|
+
|
2478
|
+
<entry>
|
2479
|
+
|
2480
|
+
<id>http://data.vast.com/listings/-7613361941507880488/-/item_vehicle/bike</id>
|
2481
|
+
|
2482
|
+
<updated>2011-08-08T09:05:20+02:00</updated>
|
2483
|
+
|
2484
|
+
<published>2011-07-08T09:04:23+02:00</published>
|
2485
|
+
|
2486
|
+
<author>
|
2487
|
+
|
2488
|
+
<name>www.sample.com</name>
|
2489
|
+
|
2490
|
+
</author>
|
2491
|
+
|
2492
|
+
<title type="text">SAMPLE - Schwinn Super Le Tour 122</title>
|
2493
|
+
|
2494
|
+
<v:vertical>general</v:vertical>
|
2495
|
+
|
2496
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
2497
|
+
|
2498
|
+
<v:item_id>-7613361941507880488</v:item_id>
|
2499
|
+
|
2500
|
+
<v:location precision="zip">
|
2501
|
+
|
2502
|
+
<v:state>MN</v:state>
|
2503
|
+
|
2504
|
+
<v:country>United States</v:country>
|
2505
|
+
|
2506
|
+
<v:zip>55424</v:zip>
|
2507
|
+
|
2508
|
+
<v:distance>0</v:distance>
|
2509
|
+
|
2510
|
+
<v:city>Minneapolis</v:city>
|
2511
|
+
|
2512
|
+
<v:lat precision="unknown">44.905616</v:lat>
|
2513
|
+
|
2514
|
+
<v:lon precision="unknown">-93.340476</v:lon>
|
2515
|
+
|
2516
|
+
<v:address></v:address>
|
2517
|
+
|
2518
|
+
</v:location>
|
2519
|
+
|
2520
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
2521
|
+
|
2522
|
+
<v:currency type="text">USD</v:currency>
|
2523
|
+
|
2524
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-7613361941507880488/-/item_vehicle/bike?apikey="/>
|
2525
|
+
|
2526
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3UdsA28S5MYg0iA==/"/>
|
2527
|
+
|
2528
|
+
<link rel="alternate" type="text/html" title="Schwinn Super Le Tour 122" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3UdsA28S5MYg0iA==/"/>
|
2529
|
+
|
2530
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
2531
|
+
result" href="http://www.vast.com/ajax/report?id=-7613361941507880488&category=item_vehicle/bike&apikey="/>
|
2532
|
+
|
2533
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
2534
|
+
|
2535
|
+
<v:year type="number"></v:year>
|
2536
|
+
|
2537
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-7613361941507880488</v:image_url>
|
2538
|
+
|
2539
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-7613361941507880488</v:large_image_url>
|
2540
|
+
|
2541
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-7613361941507880488</v:tiny_image_url>
|
2542
|
+
|
2543
|
+
<v:image_count>1</v:image_count>
|
2544
|
+
|
2545
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
2546
|
+
|
2547
|
+
<v:hosted type="boolean">no</v:hosted>
|
2548
|
+
|
2549
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
2550
|
+
|
2551
|
+
<v:description type="text">Nice 1978 bike. One owner stored indoors since it
|
2552
|
+
was purchased. Includes new Schwinn HP Sport tires Blackburn rack Zefal air
|
2553
|
+
pump and other original accessories. 285 or best.</v:description>
|
2554
|
+
|
2555
|
+
<content type="html"><img src="http://img.vast.com/128x96/-7613361941507880488"><ul><li><strong>description:</strong>Nice
|
2556
|
+
1978 bike. One owner stored indoors since it was purchased. Includes new Schwinn
|
2557
|
+
HP Sport tires Blackburn rack Zefal air pump and other original accessories.
|
2558
|
+
285 or best.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
2559
|
+
States</li><li><strong>state:</strong>MN</li><li><strong>zip:</strong>55424</li><li><strong>city:</strong>Minneapolis</li></ul></content>
|
2560
|
+
|
2561
|
+
</entry>
|
2562
|
+
|
2563
|
+
<entry>
|
2564
|
+
|
2565
|
+
<id>http://data.vast.com/listings/-6082803932649744285/-/item_vehicle/bike</id>
|
2566
|
+
|
2567
|
+
<updated>2011-08-08T09:05:27+02:00</updated>
|
2568
|
+
|
2569
|
+
<published>2011-08-08T09:05:28+02:00</published>
|
2570
|
+
|
2571
|
+
<author>
|
2572
|
+
|
2573
|
+
<name>www.sample.com</name>
|
2574
|
+
|
2575
|
+
</author>
|
2576
|
+
|
2577
|
+
<title type="text">SAMPLE - Cannondale Silk Road 500</title>
|
2578
|
+
|
2579
|
+
<v:vertical>general</v:vertical>
|
2580
|
+
|
2581
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
2582
|
+
|
2583
|
+
<v:item_id>-6082803932649744285</v:item_id>
|
2584
|
+
|
2585
|
+
<v:location precision="zip">
|
2586
|
+
|
2587
|
+
<v:state>TX</v:state>
|
2588
|
+
|
2589
|
+
<v:country>United States</v:country>
|
2590
|
+
|
2591
|
+
<v:zip>77345</v:zip>
|
2592
|
+
|
2593
|
+
<v:distance>0</v:distance>
|
2594
|
+
|
2595
|
+
<v:city>Kingwood</v:city>
|
2596
|
+
|
2597
|
+
<v:lat precision="unknown">30.058980</v:lat>
|
2598
|
+
|
2599
|
+
<v:lon precision="unknown">-95.167380</v:lon>
|
2600
|
+
|
2601
|
+
<v:address></v:address>
|
2602
|
+
|
2603
|
+
</v:location>
|
2604
|
+
|
2605
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
2606
|
+
|
2607
|
+
<v:currency type="text">USD</v:currency>
|
2608
|
+
|
2609
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-6082803932649744285/-/item_vehicle/bike?apikey="/>
|
2610
|
+
|
2611
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbYXXThoMMBtTBRGiQ==/"/>
|
2612
|
+
|
2613
|
+
<link rel="alternate" type="text/html" title="Cannondale Silk Road 500" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbYXXThoMMBtTBRGiQ==/"/>
|
2614
|
+
|
2615
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
2616
|
+
result" href="http://www.vast.com/ajax/report?id=-6082803932649744285&category=item_vehicle/bike&apikey="/>
|
2617
|
+
|
2618
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
2619
|
+
|
2620
|
+
<v:year type="number"></v:year>
|
2621
|
+
|
2622
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-6082803932649744285</v:image_url>
|
2623
|
+
|
2624
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-6082803932649744285</v:large_image_url>
|
2625
|
+
|
2626
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-6082803932649744285</v:tiny_image_url>
|
2627
|
+
|
2628
|
+
<v:image_count>1</v:image_count>
|
2629
|
+
|
2630
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
2631
|
+
|
2632
|
+
<v:hosted type="boolean">no</v:hosted>
|
2633
|
+
|
2634
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
2635
|
+
|
2636
|
+
<v:description type="text">Size 52cm. Color Starlight Violet. Left shifter is
|
2637
|
+
sticking a bit from non-use otherwise excellent condition and rides silky smooth.
|
2638
|
+
Headshock front suspension can be dialed off when desired. Brand new tires/tubes.
|
2639
|
+
Includes Profile Aerobars. Price recently reduced. Prefer local buyer price
|
2640
|
+
does not include shipping/packing.</v:description>
|
2641
|
+
|
2642
|
+
<content type="html"><img src="http://img.vast.com/128x96/-6082803932649744285"><ul><li><strong>description:</strong>Size
|
2643
|
+
52cm. Color Starlight Violet. Left shifter is sticking a bit from non-use otherwise
|
2644
|
+
excellent condition and rides silky smooth. Headshock front suspension can be
|
2645
|
+
dialed off when desired. Brand new tires/tubes. Includes Profile Aerobars. Price
|
2646
|
+
recently reduced. Prefer local buyer price does not include shipping/packing.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
2647
|
+
States</li><li><strong>state:</strong>TX</li><li><strong>zip:</strong>77345</li><li><strong>city:</strong>Kingwood</li></ul></content>
|
2648
|
+
|
2649
|
+
</entry>
|
2650
|
+
|
2651
|
+
<entry>
|
2652
|
+
|
2653
|
+
<id>http://data.vast.com/listings/4492261456855456117/-/item_vehicle/bike</id>
|
2654
|
+
|
2655
|
+
<updated>2011-08-08T09:05:26+02:00</updated>
|
2656
|
+
|
2657
|
+
<published>2011-08-08T09:05:27+02:00</published>
|
2658
|
+
|
2659
|
+
<author>
|
2660
|
+
|
2661
|
+
<name>www.sample.com</name>
|
2662
|
+
|
2663
|
+
</author>
|
2664
|
+
|
2665
|
+
<title type="text">SAMPLE - 1974 Womens Schwinn Varsity 10 Speed Bike All Original
|
2666
|
+
w Fenders Light...</title>
|
2667
|
+
|
2668
|
+
<v:vertical>general</v:vertical>
|
2669
|
+
|
2670
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
2671
|
+
|
2672
|
+
<v:item_id>4492261456855456117</v:item_id>
|
2673
|
+
|
2674
|
+
<v:location precision="zip">
|
2675
|
+
|
2676
|
+
<v:state>TN</v:state>
|
2677
|
+
|
2678
|
+
<v:country>United States</v:country>
|
2679
|
+
|
2680
|
+
<v:zip>37132</v:zip>
|
2681
|
+
|
2682
|
+
<v:distance>0</v:distance>
|
2683
|
+
|
2684
|
+
<v:city>Murfreesboro</v:city>
|
2685
|
+
|
2686
|
+
<v:lat precision="unknown">35.847750</v:lat>
|
2687
|
+
|
2688
|
+
<v:lon precision="unknown">-86.363590</v:lon>
|
2689
|
+
|
2690
|
+
<v:address></v:address>
|
2691
|
+
|
2692
|
+
</v:location>
|
2693
|
+
|
2694
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
2695
|
+
|
2696
|
+
<v:currency type="text">USD</v:currency>
|
2697
|
+
|
2698
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/4492261456855456117/-/item_vehicle/bike?apikey="/>
|
2699
|
+
|
2700
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbbXRMZttJ2JlJ27Hw==/"/>
|
2701
|
+
|
2702
|
+
<link rel="alternate" type="text/html" title="1974 Womens Schwinn Varsity 10
|
2703
|
+
Speed Bike All Original w Fenders Light..." href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbbXRMZttJ2JlJ27Hw==/"/>
|
2704
|
+
|
2705
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
2706
|
+
result" href="http://www.vast.com/ajax/report?id=4492261456855456117&category=item_vehicle/bike&apikey="/>
|
2707
|
+
|
2708
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
2709
|
+
|
2710
|
+
<v:year type="number"></v:year>
|
2711
|
+
|
2712
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/4492261456855456117</v:image_url>
|
2713
|
+
|
2714
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/4492261456855456117</v:large_image_url>
|
2715
|
+
|
2716
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/4492261456855456117</v:tiny_image_url>
|
2717
|
+
|
2718
|
+
<v:image_count>1</v:image_count>
|
2719
|
+
|
2720
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
2721
|
+
|
2722
|
+
<v:hosted type="boolean">no</v:hosted>
|
2723
|
+
|
2724
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
2725
|
+
|
2726
|
+
<v:description type="text">1974 Schwinn Varsity Sport. It is all original and
|
2727
|
+
in great shape just look at the pictures. It has metal fenders a working generator
|
2728
|
+
and working lights front and tail. The original paint and decals are in great
|
2729
|
+
shape as well as the leather seat. Also included the original owners manual
|
2730
|
+
that came with this bicycle.</v:description>
|
2731
|
+
|
2732
|
+
<content type="html"><img src="http://img.vast.com/128x96/4492261456855456117"><ul><li><strong>description:</strong>1974
|
2733
|
+
Schwinn Varsity Sport. It is all original and in great shape just look at the
|
2734
|
+
pictures. It has metal fenders a working generator and working lights front
|
2735
|
+
and tail. The original paint and decals are in great shape as well as the leather
|
2736
|
+
seat. Also included the original owners manual that came with this bicycle.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
2737
|
+
States</li><li><strong>state:</strong>TN</li><li><strong>zip:</strong>37132</li><li><strong>city:</strong>Murfreesboro</li></ul></content>
|
2738
|
+
|
2739
|
+
</entry>
|
2740
|
+
|
2741
|
+
<entry>
|
2742
|
+
|
2743
|
+
<id>http://data.vast.com/listings/-773648803556276606/-/item_vehicle/bike</id>
|
2744
|
+
|
2745
|
+
<updated>2011-08-08T09:05:20+02:00</updated>
|
2746
|
+
|
2747
|
+
<published>2011-07-06T09:04:19+02:00</published>
|
2748
|
+
|
2749
|
+
<author>
|
2750
|
+
|
2751
|
+
<name>www.sample.com</name>
|
2752
|
+
|
2753
|
+
</author>
|
2754
|
+
|
2755
|
+
<title type="text">SAMPLE - 20 MiniChopperCruiser</title>
|
2756
|
+
|
2757
|
+
<v:vertical>general</v:vertical>
|
2758
|
+
|
2759
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
2760
|
+
|
2761
|
+
<v:item_id>-773648803556276606</v:item_id>
|
2762
|
+
|
2763
|
+
<v:location precision="zip">
|
2764
|
+
|
2765
|
+
<v:state>CA</v:state>
|
2766
|
+
|
2767
|
+
<v:country>United States</v:country>
|
2768
|
+
|
2769
|
+
<v:zip>93001</v:zip>
|
2770
|
+
|
2771
|
+
<v:distance>0</v:distance>
|
2772
|
+
|
2773
|
+
<v:city>Ventura</v:city>
|
2774
|
+
|
2775
|
+
<v:lat precision="unknown">34.293118</v:lat>
|
2776
|
+
|
2777
|
+
<v:lon precision="unknown">-119.294065</v:lon>
|
2778
|
+
|
2779
|
+
<v:address></v:address>
|
2780
|
+
|
2781
|
+
</v:location>
|
2782
|
+
|
2783
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
2784
|
+
|
2785
|
+
<v:currency type="text">USD</v:currency>
|
2786
|
+
|
2787
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-773648803556276606/-/item_vehicle/bike?apikey="/>
|
2788
|
+
|
2789
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3URDUiDCZ1h3T3w==/"/>
|
2790
|
+
|
2791
|
+
<link rel="alternate" type="text/html" title="20 MiniChopperCruiser" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3URDUiDCZ1h3T3w==/"/>
|
2792
|
+
|
2793
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
2794
|
+
result" href="http://www.vast.com/ajax/report?id=-773648803556276606&category=item_vehicle/bike&apikey="/>
|
2795
|
+
|
2796
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
2797
|
+
|
2798
|
+
<v:year type="number"></v:year>
|
2799
|
+
|
2800
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-773648803556276606</v:image_url>
|
2801
|
+
|
2802
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-773648803556276606</v:large_image_url>
|
2803
|
+
|
2804
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-773648803556276606</v:tiny_image_url>
|
2805
|
+
|
2806
|
+
<v:image_count>1</v:image_count>
|
2807
|
+
|
2808
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
2809
|
+
|
2810
|
+
<v:hosted type="boolean">no</v:hosted>
|
2811
|
+
|
2812
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
2813
|
+
|
2814
|
+
<v:description type="text">This sweet kids bike is the nicest I''ve found to
|
2815
|
+
re-build. Steel tube forks 80 spoke rims custom paint Silver flash and comfortable....
|
2816
|
+
Come get-er''</v:description>
|
2817
|
+
|
2818
|
+
<content type="html"><img src="http://img.vast.com/128x96/-773648803556276606"><ul><li><strong>description:</strong>This
|
2819
|
+
sweet kids bike is the nicest I''ve found to re-build. Steel tube forks 80 spoke
|
2820
|
+
rims custom paint Silver flash and comfortable.... Come get-er''</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
2821
|
+
States</li><li><strong>state:</strong>CA</li><li><strong>zip:</strong>93001</li><li><strong>city:</strong>Ventura</li></ul></content>
|
2822
|
+
|
2823
|
+
</entry>
|
2824
|
+
|
2825
|
+
<entry>
|
2826
|
+
|
2827
|
+
<id>http://data.vast.com/listings/-5638312655931235751/-/item_vehicle/bike</id>
|
2828
|
+
|
2829
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
2830
|
+
|
2831
|
+
<published>2011-08-04T09:04:55+02:00</published>
|
2832
|
+
|
2833
|
+
<author>
|
2834
|
+
|
2835
|
+
<name>www.sample.com</name>
|
2836
|
+
|
2837
|
+
</author>
|
2838
|
+
|
2839
|
+
<title type="text">SAMPLE - LITESPEED BELLA</title>
|
2840
|
+
|
2841
|
+
<v:vertical>general</v:vertical>
|
2842
|
+
|
2843
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
2844
|
+
|
2845
|
+
<v:item_id>-5638312655931235751</v:item_id>
|
2846
|
+
|
2847
|
+
<v:location precision="address">
|
2848
|
+
|
2849
|
+
<v:state>CA</v:state>
|
2850
|
+
|
2851
|
+
<v:country>United States</v:country>
|
2852
|
+
|
2853
|
+
<v:zip>91606</v:zip>
|
2854
|
+
|
2855
|
+
<v:distance>0</v:distance>
|
2856
|
+
|
2857
|
+
<v:city>North Hollywood</v:city>
|
2858
|
+
|
2859
|
+
<v:lat precision="city">34.186304</v:lat>
|
2860
|
+
|
2861
|
+
<v:lon precision="city">-118.389143</v:lon>
|
2862
|
+
|
2863
|
+
<v:address>6307 Babcock Avenue</v:address>
|
2864
|
+
|
2865
|
+
</v:location>
|
2866
|
+
|
2867
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
2868
|
+
|
2869
|
+
<v:currency type="text">USD</v:currency>
|
2870
|
+
|
2871
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-5638312655931235751/-/item_vehicle/bike?apikey="/>
|
2872
|
+
|
2873
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WdCAttmcC2CRmw==/"/>
|
2874
|
+
|
2875
|
+
<link rel="alternate" type="text/html" title="LITESPEED BELLA" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WdCAttmcC2CRmw==/"/>
|
2876
|
+
|
2877
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
2878
|
+
result" href="http://www.vast.com/ajax/report?id=-5638312655931235751&category=item_vehicle/bike&apikey="/>
|
2879
|
+
|
2880
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
2881
|
+
|
2882
|
+
<v:year type="number"></v:year>
|
2883
|
+
|
2884
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-5638312655931235751</v:image_url>
|
2885
|
+
|
2886
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-5638312655931235751</v:large_image_url>
|
2887
|
+
|
2888
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-5638312655931235751</v:tiny_image_url>
|
2889
|
+
|
2890
|
+
<v:image_count>1</v:image_count>
|
2891
|
+
|
2892
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
2893
|
+
|
2894
|
+
<v:hosted type="boolean">no</v:hosted>
|
2895
|
+
|
2896
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
2897
|
+
|
2898
|
+
<v:description type="text">Ladies Litespeed Bella Size small Like New - Hardly
|
2899
|
+
ridden Cost new 1500.00 added extras-computer</v:description>
|
2900
|
+
|
2901
|
+
<content type="html"><img src="http://img.vast.com/128x96/-5638312655931235751"><ul><li><strong>description:</strong>Ladies
|
2902
|
+
Litespeed Bella Size small Like New - Hardly ridden Cost new 1500.00 added extras-computer</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
2903
|
+
States</li><li><strong>state:</strong>CA</li><li><strong>zip:</strong>91606</li><li><strong>city:</strong>North
|
2904
|
+
Hollywood</li></ul></content>
|
2905
|
+
|
2906
|
+
</entry>
|
2907
|
+
|
2908
|
+
<entry>
|
2909
|
+
|
2910
|
+
<id>http://data.vast.com/listings/-2828790551934852365/-/item_vehicle/bike</id>
|
2911
|
+
|
2912
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
2913
|
+
|
2914
|
+
<published>2011-07-22T09:04:42+02:00</published>
|
2915
|
+
|
2916
|
+
<author>
|
2917
|
+
|
2918
|
+
<name>www.sample.com</name>
|
2919
|
+
|
2920
|
+
</author>
|
2921
|
+
|
2922
|
+
<title type="text">SAMPLE - 2010 Trek 4 Series 4300 BlackRed 225</title>
|
2923
|
+
|
2924
|
+
<v:vertical>general</v:vertical>
|
2925
|
+
|
2926
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
2927
|
+
|
2928
|
+
<v:item_id>-2828790551934852365</v:item_id>
|
2929
|
+
|
2930
|
+
<v:location precision="zip">
|
2931
|
+
|
2932
|
+
<v:state>PA</v:state>
|
2933
|
+
|
2934
|
+
<v:country>United States</v:country>
|
2935
|
+
|
2936
|
+
<v:zip>18091</v:zip>
|
2937
|
+
|
2938
|
+
<v:distance>0</v:distance>
|
2939
|
+
|
2940
|
+
<v:city>Wind Gap</v:city>
|
2941
|
+
|
2942
|
+
<v:lat precision="unknown">40.828784</v:lat>
|
2943
|
+
|
2944
|
+
<v:lon precision="unknown">-75.309836</v:lon>
|
2945
|
+
|
2946
|
+
<v:address></v:address>
|
2947
|
+
|
2948
|
+
</v:location>
|
2949
|
+
|
2950
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
2951
|
+
|
2952
|
+
<v:currency type="text">USD</v:currency>
|
2953
|
+
|
2954
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-2828790551934852365/-/item_vehicle/bike?apikey="/>
|
2955
|
+
|
2956
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3VoaBw5m8BIlg2Q==/"/>
|
2957
|
+
|
2958
|
+
<link rel="alternate" type="text/html" title="2010 Trek 4 Series 4300 BlackRed
|
2959
|
+
225" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3VoaBw5m8BIlg2Q==/"/>
|
2960
|
+
|
2961
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
2962
|
+
result" href="http://www.vast.com/ajax/report?id=-2828790551934852365&category=item_vehicle/bike&apikey="/>
|
2963
|
+
|
2964
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
2965
|
+
|
2966
|
+
<v:year type="number"></v:year>
|
2967
|
+
|
2968
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-2828790551934852365</v:image_url>
|
2969
|
+
|
2970
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-2828790551934852365</v:large_image_url>
|
2971
|
+
|
2972
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-2828790551934852365</v:tiny_image_url>
|
2973
|
+
|
2974
|
+
<v:image_count>1</v:image_count>
|
2975
|
+
|
2976
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
2977
|
+
|
2978
|
+
<v:hosted type="boolean">no</v:hosted>
|
2979
|
+
|
2980
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
2981
|
+
|
2982
|
+
<v:description type="text">Awesome shape only ridden a few times.</v:description>
|
2983
|
+
|
2984
|
+
<content type="html"><img src="http://img.vast.com/128x96/-2828790551934852365"><ul><li><strong>description:</strong>Awesome
|
2985
|
+
shape only ridden a few times.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
2986
|
+
States</li><li><strong>state:</strong>PA</li><li><strong>zip:</strong>18091</li><li><strong>city:</strong>Wind
|
2987
|
+
Gap</li></ul></content>
|
2988
|
+
|
2989
|
+
</entry>
|
2990
|
+
|
2991
|
+
<entry>
|
2992
|
+
|
2993
|
+
<id>http://data.vast.com/listings/-5777791708056535799/-/item_vehicle/bike</id>
|
2994
|
+
|
2995
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
2996
|
+
|
2997
|
+
<published>2011-07-28T09:04:49+02:00</published>
|
2998
|
+
|
2999
|
+
<author>
|
3000
|
+
|
3001
|
+
<name>www.sample.com</name>
|
3002
|
+
|
3003
|
+
</author>
|
3004
|
+
|
3005
|
+
<title type="text">SAMPLE - Cannondale ST400</title>
|
3006
|
+
|
3007
|
+
<v:vertical>general</v:vertical>
|
3008
|
+
|
3009
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
3010
|
+
|
3011
|
+
<v:item_id>-5777791708056535799</v:item_id>
|
3012
|
+
|
3013
|
+
<v:location precision="zip">
|
3014
|
+
|
3015
|
+
<v:state>MD</v:state>
|
3016
|
+
|
3017
|
+
<v:country>United States</v:country>
|
3018
|
+
|
3019
|
+
<v:zip>20677</v:zip>
|
3020
|
+
|
3021
|
+
<v:distance>0</v:distance>
|
3022
|
+
|
3023
|
+
<v:city>Port Tobacco</v:city>
|
3024
|
+
|
3025
|
+
<v:lat precision="unknown">38.508349</v:lat>
|
3026
|
+
|
3027
|
+
<v:lon precision="unknown">-77.042380</v:lon>
|
3028
|
+
|
3029
|
+
<v:address></v:address>
|
3030
|
+
|
3031
|
+
</v:location>
|
3032
|
+
|
3033
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
3034
|
+
|
3035
|
+
<v:currency type="text">USD</v:currency>
|
3036
|
+
|
3037
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-5777791708056535799/-/item_vehicle/bike?apikey="/>
|
3038
|
+
|
3039
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WRERyxODnZCRzA==/"/>
|
3040
|
+
|
3041
|
+
<link rel="alternate" type="text/html" title="Cannondale ST400" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WRERyxODnZCRzA==/"/>
|
3042
|
+
|
3043
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
3044
|
+
result" href="http://www.vast.com/ajax/report?id=-5777791708056535799&category=item_vehicle/bike&apikey="/>
|
3045
|
+
|
3046
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
3047
|
+
|
3048
|
+
<v:year type="number"></v:year>
|
3049
|
+
|
3050
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-5777791708056535799</v:image_url>
|
3051
|
+
|
3052
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-5777791708056535799</v:large_image_url>
|
3053
|
+
|
3054
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-5777791708056535799</v:tiny_image_url>
|
3055
|
+
|
3056
|
+
<v:image_count>1</v:image_count>
|
3057
|
+
|
3058
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
3059
|
+
|
3060
|
+
<v:hosted type="boolean">no</v:hosted>
|
3061
|
+
|
3062
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
3063
|
+
|
3064
|
+
<v:description type="text">This is a great vintage bike! Only a few scratches
|
3065
|
+
new Vittoria Zafffiro tires great touring bike and it is very clean.</v:description>
|
3066
|
+
|
3067
|
+
<content type="html"><img src="http://img.vast.com/128x96/-5777791708056535799"><ul><li><strong>description:</strong>This
|
3068
|
+
is a great vintage bike! Only a few scratches new Vittoria Zafffiro tires great
|
3069
|
+
touring bike and it is very clean.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
3070
|
+
States</li><li><strong>state:</strong>MD</li><li><strong>zip:</strong>20677</li><li><strong>city:</strong>Port
|
3071
|
+
Tobacco</li></ul></content>
|
3072
|
+
|
3073
|
+
</entry>
|
3074
|
+
|
3075
|
+
<entry>
|
3076
|
+
|
3077
|
+
<id>http://data.vast.com/listings/-5585207250701382709/-/item_vehicle/bike</id>
|
3078
|
+
|
3079
|
+
<updated>2011-08-08T09:05:21+02:00</updated>
|
3080
|
+
|
3081
|
+
<published>2011-07-22T09:04:47+02:00</published>
|
3082
|
+
|
3083
|
+
<author>
|
3084
|
+
|
3085
|
+
<name>www.sample.com</name>
|
3086
|
+
|
3087
|
+
</author>
|
3088
|
+
|
3089
|
+
<title type="text">SAMPLE - BH Global concept womens</title>
|
3090
|
+
|
3091
|
+
<v:vertical>general</v:vertical>
|
3092
|
+
|
3093
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
3094
|
+
|
3095
|
+
<v:item_id>-5585207250701382709</v:item_id>
|
3096
|
+
|
3097
|
+
<v:location precision="zip">
|
3098
|
+
|
3099
|
+
<v:state>AZ</v:state>
|
3100
|
+
|
3101
|
+
<v:country>United States</v:country>
|
3102
|
+
|
3103
|
+
<v:zip>85283</v:zip>
|
3104
|
+
|
3105
|
+
<v:distance>0</v:distance>
|
3106
|
+
|
3107
|
+
<v:city>Tempe</v:city>
|
3108
|
+
|
3109
|
+
<v:lat precision="unknown">33.362760</v:lat>
|
3110
|
+
|
3111
|
+
<v:lon precision="unknown">-111.935340</v:lon>
|
3112
|
+
|
3113
|
+
<v:address></v:address>
|
3114
|
+
|
3115
|
+
</v:location>
|
3116
|
+
|
3117
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
3118
|
+
|
3119
|
+
<v:currency type="text">USD</v:currency>
|
3120
|
+
|
3121
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/-5585207250701382709/-/item_vehicle/bike?apikey="/>
|
3122
|
+
|
3123
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WZiWMWkxOwhhPA==/"/>
|
3124
|
+
|
3125
|
+
<link rel="alternate" type="text/html" title="BH Global concept womens" href="http://details.vast.com/details/item_vehicle/bike/ob-Nzezewthgba3WZiWMWkxOwhhPA==/"/>
|
3126
|
+
|
3127
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
3128
|
+
result" href="http://www.vast.com/ajax/report?id=-5585207250701382709&category=item_vehicle/bike&apikey="/>
|
3129
|
+
|
3130
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
3131
|
+
|
3132
|
+
<v:year type="number"></v:year>
|
3133
|
+
|
3134
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/-5585207250701382709</v:image_url>
|
3135
|
+
|
3136
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/-5585207250701382709</v:large_image_url>
|
3137
|
+
|
3138
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/-5585207250701382709</v:tiny_image_url>
|
3139
|
+
|
3140
|
+
<v:image_count>1</v:image_count>
|
3141
|
+
|
3142
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
3143
|
+
|
3144
|
+
<v:hosted type="boolean">no</v:hosted>
|
3145
|
+
|
3146
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
3147
|
+
|
3148
|
+
<v:description type="text">14 lbs womens 52 Specifications Frame BH Global Concept
|
3149
|
+
carbon Fork BH Carbon Seatpost BH Carbon san marcos seat SHIMANO ULTEGRA components
|
3150
|
+
custom tires blue spokes will take 1000 obo GOOD condition Great deal need to
|
3151
|
+
sell fast email for more pictures or info</v:description>
|
3152
|
+
|
3153
|
+
<content type="html"><img src="http://img.vast.com/128x96/-5585207250701382709"><ul><li><strong>description:</strong>14
|
3154
|
+
lbs womens 52 Specifications Frame BH Global Concept carbon Fork BH Carbon Seatpost
|
3155
|
+
BH Carbon san marcos seat SHIMANO ULTEGRA components custom tires blue spokes
|
3156
|
+
will take 1000 obo GOOD condition Great deal need to sell fast email for more
|
3157
|
+
pictures or info</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
3158
|
+
States</li><li><strong>state:</strong>AZ</li><li><strong>zip:</strong>85283</li><li><strong>city:</strong>Tempe</li></ul></content>
|
3159
|
+
|
3160
|
+
</entry>
|
3161
|
+
|
3162
|
+
<entry>
|
3163
|
+
|
3164
|
+
<id>http://data.vast.com/listings/7788227058271190879/-/item_vehicle/bike</id>
|
3165
|
+
|
3166
|
+
<updated>2011-08-08T09:05:20+02:00</updated>
|
3167
|
+
|
3168
|
+
<published>2011-07-06T09:04:17+02:00</published>
|
3169
|
+
|
3170
|
+
<author>
|
3171
|
+
|
3172
|
+
<name>www.sample.com</name>
|
3173
|
+
|
3174
|
+
</author>
|
3175
|
+
|
3176
|
+
<title type="text">SAMPLE - Vintage Schwinn Three Wheel Bike Trike</title>
|
3177
|
+
|
3178
|
+
<v:vertical>general</v:vertical>
|
3179
|
+
|
3180
|
+
<v:category>item_vehicle%2Cbike</v:category>
|
3181
|
+
|
3182
|
+
<v:item_id>7788227058271190879</v:item_id>
|
3183
|
+
|
3184
|
+
<v:location precision="zip">
|
3185
|
+
|
3186
|
+
<v:state>CA</v:state>
|
3187
|
+
|
3188
|
+
<v:country>United States</v:country>
|
3189
|
+
|
3190
|
+
<v:zip>93001</v:zip>
|
3191
|
+
|
3192
|
+
<v:distance>0</v:distance>
|
3193
|
+
|
3194
|
+
<v:city>Ventura</v:city>
|
3195
|
+
|
3196
|
+
<v:lat precision="unknown">34.293118</v:lat>
|
3197
|
+
|
3198
|
+
<v:lon precision="unknown">-119.294065</v:lon>
|
3199
|
+
|
3200
|
+
<v:address></v:address>
|
3201
|
+
|
3202
|
+
</v:location>
|
3203
|
+
|
3204
|
+
<v:price type="money" symbol="$" currency="USD" value="0"/>
|
3205
|
+
|
3206
|
+
<v:currency type="text">USD</v:currency>
|
3207
|
+
|
3208
|
+
<link rel="self" type="application/atom+xml" href="http://data.vast.com/listings/7788227058271190879/-/item_vehicle/bike?apikey="/>
|
3209
|
+
|
3210
|
+
<link rel="via" type="text/html" title="www.sample.com" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3EYhmE5hhu8OBzw==/"/>
|
3211
|
+
|
3212
|
+
<link rel="alternate" type="text/html" title="Vintage Schwinn Three Wheel Bike
|
3213
|
+
Trike" href="http://details.vast.com/details/item_vehicle/bike/ob-NzezewthgbY3EYhmE5hhu8OBzw==/"/>
|
3214
|
+
|
3215
|
+
<link rel="http://feedback.vast.com" type="text/html" title="Report incorrect
|
3216
|
+
result" href="http://www.vast.com/ajax/report?id=7788227058271190879&category=item_vehicle/bike&apikey="/>
|
3217
|
+
|
3218
|
+
<v:domain_name type="text">www.sample.com</v:domain_name>
|
3219
|
+
|
3220
|
+
<v:year type="number"></v:year>
|
3221
|
+
|
3222
|
+
<v:image_url type="image/jpeg">http://img.vast.com/128x96/7788227058271190879</v:image_url>
|
3223
|
+
|
3224
|
+
<v:large_image_url type="image/jpeg">http://img.vast.com/320x240/7788227058271190879</v:large_image_url>
|
3225
|
+
|
3226
|
+
<v:tiny_image_url type="image/jpeg">http://img.vast.com/59x44/7788227058271190879</v:tiny_image_url>
|
3227
|
+
|
3228
|
+
<v:image_count>1</v:image_count>
|
3229
|
+
|
3230
|
+
<v:hasimage type="boolean">yes</v:hasimage>
|
3231
|
+
|
3232
|
+
<v:hosted type="boolean">no</v:hosted>
|
3233
|
+
|
3234
|
+
<v:hosted_type type="text">landing</v:hosted_type>
|
3235
|
+
|
3236
|
+
<v:description type="text">Well I found another Vintage Three Wheel Town and
|
3237
|
+
Country. Located under a rock right here in Ventura. This beauty will be re-built
|
3238
|
+
to model a Fire Truck Thank you to all FF''s. Similar to my Army Trike this
|
3239
|
+
will feature custom wood work paint and all parts will and currently are will
|
3240
|
+
be the original Schwinn parts. Buy it now and save! Thank you Love those Trikes.</v:description>
|
3241
|
+
|
3242
|
+
<content type="html"><img src="http://img.vast.com/128x96/7788227058271190879"><ul><li><strong>description:</strong>Well
|
3243
|
+
I found another Vintage Three Wheel Town and Country. Located under a rock right
|
3244
|
+
here in Ventura. This beauty will be re-built to model a Fire Truck Thank you
|
3245
|
+
to all FF''s. Similar to my Army Trike this will feature custom wood work paint
|
3246
|
+
and all parts will and currently are will be the original Schwinn parts. Buy
|
3247
|
+
it now and save! Thank you Love those Trikes.</li><li><strong>price:</strong>0</li><li><strong>country:</strong>United
|
3248
|
+
States</li><li><strong>state:</strong>CA</li><li><strong>zip:</strong>93001</li><li><strong>city:</strong>Ventura</li></ul></content>
|
3249
|
+
|
3250
|
+
</entry>
|
3251
|
+
|
436
3252
|
</feed>
|
437
3253
|
|
438
|
-
|
3254
|
+
'
|
3255
|
+
http_version: '1.1'
|