Versions Compared

Key

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

...

  • Constant string values:
    • This assignment type is used, for example, with Variable Declarations for workflows and with Node Arguments.
    • Example for a string value:

      GUI
      input:
      Input
      'value 1'
      JSON Format
      JSON format:
      "
      var1
      var": "'value 1'"
      ExplanationSingle quoted values are considered string constants.
    • Example for an empty string value:

      GUI
      input:
      Input
      ""
      JSON Format
      JSON format:
      "
      var1
      var": "\"\""
      ExplanationSingle quoted values are considered string constants.
    • Example for a quoted numeric value:

      GUI Input
      '033521'
      JSON Format"var": "'03351'"
      ExplanationSingle quoted values are considered string constants.
  • Expressions Expressions:
    • This assignment type is used with Environment Variables, Job Arguments and Initialization Arguments.
    • Example:


      GUI
      input:
      Input
      $someVariable
      JSON Format
      JSON format:
      "
      var1
      var": "$someVariable"
      ExplanationSingle quoted values are considered string constants.

The following sections contain a number of syntax examples for assignment of constant values and expressions.

...