Skip to content
Snippets Groups Projects
Commit be044682 authored by Felix Blanke's avatar Felix Blanke
Browse files

Fix solver-input

parent fbe047e4
Branches
No related tags found
1 merge request!25Feature: Use JSON schema
......@@ -3,10 +3,10 @@
"$id": "/schema/solver-input.schema.json",
"type": "object",
"properties": {
"aks": {"$ref": "/schema/ak.schema.json"},
"rooms": {"$ref": "/schema/room.schema.json"},
"participants": {"$ref": "/schema/participant.schema.json"},
"timeslots": {"$ref": "/schema/timeslot.schema.json"},
"aks": {"type": "array", "items": {"$ref": "/schema/ak.schema.json"}},
"rooms": {"type": "array", "items": {"$ref": "/schema/room.schema.json"}},
"participants": {"type": "array", "items": {"$ref": "/schema/participant.schema.json"}},
"timeslots": {"type": "array", "items": {"$ref": "/schema/timeslot.schema.json"}},
"info": {
"type": "object",
"properties": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment