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

Avoid loading schema twice

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