improve bytes array persistence

This commit is contained in:
Ruben Fiszel
2025-05-29 15:57:36 +02:00
parent cbfac3e324
commit 203d850e77
@@ -26,7 +26,9 @@
? itemsType?.type
: Array.isArray(itemsType?.enum)
? 'enum'
: 'string'
: itemsType?.contentEncoding == 'base64'
? 'bytes'
: 'string'
let schema = {
properties: itemsType?.properties || {},