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

19 lines
339 B
JSON
Raw Permalink Normal View History

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