We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 266896b commit 536218cCopy full SHA for 536218c
src/Microsoft.OpenApi/Models/OpenApiSchema.cs
@@ -339,7 +339,7 @@ public OpenApiSchema(OpenApiSchema schema)
339
V31ExclusiveMaximum = schema?.V31ExclusiveMaximum ?? V31ExclusiveMaximum;
340
V31ExclusiveMinimum = schema?.V31ExclusiveMinimum ?? V31ExclusiveMinimum;
341
Type = schema?.Type ?? Type;
342
- TypeArray = schema.TypeArray != null ? new string[schema.TypeArray.Length] : null;
+ TypeArray = schema?.TypeArray != null ? new string[schema.TypeArray.Length] : null;
343
Format = schema?.Format ?? Format;
344
Description = schema?.Description ?? Description;
345
Maximum = schema?.Maximum ?? Maximum;
0 commit comments