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

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

commit 57fe62f0fdd7391e85ea08873ab7e3c795581a8d
Author: MelissaFlinn <[email protected]>
AuthorDate: Mon Jul 11 11:59:31 2022 -0400

    doc-config-descriptions-edit database
---
 kamelets/aws-redshift-sink.kamelet.yaml      | 16 ++++++++--------
 kamelets/aws-redshift-source.kamelet.yaml    | 18 +++++++++---------
 kamelets/jms-ibm-mq-sink.kamelet.yaml        |  2 +-
 kamelets/jms-ibm-mq-source.kamelet.yaml      |  2 +-
 kamelets/mariadb-sink.kamelet.yaml           | 18 +++++++++---------
 kamelets/mariadb-source.kamelet.yaml         | 14 +++++++-------
 kamelets/mysql-sink.kamelet.yaml             | 18 +++++++++---------
 kamelets/mysql-source.kamelet.yaml           | 16 ++++++++--------
 kamelets/oracle-database-sink.kamelet.yaml   | 18 +++++++++---------
 kamelets/oracle-database-source.kamelet.yaml | 16 ++++++++--------
 kamelets/postgresql-sink.kamelet.yaml        | 16 ++++++++--------
 kamelets/postgresql-source.kamelet.yaml      | 14 +++++++-------
 kamelets/sqlserver-sink.kamelet.yaml         | 18 +++++++++---------
 kamelets/sqlserver-source.kamelet.yaml       | 14 +++++++-------
 14 files changed, 100 insertions(+), 100 deletions(-)

diff --git a/kamelets/aws-redshift-sink.kamelet.yaml 
b/kamelets/aws-redshift-sink.kamelet.yaml
index 52d03238..2fe5e1c6 100644
--- a/kamelets/aws-redshift-sink.kamelet.yaml
+++ b/kamelets/aws-redshift-sink.kamelet.yaml
@@ -32,11 +32,11 @@ spec:
     description: |-
       Send data to an AWS Redshift Database.
 
-      This Kamelet expects a JSON as body. The mapping between the JSON fields 
and parameters is done by key, so if you have the following query:
+      This Kamelet expects a JSON-formatted body. Use key:value pairs to map 
the JSON fields and parameters. For example, here is a query:
 
       'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'
 
-      The Kamelet needs to receive as input something like:
+      Here is example input for the example query:
 
       '{ "username":"oscerd", "city":"Rome"}'
     required:
@@ -49,23 +49,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the AWS RedShi data source.
         type: string
         default: 5439
       username:
         title: Username
-        description: The username to use for accessing a secured AWS Redshift 
Database
+        description: The username to access a secured AWS Redshift Database.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured AWS Redshift 
Database
+        description: The password to access a secured AWS Redshift Database.
         type: string
         format: password
         x-descriptors:
@@ -73,12 +73,12 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the AWS Redshift Database
+        description: The query to execute against the AWS Redshift Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the AWS RedShift Database.
         type: string
   types:
     in:
diff --git a/kamelets/aws-redshift-source.kamelet.yaml 
b/kamelets/aws-redshift-source.kamelet.yaml
index f3efdc6e..488a947a 100644
--- a/kamelets/aws-redshift-source.kamelet.yaml
+++ b/kamelets/aws-redshift-source.kamelet.yaml
@@ -30,7 +30,7 @@ spec:
   definition:
     title: "AWS Redshift Source"
     description: |-
-      Query data from an AWS Redshift Database.
+      Query data from an AWS RedShift Database.
     required:
       - serverName
       - username
@@ -41,23 +41,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 5439
       username:
         title: Username
-        description: The username to use for accessing a secured AWS Redshift 
Database
+        description: The username to access a secured AWS RedShift Database.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured AWS Redshift 
Database
+        description: The password to access a secured AWS RedShift Database.
         type: string
         format: password
         x-descriptors:
@@ -65,21 +65,21 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the AWS Redshift Database
+        description: The query to execute against the AWS RedShift Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the AWS RedShift Database.
         type: string
       consumedQuery:
         title: Consumed Query
