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

I'm writing some acceptance tests for a java webapp that returns JSON objects. I would like to verify that the JSON returned validates against a schema. Can anyone suggest any tools for this?

share|improve this question
1  
A schema for JSON? Does such a thing exist? – skaffman Mar 23 '10 at 10:39
4  
Yes – quikchange May 23 '11 at 20:52

3 Answers

up vote 5 down vote accepted

The JSON Tools project (Programmer's Guide) includes a tool to validate the contents of a JSON file using a JSON schema.

An alternative could be to validate running the (JavaScript) JSON Schema Validator using Rhino.

share|improve this answer
1  
I'm betting a lot has changed on this subject since March 2010. What are your thoughts now? Are you using anything for JSON validation? Also, @Fredrik , how about yourself? – b.long Nov 11 '11 at 20:21

The json-schema-validator (currently in version 0.0.1, so it's in a pre-alpha state) worked pretty well for me. Be aware that it is not 100% feature complete but it could still correctly identify a lot of errors in my json content.

share|improve this answer
The project behind is hosted on gitorious.org/json-schema-validation-in-java and still quite active – ngeek Jun 18 '12 at 7:53

@b.long I came across this post looking for a very particular solution to easily verify if a String's content has a JSON (object/array). I couldn't find any library that would suit my needs.

JSON Tools project or json-schema-validator though offer a lot are too big for my needs. Thus I did implement my own solution that is build on top of JSON.org reference implementation of JSON in Java. I have already been using the JSON.org's code and technically all this functionality was already there, thus I added this very simple functionality reusing its code.

I use it to easily test if the String returned by methods querying my database are formatted in proper JSON which otherwise if badly formatted and posted to a client might cause it to stop working.

Hope this is of use to you as it is to me.

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.