diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java index 89bb0b6978..0ab3ca758f 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/AttributesToJSON.java @@ -99,9 +99,9 @@ public class AttributesToJSON extends AbstractProcessor { .build(); public static final PropertyDescriptor NULL_VALUE_FOR_EMPTY_STRING = new PropertyDescriptor.Builder() - .name(("If true a non existing or empty attribute will be NULL in the resulting JSON. If false an empty " + - "string will be placed in the JSON")) - .description("") + .name(("Null Value")) + .description("If true a non existing or empty attribute will be NULL in the resulting JSON. If false an empty " + + "string will be placed in the JSON") .required(true) .allowableValues("true", "false") .defaultValue("false")