Json-Schema

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





Discover More
What is JSON (JavaScript Object Notation)?

JSON 99)) is a structured text format that stands for JavaScript Object Notation. It is a simple text format that can be used for representing nested structures of data (lists of...
What is an HTML Form?

form is an element that represents a user-submittable form. When parsed as HTML, a form element's start tag will imply a p element's end tag just before. The pizza order form (taken from the...



Share this page:
Follow us:
Task Runner