
Lab #11: Case-insensitive property names

The below JSON Schema defines an object that contains
two properties: name and age.
You are to revise the schema so that the property names
are case-insensitive.

Question: does it make sense to use the "require" keyword?

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "properties": {
        "name": {"type": "string"},
        "age": {"type": "integer"}
    },
    "additionalProperties": false
}