jsonValidationOption property
If set, overrides the option configured in the Task implementation class.
Optional. Possible string values are:
- "JSON_VALIDATION_OPTION_UNSPECIFIED" : As per the default behavior, no validation will be run. Will not override any option set in a Task.
- "SKIP" : Do not run any validation against JSON schemas.
- "PRE_EXECUTION" : Validate all potential input JSON parameters against schemas specified in IntegrationParameter.
- "POST_EXECUTION" : Validate all potential output JSON parameters against schemas specified in IntegrationParameter.
- "PRE_POST_EXECUTION" : Perform both PRE_EXECUTION and POST_EXECUTION validations.
Implementation
core.String? jsonValidationOption;