t.testing.2.1.0-BETA-19.source-code.invalid-schema.json Maven / Gradle / Ivy
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Product",
"description": "A product from the catalog",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a product",
"type": "integerz"
},
"name": {
"description": "Name of the product",
"type": "stringa"
},
"price": {
"type": "numbers",
"minimum": 0,
"exclusiveMinimum": true
}
},
"required": ["id", "name", "price"]
}