You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem related to JsonSerializer which generates only Draft 04 schema when validates messages against schema registry as it is shown in this sample.
In my case I already have Draft 2020-12 Json schema registered in the schema register and need to validate messages against the latest already created schema. I do not need to create any new schemas on fly in the schema register on fly so I pass the following
var jsonSerializerConfig = new JsoinSerializerConfig
{
AutoRegisterSchemas = false
}
In this case I receive an error Schema not found; error code: 40403.
I tend to believe that it is beacuse NJsonSchema does not support latest schema spec versions.
The text was updated successfully, but these errors were encountered:
Hi All,
I have a problem related to JsonSerializer which generates only Draft 04 schema when validates messages against schema registry as it is shown in this sample.
In my case I already have Draft 2020-12 Json schema registered in the schema register and need to validate messages against the latest already created schema. I do not need to create any new schemas on fly in the schema register on fly so I pass the following
In this case I receive an error
Schema not found; error code: 40403
.I tend to believe that it is beacuse NJsonSchema does not support latest schema spec versions.
The text was updated successfully, but these errors were encountered: