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

Fix solver-input

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