Created
October 21, 2014 09:23
-
-
Save rofr/6c59ae752a077ab1264a to your computer and use it in GitHub Desktop.
XmlJ, the new json format from IBM to represent XML as json
This file contains 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
{ "element" : "object", | |
"namespace" : "json", | |
"childNodes" : [ | |
{ | |
"type" : "element" | |
"name": "string", | |
"namespace" : "json", | |
"attributes" : [ | |
{ | |
"name" : "name", | |
"value" : "Ticker" | |
} | |
], | |
"childNodes" : [ | |
{ | |
"type" : "text", | |
"value" : "IBM" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment