From e2ae0531432f2b0b96dc634f6989f6d25966807f Mon Sep 17 00:00:00 2001
From: Felix Blanke <info@fblanke.de>
Date: Tue, 4 Mar 2025 17:41:45 +0100
Subject: [PATCH] Avoid loading schema twice

---
 schemas/ak-export.schema.json          | 1 -
 schemas/participant-export.schema.json | 1 -
 schemas/room-export.schema.json        | 1 -
 schemas/timeslot-export.schema.json    | 1 -
 4 files changed, 4 deletions(-)

diff --git a/schemas/ak-export.schema.json b/schemas/ak-export.schema.json
index 2ab8cf77..8ac634a1 100644
--- a/schemas/ak-export.schema.json
+++ b/schemas/ak-export.schema.json
@@ -1,7 +1,6 @@
 {
   "$schema": "https://json-schema.org/draft/2020-12/schema",
   "$id": "schemas/ak-export.schema.json",
-  "allOf": [{ "$ref": "ak.schema.json" }],
   "properties": {
     "info": {"unevaluatedProperties": false}
   }
diff --git a/schemas/participant-export.schema.json b/schemas/participant-export.schema.json
index 935b2188..4c525f50 100644
--- a/schemas/participant-export.schema.json
+++ b/schemas/participant-export.schema.json
@@ -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": {
diff --git a/schemas/room-export.schema.json b/schemas/room-export.schema.json
index bc14670a..ea709cff 100644
--- a/schemas/room-export.schema.json
+++ b/schemas/room-export.schema.json
@@ -1,7 +1,6 @@
 {
   "$schema": "https://json-schema.org/draft/2020-12/schema",
   "$id": "schemas/room-export.schema.json",
-  "allOf": [{ "$ref": "room.schema.json" }],
   "properties": {
     "info": {"unevaluatedProperties": false}
   }
diff --git a/schemas/timeslot-export.schema.json b/schemas/timeslot-export.schema.json
index d0bef124..5cce634c 100644
--- a/schemas/timeslot-export.schema.json
+++ b/schemas/timeslot-export.schema.json
@@ -1,7 +1,6 @@
 {
   "$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": {
-- 
GitLab