20 lines
363 B
JSON
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
|
|
}
|
|
}
|
|
}
|
|
|