@@ -560,14 +560,7 @@ internal void WriteAsItemsProperties(IOpenApiWriter writer)
560
560
writer . WriteProperty ( OpenApiConstants . Type , Type ) ;
561
561
562
562
// format
563
- if ( string . IsNullOrEmpty ( Format ) )
564
- {
565
- Format = AllOf ? . FirstOrDefault ( static x => ! string . IsNullOrEmpty ( x . Format ) ) ? . Format ??
566
- AnyOf ? . FirstOrDefault ( static x => ! string . IsNullOrEmpty ( x . Format ) ) ? . Format ??
567
- OneOf ? . FirstOrDefault ( static x => ! string . IsNullOrEmpty ( x . Format ) ) ? . Format ;
568
- }
569
-
570
- writer . WriteProperty ( OpenApiConstants . Format , Format ) ;
563
+ WriteFormatProperty ( writer ) ;
571
564
572
565
// items
573
566
writer . WriteOptionalObject ( OpenApiConstants . Items , Items , ( w , s ) => s . SerializeAsV2 ( w ) ) ;
@@ -620,20 +613,26 @@ internal void WriteAsItemsProperties(IOpenApiWriter writer)
620
613
writer . WriteExtensions ( Extensions , OpenApiSpecVersion . OpenApi2_0 ) ;
621
614
}
622
615
623
- internal void WriteAsSchemaProperties (
624
- IOpenApiWriter writer ,
625
- ISet < string > parentRequiredProperties ,
626
- string propertyName )
616
+ private void WriteFormatProperty ( IOpenApiWriter writer )
627
617
{
628
- // format
629
- if ( string . IsNullOrEmpty ( Format ) )
618
+ var formatToWrite = Format ;
619
+ if ( string . IsNullOrEmpty ( formatToWrite ) )
630
620
{
631
- Format = AllOf ? . FirstOrDefault ( static x => ! string . IsNullOrEmpty ( x . Format ) ) ? . Format ??
621
+ formatToWrite = AllOf ? . FirstOrDefault ( static x => ! string . IsNullOrEmpty ( x . Format ) ) ? . Format ??
632
622
AnyOf ? . FirstOrDefault ( static x => ! string . IsNullOrEmpty ( x . Format ) ) ? . Format ??
633
623
OneOf ? . FirstOrDefault ( static x => ! string . IsNullOrEmpty ( x . Format ) ) ? . Format ;
634
624
}
635
625
636
- writer . WriteProperty ( OpenApiConstants . Format , Format ) ;
626
+ writer . WriteProperty ( OpenApiConstants . Format , formatToWrite ) ;
627
+ }
628
+
629
+ internal void WriteAsSchemaProperties (
630
+ IOpenApiWriter writer ,
631
+ ISet < string > parentRequiredProperties ,
632
+ string propertyName )
633
+ {
634
+ // format
635
+ WriteFormatProperty ( writer ) ;
637
636
638
637
// title
639
638
writer . WriteProperty ( OpenApiConstants . Title , Title ) ;
0 commit comments