-        description: A query to run on a tuple consumed
+        description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
       delay:
         title: Delay
-        description: Milliseconds before the next poll from database
+        description: The number of milliseconds before the next poll from the 
AWS RedShift database.
         type: integer
         default: 500
   types:
diff --git a/kamelets/jms-ibm-mq-sink.kamelet.yaml 
b/kamelets/jms-ibm-mq-sink.kamelet.yaml
index 10a71897..dcb199fe 100644
--- a/kamelets/jms-ibm-mq-sink.kamelet.yaml
+++ b/kamelets/jms-ibm-mq-sink.kamelet.yaml
@@ -33,7 +33,7 @@ spec:
     description: |-
       A Kamelet that can produce events to an IBM MQ message queue using JMS.
 
-      In your KameletBinding file you'll need to explicitly declare the IBM MQ 
Server driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the IBM MQ 
Server driver dependency in spec->integration->dependencies
 
       - "mvn:com.ibm.mq:com.ibm.mq.allclient:<version>"
 
diff --git a/kamelets/jms-ibm-mq-source.kamelet.yaml 
b/kamelets/jms-ibm-mq-source.kamelet.yaml
index 07ef03ee..6e310e2d 100644
--- a/kamelets/jms-ibm-mq-source.kamelet.yaml
+++ b/kamelets/jms-ibm-mq-source.kamelet.yaml
@@ -33,7 +33,7 @@ spec:
     description: |-
       A Kamelet that can read events from an IBM MQ message queue using JMS.
       
-      In your KameletBinding file you'll need to explicitly declare the IBM MQ 
Server driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the IBM MQ 
Server driver dependency in spec->integration->dependencies
 
       - "mvn:com.ibm.mq:com.ibm.mq.allclient:<version>"
       
diff --git a/kamelets/mariadb-sink.kamelet.yaml 
b/kamelets/mariadb-sink.kamelet.yaml
index 068947ea..5933567c 100644
--- a/kamelets/mariadb-sink.kamelet.yaml
+++ b/kamelets/mariadb-sink.kamelet.yaml
@@ -32,15 +32,15 @@ spec:
     description: |-
       Send data to a MariaDB Database.
 
-      In your KameletBinding file you'll need to explicitly declare the 
MariaDB Server driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the MariaDB 
Server driver dependency in spec->integration->dependencies.
       
       - "mvn:org.mariadb.jdbc:mariadb-java-client:<version>"
 
-      This Kamelet expects a JSON as body. The mapping between the JSON fields 
and parameters is done by key, so if you have the following query:
+      This Kamelet expects a JSON-formatted body. Use key:value pairs to map 
the JSON fields and parameters. For example, here is a query:
 
       'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'
 
-      The Kamelet needs to receive as input something like:
+      Here is example input for the example query:
 
       '{ "username":"oscerd", "city":"Rome"}'
     required:
@@ -53,23 +53,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 3306
       username:
         title: Username
-        description: The username to use for accessing a secured MariaDB 
Database
+        description: The username to access a secured MariaDB Database.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured MariaDB 
Database
+        description: The password to access a secured MariaDB Database.
         type: string
         format: password
         x-descriptors:
@@ -77,12 +77,12 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the MariaDB Database
+        description: The query to execute against the MariaDB Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the MariaDB Database Name.
         type: string
   types:
     in:
diff --git a/kamelets/mariadb-source.kamelet.yaml 
b/kamelets/mariadb-source.kamelet.yaml
index 024b969c..44ff33db 100644
--- a/kamelets/mariadb-source.kamelet.yaml
+++ b/kamelets/mariadb-source.kamelet.yaml
@@ -32,7 +32,7 @@ spec:
     description: |-
       Query data from a MariaDB Database.
 
-      In your KameletBinding file you'll need to explicitly declare the 
MariaDB Server driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the MariaDB 
Server driver dependency in spec->integration->dependencies
       
       - "mvn:org.mariadb.jdbc:mariadb-java-client:<version>"
     required:
