Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

This toolkit element provides control over whether documents is stored, and which metadata fields (including special persistent fields across document updates).

TODO

Format

Code Block
TODO

Legacy documentation:

...

TODO convert to JSON

Code Block
{
	"display": string,
	"storageSettings": {} // see under StorageSettingsPojo
}
//////////////////////////////////
 
	public static class StorageSettingsPojo {
		public String rejectDocCriteria; 	//OPTIONAL: If populated, runs a user script function and if return value is non-null doesn't create the object and logs the output.  *Not* wrapped in $SCRIPT().
		public String onUpdateScript; 		//OPTIONAL: Used to preserve existing metadata when documents are updated, and also to generate new metadata based on the differences between old and new documents. *Not* wrapped in $SCRIPT().
		public String metadataFieldStorage; //OPTIONAL: A comma-separated list of top-level metadata fields to either exclude (if "metadataFields" starts with '-'), or only include (starts with '+', default) - the fields are deleted at that point in the pipeline.
	}

Legacy documentation:

TODO

Description

Legacy documentation:

TODO

Examples

TODO