@@ -255,43 +255,43 @@ public void SerializeV2WithoutReference(IAsyncApiWriter writer)
255
255
writer . WriteOptionalProperty ( AsyncApiConstants . Title , this . Title ) ;
256
256
257
257
// multipleOf
258
- writer . WriteProperty ( AsyncApiConstants . MultipleOf , this . MultipleOf ) ;
258
+ writer . WriteOptionalProperty ( AsyncApiConstants . MultipleOf , this . MultipleOf ) ;
259
259
260
260
// maximum
261
- writer . WriteProperty ( AsyncApiConstants . Maximum , this . Maximum ) ;
261
+ writer . WriteOptionalProperty ( AsyncApiConstants . Maximum , this . Maximum ) ;
262
262
263
263
// exclusiveMaximum
264
- writer . WriteProperty ( AsyncApiConstants . ExclusiveMaximum , this . ExclusiveMaximum ) ;
264
+ writer . WriteOptionalProperty ( AsyncApiConstants . ExclusiveMaximum , this . ExclusiveMaximum ) ;
265
265
266
266
// minimum
267
- writer . WriteProperty ( AsyncApiConstants . Minimum , this . Minimum ) ;
267
+ writer . WriteOptionalProperty ( AsyncApiConstants . Minimum , this . Minimum ) ;
268
268
269
269
// exclusiveMinimum
270
- writer . WriteProperty ( AsyncApiConstants . ExclusiveMinimum , this . ExclusiveMinimum ) ;
270
+ writer . WriteOptionalProperty ( AsyncApiConstants . ExclusiveMinimum , this . ExclusiveMinimum ) ;
271
271
272
272
// maxLength
273
- writer . WriteProperty ( AsyncApiConstants . MaxLength , this . MaxLength ) ;
273
+ writer . WriteOptionalProperty ( AsyncApiConstants . MaxLength , this . MaxLength ) ;
274
274
275
275
// minLength
276
- writer . WriteProperty ( AsyncApiConstants . MinLength , this . MinLength ) ;
276
+ writer . WriteOptionalProperty ( AsyncApiConstants . MinLength , this . MinLength ) ;
277
277
278
278
// pattern
279
279
writer . WriteOptionalProperty ( AsyncApiConstants . Pattern , this . Pattern ) ;
280
280
281
281
// maxItems
282
- writer . WriteProperty ( AsyncApiConstants . MaxItems , this . MaxItems ) ;
282
+ writer . WriteOptionalProperty ( AsyncApiConstants . MaxItems , this . MaxItems ) ;
283
283
284
284
// minItems
285
- writer . WriteProperty ( AsyncApiConstants . MinItems , this . MinItems ) ;
285
+ writer . WriteOptionalProperty ( AsyncApiConstants . MinItems , this . MinItems ) ;
286
286
287
287
// uniqueItems
288
- writer . WriteProperty ( AsyncApiConstants . UniqueItems , this . UniqueItems ) ;
288
+ writer . WriteOptionalProperty ( AsyncApiConstants . UniqueItems , this . UniqueItems ) ;
289
289
290
290
// maxProperties
291
- writer . WriteProperty ( AsyncApiConstants . MaxProperties , this . MaxProperties ) ;
291
+ writer . WriteOptionalProperty ( AsyncApiConstants . MaxProperties , this . MaxProperties ) ;
292
292
293
293
// minProperties
294
- writer . WriteProperty ( AsyncApiConstants . MinProperties , this . MinProperties ) ;
294
+ writer . WriteOptionalProperty ( AsyncApiConstants . MinProperties , this . MinProperties ) ;
295
295
296
296
// required
297
297
writer . WriteOptionalCollection ( AsyncApiConstants . Required , this . Required , ( w , s ) => w . WriteValue ( s ) ) ;
@@ -357,16 +357,16 @@ public void SerializeV2WithoutReference(IAsyncApiWriter writer)
357
357
writer . WriteOptionalObject ( AsyncApiConstants . Default , this . Default , ( w , d ) => w . WriteAny ( d ) ) ;
358
358
359
359
// nullable
360
- writer . WriteProperty ( AsyncApiConstants . Nullable , this . Nullable , false ) ;
360
+ writer . WriteOptionalProperty ( AsyncApiConstants . Nullable , this . Nullable , false ) ;
361
361
362
362
// discriminator
363
363
writer . WriteOptionalProperty ( AsyncApiConstants . Discriminator , this . Discriminator ) ;
364
364
365
365
// readOnly
366
- writer . WriteProperty ( AsyncApiConstants . ReadOnly , this . ReadOnly , false ) ;
366
+ writer . WriteOptionalProperty ( AsyncApiConstants . ReadOnly , this . ReadOnly , false ) ;
367
367
368
368
// writeOnly
369
- writer . WriteProperty ( AsyncApiConstants . WriteOnly , this . WriteOnly , false ) ;
369
+ writer . WriteOptionalProperty ( AsyncApiConstants . WriteOnly , this . WriteOnly , false ) ;
370
370
371
371
// externalDocs
372
372
writer . WriteOptionalObject ( AsyncApiConstants . ExternalDocs , this . ExternalDocs , ( w , s ) => s . SerializeV2 ( w ) ) ;
@@ -375,7 +375,7 @@ public void SerializeV2WithoutReference(IAsyncApiWriter writer)
375
375
writer . WriteOptionalCollection ( AsyncApiConstants . Examples , this . Examples , ( w , e ) => w . WriteAny ( e ) ) ;
376
376
377
377
// deprecated
378
- writer . WriteProperty ( AsyncApiConstants . Deprecated , this . Deprecated , false ) ;
378
+ writer . WriteOptionalProperty ( AsyncApiConstants . Deprecated , this . Deprecated , false ) ;
379
379
380
380
// extensions
381
381
writer . WriteExtensions ( this . Extensions , AsyncApiVersion . AsyncApi2_3_0 ) ;
0 commit comments