testSchema.json

{
“$schema”: “http://json-schema.org/draft-04/schema”,
“type”: “object”,
“title”: “Container”,
“description”: “Brilliant json file that I’ve created.”,
“properties”: {
“$schema”: {
“type”: “string”,
“title”: “Schema”,
“description”: “Pointer to the schema against which this document should be validated.”
},
“numberOfSomethings”: {
“type”: “number”,
“title”: “Number Of Somethings”,
“minimum”: 0,
“maximum”: 100,
“description”: “This number is the number of somethings that there are.”
}
}
}