Field Value

Combines a field with a value into a field_value pair for use in ticket creation.

Combines a Field and a Value into a field-value pair for use when creating a ticket.

Inputs

  • FieldrequiredField<T>. Provides the field that defines the target field and its value type. The node uses this field object to determine the destination field identity and the type that the value must conform to.
  • ValuerequiredT. Provides the value to pair with the field in the output. The node checks this input against the field’s value type, then stringifies or converts it into the field_value payload.

Outputs

  • Field ValueField Value<T>. Represents a field/value pair ready for ticket creation. The output bundles the original field object together with the converted value so downstream ticket-creation nodes can apply one typed field update.

Example use cases

Preset new-ticket fields

Pair the Component field with a value and pass it into Create Ticket so the new ticket lands pre-populated.

See also