Managed JavaScript Index Stage
This stage runs a JavaScript transformation on documents using a script from the blob store. The script must have the blob type file:js-index.
Uploading a JavaScript blob
In Fusion 5.6, JavaScript blobs must be uploaded using the Blob Store API, like this:
curl -u USERNAME:PASSWORD -X PUT -H 'Content-Type: text/javascript' --data-binary @index-pipeline-js-stage.js http://FUSION_HOST:FUSION_PORT/api/apps/APP_NAME/blobs/index-pipeline-js-stage.js?resourceType=file:js-indexOpen the blob manager to verify that the new blob is present:

Referencing a JavaScript blob
Use any of the following formats for the ref/Script Reference configuration field:
index-pipeline-js-stage.jsblob:index-pipeline-js-stage.jsurn:x-fusion:blob:index-pipeline-js-stage.js| The examples above use index-pipeline-js-stage.jsas the blob ID. | 
Edit JavaScript
For Fusion 5.4.x and later, select Edit in the Script Reference field to edit JavaScript directly in the Fusion UI.
Configuration
| When entering configuration values in the UI, use unescaped characters, such as \tfor the tab character. When entering configuration values in the API, use escaped characters, such as\\tfor the tab character. |