org.eel.kitchen.jsonschema.examples.custom-fmt.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-validator Show documentation
Show all versions of json-schema-validator Show documentation
A Java implementation of the JSON Schema specification
{
"title": "custom format attribute demonstration",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"required": true
},
"name": {
"type": "string",
"required": true
}
}
}
}