@@ -45,23 +45,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 3306
       username:
         title: Username
-        description: The username to use for accessing a secured MariaDB 
Database
+        description: The username to access a secured MariaDB Database
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured MariaDB 
Database
+        description: The password to access a secured MariaDB Database
         type: string
         format: password
         x-descriptors:
@@ -69,12 +69,12 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the MariaDB Database
+        description: The query to execute against the MariaDB Database
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the Database.
         type: string
       consumedQuery:
         title: Consumed Query
diff --git a/kamelets/mysql-sink.kamelet.yaml b/kamelets/mysql-sink.kamelet.yaml
index 50cb8040..10bf9d1d 100644
--- a/kamelets/mysql-sink.kamelet.yaml
+++ b/kamelets/mysql-sink.kamelet.yaml
@@ -32,15 +32,15 @@ spec:
     description: |-
       Send data to a MySQL Database.
       
-      In your KameletBinding file you'll need to explicitly declare the SQL 
Server driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the SQL Server 
driver dependency in spec->integration->dependencies.
       
       - "mvn:mysql:mysql-connector-java:<version>"
 
-      This Kamelet expects a JSON as body. The mapping between the JSON fields 
and parameters is done by key, so if you have the following query:
+      This Kamelet expects a JSON-formatted body. Use key:value pairs to map 
the JSON fields and parameters. For example, here is a query:
 
       'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'
 
-      The Kamelet needs to receive as input something like:
+      Here is example input for the example query:
 
       '{ "username":"oscerd", "city":"Rome"}'
     required:
@@ -53,23 +53,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 3306
       username:
         title: Username
-        description: The username to use for accessing a secured MySQL Database
+        description: The username to access a secured MySQL Database.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured MySQL Database
+        description: The password to access a secured MySQL Database.
         type: string
         format: password
         x-descriptors:
@@ -77,12 +77,12 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the MySQL Database
+        description: The query to execute against the MySQL Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the MySQL Database.
         type: string
   types:
     in:
diff --git a/kamelets/mysql-source.kamelet.yaml 
b/kamelets/mysql-source.kamelet.yaml
index 10789040..ed15de40 100644
--- a/kamelets/mysql-source.kamelet.yaml
+++ b/kamelets/mysql-source.kamelet.yaml
@@ -32,7 +32,7 @@ spec:
     description: |-
       Query data from a MySQL Database.
 
-      In your KameletBinding file you'll need to explicitly declare the SQL 
Server driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the SQL Server 
driver dependency in spec->integration->dependencies.
       
       - "mvn:mysql:mysql-connector-java:<version>"
     required:
@@ -45,23 +45,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 3306
       username:
         title: Username
-        description: The username to use for accessing a secured MySQL Database
+        description: The username to access a secured MySQL Database
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured MySQL Database
+        description: The password to access a secured MySQL Database.
         type: string
         format: password
         x-descriptors:
@@ -69,16 +69,16 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the MySQL Database
+        description: The query to execute against the MySQL Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the MySQL Database.
         type: string
       consumedQuery:
         title: Consumed Query
-        description: A query to run on a tuple consumed
+        description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
   types:
diff --git a/kamelets/oracle-database-sink.kamelet.yaml 
b/kamelets/oracle-database-sink.kamelet.yaml
index 252eead4..f8bb0e41 100644
--- a/kamelets/oracle-database-sink.kamelet.yaml
+++ b/kamelets/oracle-database-sink.kamelet.yaml
@@ -32,15 +32,15 @@ spec:
     description: |-
       Send data to a Oracle Database.
 
-      In your KameletBinding file you'll need to explicitly declare the Oracle 
Database driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the Oracle 
Database driver dependency in spec->integration->dependencies.
 
       - "mvn:com.oracle.database.jdbc:ojdbc11:<version>"
 
