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
const name = schema.namespace + '.' + schema.name;
const subSchemas = await schemaRegistry.register(
{ type: SchemaType.AVRO, schema: JSON.stringify(schema) },
{ subject: name }
);
const parentSchema = await schemaRegistry.register({
type: SchemaType.AVRO,
schema: JSON.stringify(schema),
references: ... // We can obtain details like name and subject from subSchemas, but not the version here
});
);
There isn't a way to retrieve the version number of the registered schema? How can we set references without version details?
The text was updated successfully, but these errors were encountered:
There isn't a way to retrieve the version number of the registered schema? How can we set references without version details?
The text was updated successfully, but these errors were encountered: