diff --git a/tools/importer-rest-api-specs/components/parser/dataworkarounds/workaround_batch_21291.go b/tools/importer-rest-api-specs/components/parser/dataworkarounds/workaround_batch_21291.go index e0f15d5513f..e7493ba4cf1 100644 --- a/tools/importer-rest-api-specs/components/parser/dataworkarounds/workaround_batch_21291.go +++ b/tools/importer-rest-api-specs/components/parser/dataworkarounds/workaround_batch_21291.go @@ -15,7 +15,7 @@ type workaroundBatch21291 struct { func (workaroundBatch21291) IsApplicable(apiDefinition *models.AzureApiDefinition) bool { serviceMatches := apiDefinition.ServiceName == "Batch" - apiVersionMatches := apiDefinition.ApiVersion == "2022-01-01" + apiVersionMatches := apiDefinition.ApiVersion == "2022-01-01" || apiDefinition.ApiVersion == "2022-10-01" return serviceMatches && apiVersionMatches }