-      This Kamelet expects a JSON as body. The mapping between the JSON fields 
and parameters is done by key, so if you have the following query:
+      This Kamelet expects a JSON-formatted body. Use key:value pairs to map 
the JSON fields and parameters. For example, here is a query:
 
       'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'
 
-      The Kamelet needs to receive as input something like:
+      Here is example input for the example query:
 
       '{ "username":"oscerd", "city":"Rome"}'
     required:
@@ -53,23 +53,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 1521
       username:
         title: Username
-        description: The username to use for accessing a secured Oracle 
Database
+        description: The username to access a secured Oracle Database.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured Oracle 
Database
+        description: The password to access a secured Oracle Database.
         type: string
         format: password
         x-descriptors:
@@ -77,12 +77,12 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the Oracle Database
+        description: The query to execute against the Oracle Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the Oracle Database.
         type: string
   types:
     in:
diff --git a/kamelets/oracle-database-source.kamelet.yaml 
b/kamelets/oracle-database-source.kamelet.yaml
index 1bc965bb..0ea6fcbe 100644
--- a/kamelets/oracle-database-source.kamelet.yaml
+++ b/kamelets/oracle-database-source.kamelet.yaml
@@ -32,7 +32,7 @@ spec:
     description: |-
       Query data from a Oracle Database.
 
-      In your KameletBinding file you'll need to explicitly declare the Oracle 
Database driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the Oracle 
Database driver dependency in spec->integration->dependencies.
 
       - "mvn:com.oracle.database.jdbc:ojdbc11:<version>"
     required:
@@ -45,23 +45,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 1521
       username:
         title: Username
-        description: The username to use for accessing a secured Oracle 
Database
+        description: The username to access a secured Oracle Database.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured Oracle 
Database
+        description: The password to access a secured Oracle Database.
         type: string
         format: password
         x-descriptors:
@@ -69,16 +69,16 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the Oracle Database
+        description: The query to execute against the Oracle Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the Oracle Database.
         type: string
       consumedQuery:
         title: Consumed Query
-        description: A query to run on a tuple consumed
+        description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
   types:
diff --git a/kamelets/postgresql-sink.kamelet.yaml 
b/kamelets/postgresql-sink.kamelet.yaml
index 55c6f0ff..f1a19054 100644
--- a/kamelets/postgresql-sink.kamelet.yaml
+++ b/kamelets/postgresql-sink.kamelet.yaml
@@ -32,11 +32,11 @@ spec:
     description: |-
       Send data to a PostgreSQL Database.
 
-      This Kamelet expects a JSON as body. The mapping between the JSON fields 
and parameters is done by key, so if you have the following query:
+      This Kamelet expects a JSON-formatted body. Use key:value pairs to map 
the JSON fields and parameters. For example, here is a query:
 
       'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'
 
-      The Kamelet needs to receive as input something like:
+      Here is example input for the example query:
 
       '{ "username":"oscerd", "city":"Rome"}'
     required:
@@ -49,23 +49,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 5432
       username:
         title: Username
-        description: The username to use for accessing a secured PostgreSQL 
Database
+        description: The username to access a secured PostgreSQL Database.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured PostgreSQL 
Database
+        description: The password to access a secured PostgreSQL Database.
         type: string
         format: password
         x-descriptors:
@@ -73,12 +73,12 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the PostgreSQL Database
+        description: The query to execute against the PostgreSQL Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the PostgreSQL Database.
         type: string
   types:
     in:
diff --git a/kamelets/postgresql-source.kamelet.yaml 
b/kamelets/postgresql-source.kamelet.yaml
index cd1ad6db..eb277084 100644
--- a/kamelets/postgresql-source.kamelet.yaml
+++ b/kamelets/postgresql-source.kamelet.yaml
@@ -41,23 +41,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 5432
       username:
         title: Username
-        description: The username to use for accessing a secured PostgreSQL 
Database
+        description: The username to access a secured PostgreSQL Database.
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured PostgreSQL 
Database
+        description: The password to access a secured PostgreSQL Database.
         type: string
         format: password
         x-descriptors:
