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 f8d0f4a commit fa3fa32Copy full SHA for fa3fa32
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