1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-05 17:53:12 +02:00

Fix: make nullable fields nullable

This commit is contained in:
Thomas Heartman 2022-06-28 08:37:38 +02:00
parent 9577d7f3b8
commit 8840b4a204

View File

@ -23,12 +23,15 @@ export const eventSchema = {
},
environment: {
type: 'string',
nullable: true,
},
project: {
type: 'string',
nullable: true,
},
featureName: {
type: 'string',
nullable: true,
},
data: {},
preData: {},
@ -37,6 +40,7 @@ export const eventSchema = {
items: {
$ref: tagSchema.$id,
},
nullable: true,
},
},
components: {