Complete the code to define a string parameter named 'ENV'.
parameters {
string(name: 'ENV', defaultValue: 'dev', description: [1])
}The description field should be a string describing the parameter.
Complete the code to define a boolean parameter named 'DEBUG_MODE'.
parameters {
booleanParam(name: 'DEBUG_MODE', defaultValue: [1], description: 'Enable debug mode')
}The defaultValue for a boolean parameter must be a boolean true or false, not a string.
Fix the error in the choice parameter definition by completing the 'choices' field.
parameters {
choice(name: 'REGION', choices: [1], description: 'Select deployment region')
}The choices field for a Jenkins choice parameter is a single string with options separated by newlines.
Fill both blanks to define a string parameter with a default value and description.
parameters {
string(name: 'VERSION', defaultValue: [1], description: [2])
}The defaultValue and description must both be strings.
Fill all three blanks to define a choice parameter with a name, choices, and description.
parameters {
choice(name: [1], choices: [2], description: [3])
}The name is a string, choices is a newline-separated string, and description is a string.