jx/internal/folio/schemas/foo.schema.json
Matthew Rich 04b27dc5df
Some checks failed
Lint / golangci-lint (push) Has been cancelled
Declarative Tests / test (push) Has been cancelled
Declarative Tests / build-fedora (push) Has been cancelled
Declarative Tests / build-ubuntu-focal (push) Has been cancelled
add folio package
2024-08-17 18:19:56 -07:00

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
}
}
}