We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e422f97 commit c7a22e1Copy full SHA for c7a22e1
packages/rum-core/test/formatValidation.ts
@@ -76,6 +76,9 @@ function validateRumFormat(rumEvent: Context) {
76
if (error.keyword === 'enum') {
77
message += ` ${formatAllowedValues(error.params.allowedValues)}`
78
}
79
+ if (error.keyword === 'additionalProperties') {
80
+ message += ` ${formatAllowedValues([error.params.additionalProperty])}`
81
+ }
82
return ` event${error.instancePath || ''} ${message}`
83
})
84
.join('\n')
0 commit comments