Skip to content

Commit

Permalink
These all need to be nullable also as the service responses actually …
Browse files Browse the repository at this point in the history
…have nulls in them
  • Loading branch information
kendallb committed Mar 27, 2024
1 parent aabd5e7 commit 0f7b9bb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8159,10 +8159,12 @@ components:
- $ref: '#/components/schemas/se_id'
description: A string that uniquely identifies the shipment
carrier_id:
nullable: true
allOf:
- $ref: '#/components/schemas/se_id'
description: The carrier account that is billed for the shipping charges
service_code:
nullable: true
allOf:
- $ref: '#/components/schemas/service_code'
description: >
Expand Down Expand Up @@ -8223,11 +8225,13 @@ components:
shipped on Sunday will ship on Monday instead.
created_at:
readOnly: true
nullable: true
allOf:
- $ref: '#/components/schemas/date_time'
description: The date and time that the shipment was created in ShipEngine.
modified_at:
readOnly: true
nullable: true
allOf:
- $ref: '#/components/schemas/date_time'
description: The date and time that the shipment was created or last modified.
Expand Down Expand Up @@ -8311,6 +8315,7 @@ components:
Arbitrary tags associated with this shipment. Tags can be used to
categorize shipments, and shipments can be queried by their tags.
order_source_code:
nullable: true
allOf:
- $ref: '#/components/schemas/order_source_name'
packages:
Expand Down Expand Up @@ -9031,6 +9036,7 @@ components:
nullable: true
default: null
collect_on_delivery:
nullable: true
$ref: '#/components/schemas/collect_on_delivery'
third_party_consignee:
type: boolean
Expand Down Expand Up @@ -9186,6 +9192,7 @@ components:
- $ref: '#/components/schemas/label_messages'
external_package_id:
type: string
nullable: true
minLength: 1
description: An external package id.
label_download:
Expand Down

0 comments on commit 0f7b9bb

Please sign in to comment.