mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-10 17:53:36 +02:00
Fix: make nullable fields nullable
This commit is contained in:
parent
9577d7f3b8
commit
8840b4a204
@ -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: {
|
||||
|
Loading…
Reference in New Issue
Block a user