IntentParameterValue

  • JSON representation showcases the intent parameter's value with original indicating the user's input and resolved displaying the structured, extracted value.

  • original is a required string field containing the raw user utterance, while resolved is a required field providing the structured data in Value format, present only if the parameter is defined within the matched intent and its value is identifiable.

Represents a value for intent parameter.

JSON representation
{
  "original": string,
  "resolved": value
}
Fields
original

string

Required. Original text value extracted from user utterance.

resolved

value (Value format)

Required. Structured value for parameter extracted from user input. This will only be populated if the parameter is defined in the matched intent and the value of the parameter could be identified during intent matching.