This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 147edc53ad65 Correct language and make debezium docs more consistent. 
(#20039)
147edc53ad65 is described below

commit 147edc53ad65fc0d5ddd85495e431af2431d7ddd
Author: Andreas Jonsson <[email protected]>
AuthorDate: Mon Nov 24 15:19:56 2025 +0100

    Correct language and make debezium docs more consistent. (#20039)
---
 .../src/main/docs/debezium-db2-component.adoc           | 14 ++++++++++++--
 .../src/main/docs/debezium-mongodb-component.adoc       | 11 +++++++++--
 .../src/main/docs/debezium-mysql-component.adoc         | 16 ++++++++++------
 .../src/main/docs/debezium-oracle-component.adoc        | 17 +++++++++++------
 .../src/main/docs/debezium-postgres-component.adoc      | 12 +++++++-----
 .../src/main/docs/debezium-sqlserver-component.adoc     | 12 +++++++-----
 6 files changed, 56 insertions(+), 26 deletions(-)

diff --git 
a/components/camel-debezium/camel-debezium-db2/src/main/docs/debezium-db2-component.adoc
 
b/components/camel-debezium/camel-debezium-db2/src/main/docs/debezium-db2-component.adoc
index bafc9b10fea2..3a072e928cc0 100644
--- 
a/components/camel-debezium/camel-debezium-db2/src/main/docs/debezium-db2-component.adoc
+++ 
b/components/camel-debezium/camel-debezium-db2/src/main/docs/debezium-db2-component.adoc
@@ -73,8 +73,18 @@ 
https://debezium.io/documentation/reference/1.18/connectors/db2ql.html#connector
 include::partial$component-endpoint-headers.adoc[]
 // component headers: END
 
-== Message body
-The message body if is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred as `Struct` format or `Map` format if 
you use the included Type Converter from `Struct` to `Map` (please look below 
for more explanation).
+
+== Usage
+
+=== Message body
+
+If the message body is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred. It is one of two formats:
+
+- `Struct`
+- `Map` (if you use the included Type Converter from `Struct` to `Map`)
+
+See below for more details.
+
 
 == Examples
 
diff --git 
a/components/camel-debezium/camel-debezium-mongodb/src/main/docs/debezium-mongodb-component.adoc
 
b/components/camel-debezium/camel-debezium-mongodb/src/main/docs/debezium-mongodb-component.adoc
index 31cc12a6a9e4..4589dd3a748e 100644
--- 
a/components/camel-debezium/camel-debezium-mongodb/src/main/docs/debezium-mongodb-component.adoc
+++ 
b/components/camel-debezium/camel-debezium-mongodb/src/main/docs/debezium-mongodb-component.adoc
@@ -79,8 +79,15 @@ include::partial$component-endpoint-headers.adoc[]
 
 *Note*: Debezium Mongodb uses MongoDB’s oplog to populate the CDC events, the 
update events in MongoDB’s oplog don’t have the before or after states of the 
changed document, so there’s no way for the Debezium connector to provide this 
information, therefore header key `CamelDebeziumBefore` is not available in 
this component.
 
-== Message body
-The message body if is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred as `String` JSON format, and you can 
unmarshal using Camel JSON Data Format.
+
+== Usage
+
+=== Message body
+
+If the message body is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred. It is in `String` JSON format, and 
you can unmarshal using Camel JSON Data Format.
+
+See below for more details.
+
 
 == Examples
 
diff --git 
a/components/camel-debezium/camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc
 
b/components/camel-debezium/camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc
index 0783751840b1..7ffef331a3a0 100644
--- 
a/components/camel-debezium/camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc
+++ 
b/components/camel-debezium/camel-debezium-mysql/src/main/docs/debezium-mysql-component.adoc
@@ -84,14 +84,18 @@ 
https://debezium.io/documentation/reference/0.10/connectors/mysql.html#connector
 include::partial$component-endpoint-headers.adoc[]
 // component headers: END
 
-== Message body
 
-The message body if is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred as `Struct` format or `Map` format if 
you use the included Type Converter from `Struct` to `Map`.
+== Usage
+
+=== Message body
+
+If the message body is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred. It is one of two formats:
+
+- `Struct`
+- `Map` (if you use the included Type Converter from `Struct` to `Map`)
+
+See below for more details.
 
-[NOTE]
-====
-Check below for more details.
-====
 
 == Examples
 
diff --git 
a/components/camel-debezium/camel-debezium-oracle/src/main/docs/debezium-oracle-component.adoc
 
b/components/camel-debezium/camel-debezium-oracle/src/main/docs/debezium-oracle-component.adoc
index 75d3c10dbdc2..87feb0c32d90 100644
--- 
a/components/camel-debezium/camel-debezium-oracle/src/main/docs/debezium-oracle-component.adoc
+++ 
b/components/camel-debezium/camel-debezium-oracle/src/main/docs/debezium-oracle-component.adoc
@@ -71,13 +71,18 @@ 
https://debezium.io/documentation/reference/1.18/connectors/oracleql.html#connec
 include::partial$component-endpoint-headers.adoc[]
 // component headers: END
 
-== Message body
-The message body if is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred as `Struct` format or `Map` format if 
you use the included Type Converter from `Struct` to `Map`.
 
-[NOTE]
-====
-Check below for more details.
-====
+== Usage
+
+=== Message body
+
+If the message body is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred. It is one of two formats:
+
+- `Struct`
+- `Map` (if you use the included Type Converter from `Struct` to `Map`)
+
+See below for more details.
+
 
 == Examples
 
diff --git 
a/components/camel-debezium/camel-debezium-postgres/src/main/docs/debezium-postgres-component.adoc
 
b/components/camel-debezium/camel-debezium-postgres/src/main/docs/debezium-postgres-component.adoc
index b745639ab0ac..721db98eed4c 100644
--- 
a/components/camel-debezium/camel-debezium-postgres/src/main/docs/debezium-postgres-component.adoc
+++ 
b/components/camel-debezium/camel-debezium-postgres/src/main/docs/debezium-postgres-component.adoc
@@ -71,16 +71,18 @@ 
https://debezium.io/documentation/reference/0.10/connectors/postgresql.html#conn
 include::partial$component-endpoint-headers.adoc[]
 // component headers: END
 
+
 == Usage
 
 === Message body
 
-The message body if is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred as `Struct` format or `Map` format if 
you use the included Type Converter from `Struct` to `Map`.
+If the message body is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred. It is one of two formats:
+
+- `Struct`
+- `Map` (if you use the included Type Converter from `Struct` to `Map`)
+
+See below for more details.
 
-[NOTE]
-====
-Check below for more details.
-====
 
 == Examples
 
diff --git 
a/components/camel-debezium/camel-debezium-sqlserver/src/main/docs/debezium-sqlserver-component.adoc
 
b/components/camel-debezium/camel-debezium-sqlserver/src/main/docs/debezium-sqlserver-component.adoc
index 650504c34ac5..76eae2a571d1 100644
--- 
a/components/camel-debezium/camel-debezium-sqlserver/src/main/docs/debezium-sqlserver-component.adoc
+++ 
b/components/camel-debezium/camel-debezium-sqlserver/src/main/docs/debezium-sqlserver-component.adoc
@@ -73,12 +73,14 @@ include::partial$component-endpoint-headers.adoc[]
 == Usage
 
 === Message body
-The message body if is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred as `Struct` format or `Map` format if 
you use the included Type Converter from `Struct` to `Map`.
 
-[NOTE]
-====
-Check below for more details.
-====
+If the message body is not `null` (in case of tombstones), it contains the 
state of the row after the event occurred. It is one of two formats:
+
+- `Struct`
+- `Map` (if you use the included Type Converter from `Struct` to `Map`)
+
+See below for more details.
+
 
 == Examples
 

Reply via email to