market element

Type: market
Namespace: (default namespace)
XML Schema: ns0.xsd

User: marc Date: Mar 4, 2008 Time: 6:15:00 AM

THIS SOFTWARE IS COPYRIGHTED. THE SOFTWARE MAY NOT BE COPIED REPRODUCED, TRANSLATED, OR REDUCED TO ANY ELECTRONIC MEDIUM OR MACHINE READABLE FORM WITHOUT THE PRIOR WRITTEN CONSENT OF SOCO TECHNOLOGIES.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <market> <name>...</name> <forecasts start_index="..." max_results="..." last_index="..." total_results="..." first_index="..."> <title>...</title> <forecast id="..." key="..."> <link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." /> <date>...</date> <slugs> <slug type="...">...</slug> <slug type="...">...</slug> <!--...more "slug" elements...--> </slugs> <body>...</body> <title>...</title> <market>...</market> <metric>...</metric> <spot>...</spot> <future>...</future> </forecast> <forecast id="..." key="..."> <!--...--> </forecast> <!--...more "forecast" elements...--> </forecasts> <histories> <chart height="..." alt="..." width="..." url="..." /> <history> <date>...</date> <market>...</market> <metric>...</metric> <value>...</value> </history> <history> <!--...--> </history> <!--...more "history" elements...--> </histories> </market>

Example JSON

{ "name" : "...", "forecasts" : { "title" : "...", "forecast" : [ { "id" : ..., "key" : "...", "link" : { "id" : "...", "title" : "...", "text" : "...", "mouseover" : "...", "rel" : "...", "type" : "...", "href" : "..." }, "date" : "...", "slugs" : { "slug" : [ { "type" : "hyphen", "value" : "..." }, ... ] }, "body" : "...", "title" : "...", "market" : "...", "metric" : "...", "spot" : ..., "future" : ... }, ... ], "start_index" : ..., "max_results" : ..., "last_index" : ..., "total_results" : ..., "first_index" : ... }, "histories" : { "chart" : { "height" : ..., "alt" : "...", "width" : ..., "url" : "..." }, "history" : [ { "date" : "...", "market" : "...", "metric" : "...", "value" : ... }, ... ] } }