artistListResponse element

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

Artists list

Example XML

<?xml version="1.0" encoding="UTF-8"?> <artistListResponse> <pagination> <startIndex>...</startIndex> <count>...</count> <totalResults>...</totalResults> </pagination> <searchQuery> <modifiedSince>...</modifiedSince> <name>...</name> <searchPagination> <startIndex>...</startIndex> <count>...</count> </searchPagination> </searchQuery> <link> <href>...</href> <method>...</method> <rel>...</rel> </link> <link> <!--...--> </link> <!--...more "link" elements...--> <artist> <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> </artist> <artist> <!--...--> </artist> <!--...more "artist" elements...--> </artistListResponse>

Example JSON

{ "pagination" : { "startIndex" : ..., "count" : ..., "totalResults" : ... }, "searchQuery" : { "modifiedSince" : ..., "name" : "...", "searchPagination" : { "startIndex" : ..., "count" : ... } }, "link" : [ { "href" : "...", "method" : "GET", "rel" : "self" }, ... ], "artist" : [ { "link" : [ { "href" : "...", "method" : "GET", "rel" : "self" }, ... ], "name" : "...", "sowprogId" : { "id" : "...", "UUID" : "...", "version" : ..., "creationDate" : ..., "modificationDate" : ... } }, ... ] }