-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathups__v1.yml
More file actions
165 lines (163 loc) · 4.08 KB
/
ups__v1.yml
File metadata and controls
165 lines (163 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
openapi: 3.0.0
info:
version: "1"
title: "Ups"
description: UPS TimeInTransit
servers:
- url: http://carriers/openapi/Ups/v1
tags:
- name: TimeInTransit
paths:
"/timeInTransit":
post:
tags:
- TimeInTransit
summary: "Get UPS Time In Transit"
description: "Get Time and Transit Response"
requestBody:
description: ""
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TimeInTransitPostRequest'
responses:
"200":
description: "Order successfully created"
content:
application/json:
schema:
$ref: '#/components/schemas/TimeInTransitResult'
"500":
description: 'Some internal error'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
components:
schemas:
# Basic results components
ErrorResponse:
type: object
properties:
messages:
type: array
items:
$ref: "#/components/schemas/Message"
description: "Message field is not required"
Message:
type: object
properties:
level:
type: string
enum:
- emergency
- alert
- critical
- error
- warning
- notice
- info
type:
type: string
enum:
- UNDEFINED
- LOGGER_MESSAGE
description: >
You can expose this enum for all your errors
UNDEFINED - Any undefined message type
LOGGER_MESSAGE - Same as undefined
text:
type: string
description: Message, that describes what went wrong
SuccessResponse:
allOf:
- $ref: '#/components/schemas/ErrorResponse'
type: object
properties:
data:
type: object
## One resource result
TimeInTransitResult:
allOf:
- $ref: '#/components/schemas/SuccessResponse'
type: object
properties:
data:
type: array
description: 'Found delivery methods'
items:
$ref: '#/components/schemas/TimeInTransitItem'
## Body for post request
TimeInTransitPostRequest:
type: object
required:
- zipFrom
- zipTo
properties:
zipFrom:
type: string
example: "91601"
zipTo:
type: string
example: "91730"
cityToName:
type: string
example: "OZARK"
stateToCode:
type: string
example: "OZARK"
cityFromName:
type: string
example: "HOLMES"
stateFromCode:
type: string
example: "PA"
weight:
type: number
example: 1.5
description: in LBS
shipmentContentsValue:
type: number
example: 1.5
description: The monetary value of shipment contents.
shipDateTime:
type: string
example: "2023-11-15 12:00:00"
description: Local Time Zone
shippingMethodType:
type: string
enum:
- UPS Ground
example: UPS Ground
default: UPS Ground
## Resource object
TimeInTransitItem:
type: object
required:
- businessTransitDays
- cutOffTime
- shippingArriveDate
- pickupDateTime
- shippingShipDateTime
properties:
businessTransitDays:
type: integer
example: 3
cutOffTime:
type: string
example: '17:00:00'
arriveDateTime:
type: string
nullable: true
example: '2023-11-19 21:00:00'
description: Local Time
pickupDateTime:
type: string
nullable: true
example: '2023-11-17 21:00:00'
description: Local Time
shipDateTime:
type: string
nullable: true
example: '2023-11-19 21:00:00'