jx/internal/schema/schemas/testdata.schema.json

20 lines
363 B
JSON
Raw Normal View History

2024-09-19 08:14:47 +00:00
{
"$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
}
}
}