Creating a definition data set
A data set is a logical group of document, type and form definitions.
A data set has a unique name and key.
The key must be alphanumeric.
Data sets can be managed in Admin Web UI via the menu Data sets & definitions
Example creating a data set from code
DynamicDefinitionDataSetRepository dataSetRepository;
DynamicDefinitionDataSet dataSet = new DynamicDefinitionDataSet();
dataSet.setName( "my-dataset" );
dataSet.setKey( "my-ds" );
dataSetRepository.save( dataSet );
Once a data set has been created, you can start adding document definitions to it.