fix: Remove min length validation from value of datastore

This commit is contained in:
Faruk AYDIN
2024-02-27 19:05:27 +01:00
parent bdb2f24a81
commit 047034d831

View File

@@ -10,7 +10,7 @@ class Datastore extends Base {
properties: {
id: { type: 'string', format: 'uuid' },
key: { type: 'string', minLength: 1 },
value: { type: 'string', minLength: 1 },
value: { type: 'string' },
scope: {
type: 'string',
enum: ['flow'],