diff --git a/airbyte-integrations/connectors/source-jdbc/Dockerfile b/airbyte-integrations/connectors/source-jdbc/Dockerfile
index 0b57d8430ca93..8f44d096053e1 100644
--- a/airbyte-integrations/connectors/source-jdbc/Dockerfile
+++ b/airbyte-integrations/connectors/source-jdbc/Dockerfile
@@ -16,5 +16,5 @@ ENV APPLICATION source-jdbc
COPY --from=build /airbyte /airbyte
-LABEL io.airbyte.version=0.3.2
+LABEL io.airbyte.version=0.3.3
LABEL io.airbyte.name=airbyte/source-jdbc
diff --git a/airbyte-integrations/connectors/source-jdbc/src/main/resources/spec.json b/airbyte-integrations/connectors/source-jdbc/src/main/resources/spec.json
index 5460d99cb862e..83e56422038d3 100644
--- a/airbyte-integrations/connectors/source-jdbc/src/main/resources/spec.json
+++ b/airbyte-integrations/connectors/source-jdbc/src/main/resources/spec.json
@@ -8,16 +8,19 @@
"additionalProperties": false,
"properties": {
"username": {
- "description": "Username to use to access the database.",
+ "title": "Username",
+ "description": "The username which is used to access the database.",
"type": "string"
},
"password": {
- "description": "Password associated with the username.",
+ "title": "Password",
+ "description": "The password associated with this username.",
"type": "string",
"airbyte_secret": true
},
"jdbc_url": {
- "description": "JDBC formatted url. See the standard here.",
+ "title": "JDBC URL",
+ "description": "JDBC formatted URL. See the standard here.",
"type": "string"
}
}