confluent-schema-registry-node
Version:
Confluent Schema Registry API Node.js Client
20 lines (12 loc) • 488 B
Markdown
# Confluent Schema Registry Node.js
## Documentation
### API
#### getGlobalCompatibilityLevel
#### updateGlobalCompatibilityLevel
### Example
<pre>var schemaRegistryApi = require('confluent-schema-registry-node');
console.log("Get current global compatibilityLevel");
schemaRegistryApi.getGlobalCompatibilityLevel();
console.log("\n");
console.log("Update current global compatibilityLevel");
schemaRegistryApi.updateGlobalCompatibilityLevel({ "compatibility" : "FORWARD"});</pre>