From 66ae76d7f2d82e2ba94d148e3c17de1660325364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Legi=C4=99=C4=87?= Date: Tue, 2 Jul 2024 01:47:05 +0200 Subject: [PATCH] Don't include $schema of questions after imploding --- scripts/implodeOverrides.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/implodeOverrides.ts b/scripts/implodeOverrides.ts index 62673f2..d4c04d9 100644 --- a/scripts/implodeOverrides.ts +++ b/scripts/implodeOverrides.ts @@ -58,6 +58,7 @@ async function processSubject(subjectId: string) { const fileContents = await file.json(); delete fileContents.createdAt; + delete fileContents.$schema; outData.data.push(fileContents); }