com.github.fge.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
The newest version!
{
"title": "custom format attribute demonstration",
"type": "array",
"items": {
"type": "object",
"required": [ "id", "name" ],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
}
}
}
}