Pode icon indicating copy to clipboard operation
Pode copied to clipboard

ConvertTo-PodeOAParameter -In Path should set Required to true to be OpenAPI compliant.

Open mdaneri opened this issue 1 year ago • 0 comments

ConvertTo-PodeOAParameter -In Path should set the property Required to true The code change is simple

OpenApi.ps1 Line 1415 if ($Property.required) { $prop['required'] = $Property.required } elseif ($In -eq 'Path') #for compliance { $prop['required'] = $true }

mdaneri avatar Aug 24 '23 17:08 mdaneri