jx/internal/folio/schemas/bar.schema.json

23 lines
404 B
JSON
Raw Normal View History

2024-08-18 01:19:56 +00:00
{
"$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
}
}
}