Skip to content

Instantly share code, notes, and snippets.

@rofr
Created October 21, 2014 09:23
Show Gist options
  • Save rofr/6c59ae752a077ab1264a to your computer and use it in GitHub Desktop.
Save rofr/6c59ae752a077ab1264a to your computer and use it in GitHub Desktop.
XmlJ, the new json format from IBM to represent XML as json
{ "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