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