forecasts element
| Type: | forecasts |
| Namespace: | (default namespace) |
| XML Schema: | ns0.xsd |
A root element for a collection of forecasts. The underlying data source can be either the forecasts of an individual agent or the aggregate forecasts of multiple agents.
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"?>
<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>
Example JSON
{
"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" : ...
}