getSpecifications #
Returns the validation specifications associated to the given index and collection.
public CompletableFuture<ConcurrentHashMap<String, Object>> getSpecifications(
final String index,
final String collection)
Arguments | Type | Description |
---|---|---|
index | String | Index name |
collection | String | Collection name |
Returns #
Returns a ConcurrentHashMap<String, Object>
representing the collection specifications.
Usage #
ConcurrentHashMap<String, Object> result = kuzzle
.getCollectionController()
.getSpecifications("nyc-open-data", "yellow-taxi")
.get();
/*
{
collection="yellow-taxi",
index="nyc-open-data",
validation={
fields={
age={
defaultValue=42,
mandatory=true,
type="integer"
}
},
strict=true
}
}
*/
Edit this page on Github(opens new window)