diff --git a/kafka/README.md b/kafka/README.md
index eeb647a4..79c22579 100644
--- a/kafka/README.md
+++ b/kafka/README.md
@@ -85,10 +85,10 @@ Field Name | Type |
`retention.bytes` | integer | The [`retention.bytes`](https://kafka.apache.org/documentation/#topicconfigs_retention.bytes) configuration option. | OPTIONAL | see kafka documentation
`delete.retention.ms` | integer | The [`delete.retention.ms`](https://kafka.apache.org/documentation/#topicconfigs_delete.retention.ms) configuration option. | OPTIONAL | see kafka documentation
`max.message.bytes` | integer | The [`max.message.bytes`](https://kafka.apache.org/documentation/#topicconfigs_max.message.bytes) configuration option. | OPTIONAL | see kafka documentation
-`schema.key.validation.enabled` | boolean | It shows whether the schema validation for the message key is enabled. | OPTIONAL | -
-`schema.key.lookup.strategy` | string | The name of the schema lookup strategy for the message key. | OPTIONAL | Clients should default to the vendor default if not supplied.
-`schema.value.validation.enabled` | boolean | It shows whether the schema validation for the message value is enabled. | OPTIONAL | -
-`schema.value.lookup.strategy` | string | The name of the schema lookup strategy for the message value. | OPTIONAL | Clients should default to the vendor default if not supplied.
+`confluent.key.schema.validation` | boolean | It shows whether the schema validation for the message key is enabled. Vendor specific config. | OPTIONAL | -
+`confluent.key.subject.name.strategy` | string | The name of the schema lookup strategy for the message key. Vendor specific config. | OPTIONAL | Clients should default to the vendor default if not supplied.
+`confluent.value.schema.validation` | boolean | It shows whether the schema validation for the message value is enabled. Vendor specific config. | OPTIONAL | -
+`confluent.value.subject.name.strategy` | string | The name of the schema lookup strategy for the message value. Vendor specific config. | OPTIONAL | Clients should default to the vendor default if not supplied.
This object MAY contain the properties defined above including optional additional properties.
@@ -101,10 +101,10 @@ topicConfiguration:
retention.bytes: 1000000000
delete.retention.ms: 86400000
max.message.bytes: 1048588
- schema.key.validation.enabled: true
- schema.key.lookup.strategy: "TopicNameStrategy"
- schema.value.validation.enabled: true
- schema.value.lookup.strategy: "TopicNameStrategy"
+ confluent.key.schema.validation: true
+ confluent.key.subject.name.strategy: "TopicNameStrategy"
+ confluent.value.schema.validation: true
+ confluent.value.subject.name.strategy: "TopicNameStrategy"
```