Is there any tool allowing to generate DataContract entity definitions based on a JSON sample? I'm really missing the old good WSDL metadata with code generation facilities.

link|improve this question

48% accept rate
JSON doesn't specify any type information. JSON nested objects that declare the same set of fields might correspond to equivalent classes -- or they might not. When you sacrifice all that meta data by using JSON, you really are sacrificing quite a lot of info, and part of that sacrifice means that it is not possible to robustly generate C# types (i.e. statically-typed) based on JSON (i.e. not dynamically-typed). – Kirk Woll Oct 28 '11 at 18:28
Well, you can guess. At least you can differentiate between entities, arrays, integers, and strings. You can try to guess type inside string value sample i.e. TimeSpan looks like "00:00:00" etc. I don't mind fixing entity types after generator but I do mind generating all by hand. – aloneguid Oct 28 '11 at 18:31
feedback

1 Answer

up vote 3 down vote accepted

Yes, you can find such a tool at http://carlosfigueira.me/JsonUtilities/JsonToContract.htm. There's a post about it at http://blogs.msdn.com/b/carlosfigueira/archive/2011/01/11/inferring-schemas-for-json.aspx.

link|improve this answer
Perfect! That's exactly what I wanted. It's not perfect but theres source code to fix the dirty stuff. – aloneguid Oct 28 '11 at 18:32
feedback

Your Answer

 
or
required, but never shown

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