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

Avoid loading schema twice

parent c73fc10c
No related branches found
No related tags found
1 merge request!268Merge fork for interoperability of KoMa solver
{ {
"$schema": "https://json-schema.org/draft/2020-12/schema", "$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schemas/ak-export.schema.json", "$id": "schemas/ak-export.schema.json",
"allOf": [{ "$ref": "ak.schema.json" }],
"properties": { "properties": {
"info": {"unevaluatedProperties": false} "info": {"unevaluatedProperties": false}
} }
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
{ {
"$schema": "https://json-schema.org/draft/2020-12/schema", "$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schemas/participant-export.schema.json", "$id": "schemas/participant-export.schema.json",
"allOf": [{ "$ref": "participant.schema.json" }],
"properties": { "properties": {
"preferences": { "preferences": {
"items": { "items": {
......
{ {
"$schema": "https://json-schema.org/draft/2020-12/schema", "$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schemas/room-export.schema.json", "$id": "schemas/room-export.schema.json",
"allOf": [{ "$ref": "room.schema.json" }],
"properties": { "properties": {
"info": {"unevaluatedProperties": false} "info": {"unevaluatedProperties": false}
} }
......
{ {
"$schema": "https://json-schema.org/draft/2020-12/schema", "$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schemas/timeslot-export.schema.json", "$id": "schemas/timeslot-export.schema.json",
"allOf": [{ "$ref": "timeslot.schema.json" }],
"properties": { "properties": {
"info": {"unevaluatedProperties": false}, "info": {"unevaluatedProperties": false},
"blocks": { "blocks": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment