question element
| Type: | question |
| 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"?>
<question creation="..." status="..." expiration="..." id="..." context="..." longitude="..." latitude="..." key="...">
<tags>
<tag>...</tag>
<tag>...</tag>
<!--...more "tag" elements...-->
</tags>
<links>
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." />
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--...-->
</link>
<!--...more "link" elements...-->
</links>
<slugs>
<slug type="...">...</slug>
<slug type="...">...</slug>
<!--...more "slug" elements...-->
</slugs>
<body>...</body>
<title>...</title>
<fname>...</fname>
<lname>...</lname>
<email>...</email>
<location>...</location>
<countdown>...</countdown>
<answers>...</answers>
</question>
Example JSON
{
"creation" : "...",
"status" : "deleted",
"expiration" : "...",
"id" : ...,
"context" : "city",
"longitude" : ...,
"latitude" : ...,
"key" : "...",
"tags" : {
"tag" : [ {
"value" : "..."
}, ... ]
},
"links" : {
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
},
"slugs" : {
"slug" : [ {
"type" : "hyphen",
"value" : "..."
}, ... ]
},
"body" : "...",
"title" : "...",
"fname" : "...",
"lname" : "...",
"email" : "...",
"location" : "...",
"countdown" : "...",
"answers" : ...
}