1{ 2 "$id": "https://example.com/person.schema.json", 3 "$schema": "http://json-schema.org/draft-07/schema#", 4 "title": "Person", 5 "type": "object", 6 "properties": { 7 "firstName": { 8 "type": "string", 9 "description": "The person's first name." 10 }, 11 "foo": { 12 "type": "array", 13 "maxItems": 3 14 } 15 }, 16 "message": { 17 "maxItems" : "MaxItem must be 3 only", 18 "type" : "Invalid type" 19 } 20} 21