@@ -65,16 +65,16 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the PostgreSQL Database
+        description: The query to execute against the PostgreSQL Database.
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the PostgreSQL Database.
         type: string
       consumedQuery:
         title: Consumed Query
-        description: A query to run on a tuple consumed
+        description: A query to run on a tuple consumed.
         type: string
         example: 'DELETE FROM accounts where user_id = :#user_id'
   types:
diff --git a/kamelets/sqlserver-sink.kamelet.yaml 
b/kamelets/sqlserver-sink.kamelet.yaml
index b1854569..0e3a2ea0 100644
--- a/kamelets/sqlserver-sink.kamelet.yaml
+++ b/kamelets/sqlserver-sink.kamelet.yaml
@@ -32,15 +32,15 @@ spec:
     description: |-
       Send data to a Microsoft SQL Server Database.
 
-      In your KameletBinding file you'll need to explicitly declare the SQL 
Server driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the SQL Server 
driver dependency in spec->integration->dependencies
 
       - "mvn:com.microsoft.sqlserver:mssql-jdbc:<version>"
 
-      This Kamelet expects a JSON as body. The mapping between the JSON fields 
and parameters is done by key, so if you have the following query:
+      This Kamelet expects a JSON-formatted body. Use key:value pairs to map 
the JSON fields and parameters. For example, here is a query:
 
       'INSERT INTO accounts (username,city) VALUES (:#username,:#city)'
 
-      The Kamelet needs to receive as input something like:
+      Here is example input for the example query:
 
       '{ "username":"oscerd", "city":"Rome"}'
     required:
@@ -53,23 +53,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 1433
       username:
         title: Username
-        description: The username to use for accessing a secured SQL Server 
Database
+        description: The username to access a secured SQL Server Database
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured SQL Server 
Database
+        description: The password to access a secured SQL Server Database
         type: string
         format: password
         x-descriptors:
@@ -77,12 +77,12 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the SQL Server Database
+        description: The query to execute against the SQL Server Database
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the Database.
         type: string
   types:
     in:
diff --git a/kamelets/sqlserver-source.kamelet.yaml 
b/kamelets/sqlserver-source.kamelet.yaml
index b81fa26b..b6902242 100644
--- a/kamelets/sqlserver-source.kamelet.yaml
+++ b/kamelets/sqlserver-source.kamelet.yaml
@@ -32,7 +32,7 @@ spec:
     description: |-
       Query data from a Microsoft SQL Server Database.
 
-      In your KameletBinding file you'll need to explicitly declare the SQL 
Server driver dependency in spec->integration->dependencies
+      In your KameletBinding file, you must explicitly declare the SQL Server 
driver dependency in spec->integration->dependencies
 
       - "mvn:com.microsoft.sqlserver:mssql-jdbc:<version>"
     required:
@@ -45,23 +45,23 @@ spec:
     properties:
       serverName:
         title: Server Name
-        description: Server Name for the data source
+        description: The server name for the data source.
         type: string
         example: localhost
       serverPort:
         title: Server Port
-        description: Server Port for the data source
+        description: The server port for the data source.
         type: string
         default: 1433
       username:
         title: Username
-        description: The username to use for accessing a secured SQL Server 
Database
+        description: The username to access a secured SQL Server Database
         type: string
         x-descriptors:
         - urn:camel:group:credentials
       password:
         title: Password
-        description: The password to use for accessing a secured SQL Server 
Database
+        description: The password to access a secured SQL Server Database
         type: string
         format: password
         x-descriptors:
@@ -69,12 +69,12 @@ spec:
         - urn:camel:group:credentials
       query:
         title: Query
-        description: The Query to execute against the SQL Server Database
+        description: The query to execute against the SQL Server Database
         type: string
         example: 'INSERT INTO accounts (username,city) VALUES 
(:#username,:#city)'
       databaseName:
         title: Database Name
-        description: The Database Name we are pointing
+        description: The name of the Database.
         type: string
       consumedQuery:
         title: Consumed Query

Reply via email to