diff --git a/openmetadata-spec/src/main/resources/json/schema/entity/services/connections/messaging/redpandaConnection.json b/openmetadata-spec/src/main/resources/json/schema/entity/services/connections/messaging/redpandaConnection.json index 1a89dcee3a3..912d65772ae 100644 --- a/openmetadata-spec/src/main/resources/json/schema/entity/services/connections/messaging/redpandaConnection.json +++ b/openmetadata-spec/src/main/resources/json/schema/entity/services/connections/messaging/redpandaConnection.json @@ -42,6 +42,12 @@ "type": "string", "format": "password" }, + "schemaRegistryTopicSuffixName": { + "title": "Schema Registry Topic Suffix Name", + "description": "Schema Registry Topic Suffix Name. The suffix to be appended to the topic name to get topic schema from registry.", + "type": "string", + "default": "-value" + }, "securityProtocol": { "title": "Security Protocol", "description": "security.protocol consumer config property", diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/redpandaConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/redpandaConnection.ts index 0e6273a9d67..ec6586579ca 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/redpandaConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/services/connections/messaging/redpandaConnection.ts @@ -43,6 +43,11 @@ export interface RedpandaConnection { * Confluent Redpanda Schema Registry Config. */ schemaRegistryConfig?: { [key: string]: any }; + /** + * Schema Registry Topic Suffix Name. The suffix to be appended to the topic name to get + * topic schema from registry. + */ + schemaRegistryTopicSuffixName?: string; /** * Confluent Redpanda Schema Registry URL. */