SDK
SDK Java v3.x
2

This SDK is deprecated. We recommend to use the Kuzzle SDK-JVM.
A migration guide is available here

deleteSpecifications #

Deletes validation specifications for a collection.


Copied to clipboard!
  public CompletableFuture<Void> deleteSpecifications(
      final String index,
      final String collection)

Arguments Type Description
index
String
Index name
collection
String
Collection name

Returns #

Returns a CompletableFuture<Void>.

Usage #

Copied to clipboard!
kuzzle
  .getCollectionController()
  .deleteSpecifications("nyc-open-data", "yellow-taxi")
  .get();