# 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>
