Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an XSLT equivalent for JSON? Something to allow me to do transformations on JSON like XSLT does to XML.

share|improve this question
Btw, which language/platform would this be on? – StaxMan Jan 31 '11 at 20:26
1  
@StaxMan XSLT is a standard that has actual implementations in many languages and platforms, my questions targets a similar endeavor. – luvieere Jan 31 '11 at 21:02
Yes, but while there doesn't seem to be exact equivalent, there might be applicable tools for subset of languages which could help. – StaxMan Feb 1 '11 at 5:18

9 Answers

up vote 12 down vote accepted

Interesting idea. Some searching on Google produced a few pages of interest, including:

Hope this helps.

share|improve this answer
3  
Yup, thank you, that's what I was looking for. It's a pity the technique isn't more popular, JSON is quite often used as a return format in REST-style services and it would be nice to have a standard way of implementing transformations to it. – luvieere Oct 24 '09 at 18:08
2  
This code uses string.eval() ... :-( – dreftymac Oct 17 '12 at 1:10

To say lack of tools suggest lack of need is just begging the question. The same could be applied to support for X or Y in Linux (Why bother developing quality drivers and/or games for such a minority OS? And why pay attention to an OS that big game and hardware companies don't develop for?). Probably the people who would need to use XSLT and JSON end up using a somewhat trivial workaround: Transforming JSON into XML. But that's not the optimal solution, is it?

When you have a native JSON format and you want to edit it "wysywyg" in the browser, XSLT would be a more than adequate solution for the problem. Doing that with traditional javascript programming can become a pain in the arse.

In fact, I have implemented a "stone-age" approach to XSLT, using substring parsing to interpret some basic commands for javascript, like calling a template, process children, etc. Certainly implementing a transformation engine with a JSON object is much easier than implementing a full-fledged XML parser to parse the XSLT. Problem is, that to use XML templates to transform a JSON object you need to parse the XML of the templates.

To tranform a JSON object with XML (or HTML, or text or whatever) you need to think carefully about the syntax and what special characters you need to use to identify the transformation commands. Otherwise you'll end up having to design a parser for your own custom templating language. Having walked through that path, I can tell you that it's not pretty.

Update (Nov 12, 2010): After a couple of weeks working on my parser, I've been able to optimize it. Templates are parsed beforehand and commands are stored as JSON objects. Transformation rules are also JSON objects, while the template code is a mix of HTML and a homebrew syntax similar to shell code. I've been able to transform a complex JSON document into HTML to make a document editor. The code is around 1K lines for the editor (it's for a private project so I can't share it) and around 990 lines for the JSON transformation code (includes iteration commands, simple comparisons, template calling, variable saving and evaluation). I plan to release it under a MIT license. Drop me a mail if you want to get involved.

share|improve this answer
2  
wow - sounds amazing. Have you released yet? – Jens Frandsen Nov 23 '12 at 13:36

I recently found a tool that I love for styling JSON: http://twigkit.github.com/tempo/. Very easy tool to use--in my opinion, it is much easier to work with than XSLT--no need for XPATH queries.

share|improve this answer
Quite an interesting client-side solution. – Dave Jarvis Dec 23 '11 at 6:02
Tempo looks great if the final result of the transformation is HTML. But what if you just want to rearrange an implied structure into a different one, yet the final result is still JSON. I would still want an analog of XPath so I can write the transformation in a functional way. – Toddius Zho May 7 at 20:06

JSON -> XML -> XML + XSLT -> Final Document

You could bundle these into a single function. Similar solutions exist for Java, C#, C++, etc.

share|improve this answer

I've been really tired of the enormous amount of JavaScript templating engines out there, and all their inline HTML-templates, different markup styles, etc., and decided to build a small library that enables XSLT formatting for JSON data structures. Not rocket science in any way -- it's just JSON parsed to XML and then formatted with a XSLT document. It's fast too, not as fast as JavaScript template engines in Chrome, but in most other browsers it's at least as fast as the JS engine alternative for larger data structures.

share|improve this answer

Not too sure there is need for this, and to me lack of tools suggests lack of need. JSON is best processed as objects (the way it's done in JS anyway), and you typically use language of the objects itself to do transformations (Java for Java objects created from JSON, same for Perl, Python, Perl, c#, PHP and so on). Just with normal assignments (or set, get), looping and so on.

I mean, XSLT is just another language, and one reason it is needed is that XML is not an object notation and thus objects of programming languages are not exact fits (impedance between hierarchic xml model and objects/structs).

share|improve this answer
After Facebook converted from XML to Json, I desperately need a tool like this. – Joe Soul-bringer Jan 31 '11 at 7:43
What use case are you thinking? Is it to be able to render JSON content similar how you'd render XML responses as HTML? Or something different? – StaxMan Feb 1 '11 at 5:20
I wonder how easy it would be to manipulate JSON transformation the programmatic object way (w/ looping, branching as needed, etc.) vs using XSLT type method, particularly in case of transforming massive JSON object and where some data in source JSON is shifted up/down some nodes in the target JSON (so not simply a direct copy of the structure) and say where a particular node in source or target JSON is part of object array within the JSON and the other JSON (source/target) is not. – David 2 days ago
Ease is very subjective, so I suspect much of it has to do with what one is used to. – StaxMan 2 days ago

I think not, but python and javascript do a good job slurping in JSON. Great idea, though.

share|improve this answer

it is very possible to convert JSON using XSLT: you need JSON2SAX deserializer and SAX2JSON serializer.

Sample code in Java: http://www.gerixsoft.com/blog/json/xslt4json

share|improve this answer

Why don't you converts JSON to XML using Mr. Data Coverter , tranform it using XSLT and then change it back to JSON using the same.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.