2022-01-27 15:21:58 +01: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]+"
}
}
}