diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/resources/docs/org.apache.nifi.processors.standard.EvaluateJsonPath/additionalDetails.html b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/resources/docs/org.apache.nifi.processors.standard.EvaluateJsonPath/additionalDetails.html index a9b0190d26..324c8aacf1 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/resources/docs/org.apache.nifi.processors.standard.EvaluateJsonPath/additionalDetails.html +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/resources/docs/org.apache.nifi.processors.standard.EvaluateJsonPath/additionalDetails.html @@ -31,8 +31,10 @@

Additional Notes

It's a common pattern to make JSON from attributes in NiFi. Many of these attributes have periods in their names. For example - record.count. To reference them safely, you must use this sort of operation which puts the entire key in brackets: + record.count. To reference them safely, you must use this sort of operation which puts the entire key in brackets. + This also applies to JSON keys that contain whitespace:

$.["record.count"]
+
$.["record count"]