Library version:
JSON schema version: draft-04, draft-06, draft-07, 2019-09, 2020-12
I am willing to contribute to fix the issue 💚 I won't contribute to fix the issue ❌
Click to expand/collapse
{
"title": "Person",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 20
},
"age": {
"type": "number",
"minimum": 18,
"maximum": 90
},
"hobbies": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
},
"favoriteAnimal": {
"enum": ["dog", "cat", "sloth"]
}
},
"required": ["name", "age"]
}