Table of Contents

Json-Schema

About

json-schema is a JSON based format for defining the schema / structure of JSON data.

JSON (JavaScript Object Notation)draft-zyp-json-schema-03 defines the media type application/schema+json.

Example

{
     "description":"A person",
     "type":"object",

     "properties":{
       "name":{"type":"string"},
       "age" :{
           "type":"integer",
           "maximum":125
       }
     }
}

From the reference 1)

Library

References