answer element
| Type: | answer |
| Namespace: | (default namespace) |
| XML Schema: | ns0.xsd |
User: marc Date: May 12, 2009 Time: 1:49:47 PM
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"?>
<answer id="..." timestamp="..." question="..." rating="...">
<badge advertiser="..." publisher="...">
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." />
<image height="..." alt="..." width="..." url="..." />
<display_url>...</display_url>
<description_1>...</description_1>
<description_2>...</description_2>
</badge>
<text>...</text>
<author>...</author>
<tool id="...">
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." />
<image height="..." alt="..." width="..." url="..." />
</tool>
<tool id="...">
<!--...-->
</tool>
<!--...more "tool" elements...-->
<content type="...">...</content>
<content type="...">...</content>
<!--...more "content" elements...-->
</answer>
Example JSON
{
"id" : ...,
"timestamp" : "...",
"question" : ...,
"rating" : ...,
"badge" : {
"advertiser" : false,
"publisher" : false,
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"image" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"display_url" : "...",
"description_1" : "...",
"description_2" : "..."
},
"text" : "...",
"author" : "...",
"tool" : [ {
"id" : "...",
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"image" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
}
}, ... ],
"content" : [ {
"type" : "...",
"value" : "..."
}, ... ]
}