2021-04-09 16:10:21 +02:00

15 lines
282 B
JSON

{
"definitions": {},
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Test Validation Schema",
"required": ["id"],
"properties": {
"id": {
"type": "number",
"title": "ID for object",
"pattern": "[0-9]+"
}
}
}