Created
December 11, 2012 17:48
-
-
Save piercemoore/4260588 to your computer and use it in GitHub Desktop.
Example displaying differences in XML and JSON - JSON Side
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Success": true, | |
| "ResultsReturned": 1, | |
| "TotalResults": 1065493, | |
| "Artists": [ | |
| { | |
| "MnetId": "1097", | |
| "Name": "Alicia Keys", | |
| "Images": { | |
| "Artist180x80": "http://images.mndigital.com/artists/000/001/097/b.jpeg", | |
| "Artist190x230": "http://images.mndigital.com/artists/000/001/097/c.jpeg", | |
| "Artist375x250": "http://images.mndigital.com/artists/000/001/097/a.jpeg", | |
| "Artist200x": "http://images.mndigital.com/artists/000/001/097/f.jpeg" | |
| } | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ArtistSearchResults xmlns="http://api.mndigital.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> | |
| <Success>true</Success> | |
| <ResultsReturned>1</ResultsReturned> | |
| <TotalResults>1065493</TotalResults> | |
| <Artists> | |
| <Artist> | |
| <MnetId>1097</MnetId> | |
| <Name>Alicia Keys</Name> | |
| <Images> | |
| <Artist180x80> | |
| http://images.mndigital.com/artists/000/001/097/b.jpeg | |
| </Artist180x80> | |
| <Artist190x230> | |
| http://images.mndigital.com/artists/000/001/097/c.jpeg | |
| </Artist190x230> | |
| <Artist375x250> | |
| http://images.mndigital.com/artists/000/001/097/a.jpeg | |
| </Artist375x250> | |
| <Artist200x> | |
| http://images.mndigital.com/artists/000/001/097/f.jpeg | |
| </Artist200x> | |
| </Images> | |
| </Artist> | |
| </Artists> | |
| </ArtistSearchResults> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment