Document definition
Last updated
Was this helpful?
Last updated
Was this helpful?
A document definition is the blueprint for the JSON documents that are created when creating new cases in Valtimo. It defines the structure of the case and contains validation rules for the data that is stored by the actual JSON documents that are created when executing processes for that case in Valtimo. This page shows how to create a document definition, and how to add validation to properties.
There are three ways of creating new document definitions in Valtimo.
Upload a valid JSON schema via the UI
Create an empty case via the UI
Place a valid JSON schema in the codebase via an IDE
Go to the Admin
menu
Go to the Cases
menu
Click on Upload case-definition
Upload the document definition
It's possible to upload valid JSON schemas to create new cases since Valtimo 5. During the upload the JSON schema structure is validated and the uniqueness of the case ID is checked. If no validation errors occur, the JSON schema is uploaded and the case definition is created.
In Valtimo 12 the case configuration upload has been improved by adding all the newly available case configurations to the upload functionality. More detailed information on this functionality can be found here.
Available since Valtimo 12
Go to the Admin
menu
Go to the Cases
menu
Click on Create
Enter the title, and optionally edit the name
Click on Save, this takes you to the document definition overview
The chosen title will be validated and based upon the title a read-only case definition name will be generated. This is to create a unique identifier for that case definition without spaces or special characters. Click the Save button to create the case with the chosen title. The case definition is created and the case details page is displayed upon completion. A valid empty JSON schema is created with the title and id based on the given title.
Same as for creating cases there are three ways of editing document definitions.
Upload a valid JSON schema with the same ID.
Edit the document definition directly via the UI.
Edit the document definition in the codebase via an IDE.
Go to the Admin
menu
Go to the Cases
menu
Click on the Upload button to open the Import case definition . This modal contains a wizard that will guide users through the import process. The following steps are defined in this wizard.
Informative step regarding plugins.
Select the edited document definition from your system When the file is succesfully uploaded a warning is displayed that current configurations for that case can be overwritten by this upload.
Start the upload The file will be validated and if it passes all checks the document definition is updated.
Go to the Admin
menu
Go to the Cases
menu
Select the case that you want to edit
Click on Edit
Edit the document definition as per the JSON schema standard
Click on Save
Visually nothing happens when switching to edit mode. Only the Download and Edit buttons are replaced by a Cancel and a Save button. The Save button is disabled by default until valid changes are made.
In edit mode, the UI editor will constantly validate the JSON file structure. The Save button is only available when the JSON structure is valid. Errors in the file structure will be indicated with a red curly line below or near the issue. In large files, errors can easily be found with the minimised tree view on the right side of the editor.
Please note
Changes to document definitions have immediate effect on newly created cases based on this document definition. Changing this file means changing the blueprint that is used to validate each case that is created in Valtimo based on this blueprint. Changes will have impact, so create backups when unsure of the result.
Access to document definitions can be configured through access control. More information about access control can be found here.
com.ritense.document.domain.impl.JsonSchemaDocument
assign
Allows assigning users to a case document.
assignable
Allows users to be assigned to a case document.
create
Allows creating of a case document.
claim
Allows claiming of a case document.
delete
Allows deleting of a case document.
modify
Allows modifying of a case document.
view
Allows viewing of a case document.
view_list
Allows viewing of case documents.
com.ritense.document.domain.impl.JsonSchemaDocumentDefinition
create
Allows creating of a case document definition.
delete
Allows deleting of a case document definition.
modify
Allows modifying of a case document definition.
view
Allows viewing of a case document definition.
view_list
Allows viewing of case document definitions.