Skip to content

Commit

Permalink
More fields need to be nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
kendallb committed Nov 10, 2021
1 parent 4d264b6 commit ccd64a8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8257,14 +8257,17 @@ components:
allOf:
- $ref: '#/components/schemas/date_time'
estimated_delivery_date:
nullable: true
allOf:
- $ref: '#/components/schemas/date_time'
actual_delivery_date:
nullable: true
allOf:
- $ref: '#/components/schemas/date_time'
exception_description:
type: string
readOnly: true
nullable: true
minLength: 0
description: Exception description
events:
Expand Down Expand Up @@ -8341,12 +8344,14 @@ components:
latitude:
type: number
format: double
nullable: true
minimum: -90
maximum: 90
description: Latitude coordinate of tracking event.
longitude:
type: number
format: double
nullable: true
minimum: -180
maximum: 180
description: Longitude coordinate of tracking event.
Expand Down

0 comments on commit ccd64a8

Please sign in to comment.