19 lines
339 B
JSON
19 lines
339 B
JSON
{
|
|
"$id": "foo.schema.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "foo",
|
|
"type": "object",
|
|
"required": [ "name", "size" ],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "foo name",
|
|
"minLength": 1
|
|
},
|
|
"size": {
|
|
"type": "integer",
|
|
"minimum": 5
|
|
}
|
|
}
|
|
}
|