From 2b55ba9799c58a5911f0465383b760a10c359a91 Mon Sep 17 00:00:00 2001 From: Barry Brands Date: Tue, 3 Feb 2026 15:17:45 +0100 Subject: [PATCH] ignore oneOf when importing --- lib/Service/ConfigurationService.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/Service/ConfigurationService.php b/lib/Service/ConfigurationService.php index 00bb296c..a2bf56fd 100644 --- a/lib/Service/ConfigurationService.php +++ b/lib/Service/ConfigurationService.php @@ -1683,6 +1683,11 @@ private function importSchema(array $data, array $slugsAndIdsMap, ?string $owner $property['items']['register'] = $this->registersMap[$property['items']['register']]->getId(); } } + + // OpenRegister cant save oneOf + if (isset($property['oneOf']) === true) { + $property['oneOf'] = []; + } }//end foreach }//end if