locationListResponse element
Type: | locationListResponse |
Namespace: | (default namespace) |
XML Schema: | ns0.xsd |
Location list response
Example XML
<?xml version="1.0" encoding="UTF-8"?> <locationListResponse> <pagination> <startIndex>...</startIndex> <count>...</count> <totalResults>...</totalResults> </pagination> <searchQuery> <name>...</name> <longitude>...</longitude> <latitude>...</latitude> <searchPagination> <startIndex>...</startIndex> <count>...</count> </searchPagination> <distance>...</distance> <modifiedSince>...</modifiedSince> </searchQuery> <link> <href>...</href> <method>...</method> <rel>...</rel> </link> <link> <!--...--> </link> <!--...more "link" elements...--> <location> <sowprogId> <id>...</id> <UUID>...</UUID> <version>...</version> <creationDate>...</creationDate> <modificationDate>...</modificationDate> </sowprogId> <link> <href>...</href> <method>...</method> <rel>...</rel> </link> <link> <!--...--> </link> <!--...more "link" elements...--> <name>...</name> <zipCode>...</zipCode> <city>...</city> <country>...</country> <latitude>...</latitude> <longitude>...</longitude> </location> <location> <!--...--> </location> <!--...more "location" elements...--> </locationListResponse>
Example JSON
{ "pagination" : { "startIndex" : ..., "count" : ..., "totalResults" : ... }, "searchQuery" : { "name" : "...", "longitude" : "...", "latitude" : "...", "searchPagination" : { "startIndex" : ..., "count" : ... }, "distance" : "...", "modifiedSince" : ... }, "link" : [ { "href" : "...", "method" : "GET", "rel" : "self" }, ... ], "location" : [ { "link" : [ { "href" : "...", "method" : "GET", "rel" : "self" }, ... ], "name" : "...", "zipCode" : "...", "city" : "...", "country" : "...", "latitude" : "...", "longitude" : "...", "sowprogId" : { "id" : "...", "UUID" : "...", "version" : ..., "creationDate" : ..., "modificationDate" : ... } }, ... ] }