Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Overview

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

TODO

Format

TODO convert to JSON

{
	"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

  • No labels