com.github.fge.jsonschema.examples.custom-fmt.json Maven / Gradle / Ivy
{
"title": "custom format attribute demonstration",
"type": "array",
"items": {
"type": "object",
"required": [ "id", "name" ],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy