Skip to content

Commit

Permalink
tried fixing packge infomration flagging
Browse files Browse the repository at this point in the history
  • Loading branch information
nivats committed Nov 23, 2020
1 parent 9ef0d23 commit cb801fc
Showing 1 changed file with 28 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@
},
"deliveryPackage": {
"description": "Contains information about the package being shipped by the customer to the Microsoft data center. ",
"$ref": "#/definitions/PackageInformation"
"$ref": "#/definitions/DeliveryPackageInformation"
},
"returnPackage": {
"description": "Contains information about the package being shipped from the Microsoft data center to the customer to return the drives. The format is the same as the deliveryPackage property above. This property is not included if the drives have not yet been returned. ",
Expand Down Expand Up @@ -796,7 +796,7 @@
},
"deliveryPackage": {
"description": "Contains information about the package being shipped by the customer to the Microsoft data center.",
"$ref": "#/definitions/PackageInformation"
"$ref": "#/definitions/DeliveryPackageInformation"
},
"logLevel": {
"type": "string",
Expand Down Expand Up @@ -1120,6 +1120,32 @@
}
}
},
"DeliveryPackageInformation": {
"description": "Contains information about the delivery package being shipped by the customer to the Microsoft data center.",
"required": [
"carrierName",
"trackingNumber"
],
"properties": {
"carrierName": {
"type": "string",
"description": "The name of the carrier that is used to ship the import or export drives."
},
"trackingNumber": {
"type": "string",
"description": "The tracking number of the package."
},
"driveCount": {
"type": "integer",
"format": "int64",
"description": "The number of drives included in the package."
},
"shipDate": {
"type": "string",
"description": "The date when the package is shipped."
}
}
},
"DriveStatus": {
"description": "Provides information about the drive's status",
"properties": {
Expand Down

0 comments on commit cb801fc

Please sign in to comment.