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
- Schema Validation: https://ajv.js.org/