Do JSON \ RESTfull Web services have a schema equivilent to a wsdl?

If the answer is no, then how do 2 sides agree on a shared format?

If the answer is yes, are there any tools to auto generate JSON Java client\server from the schema?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 7 down vote accepted

JSON has a schema. REST services have WADL.

Also there are tools like wadl2java.

link|improve this answer
feedback

I is possible to have a schema for restful web services and some tools support this. But it is common for restful web services to be published without the publishing organisation providing a machine readable schema.

Usually they provide some human readable documentation describing the structure of the JSON. The consumer writes a simple hand written library to consume it (much easer than it sounds in practice with modern tools) or the publisher provides a client library for users to use.

Also JSON/RESTfull web services tend to be carefully designed to deliver simple datastructers over the wire which are easy to consume. Do you need a schema for a list?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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