jx/internal/schema/schemas/testdata.schema.json
Matthew Rich 20a4e1a89d
Some checks are pending
Lint / golangci-lint (push) Waiting to run
Declarative Tests / test (push) Waiting to run
Declarative Tests / build-fedora (push) Waiting to run
Declarative Tests / build-ubuntu-focal (push) Waiting to run
add schema pkg
2024-09-19 08:14:47 +00:00

20 lines
363 B
JSON

{
"$id": "testdata.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "testdata",
"type": "object",
"required": [ "name" ],
"properties": {
"name": {
"type": "string",
"description": "test name"
},
"len": {
"type": "integer",
"description": "test number",
"minimum": 5
}
}
}