-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi-docs.yaml
286 lines (286 loc) · 8.56 KB
/
api-docs.yaml
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
openapi: 3.0.1
info:
title: OpenAPI definition
version: v0
servers:
- url: http://localhost:8080
description: Generated server url
tags:
- name: Finance Agreement Calculation
description: "Calculates finance agreements for car purchases based on valuation,\
\ credit status, and business margins."
- name: Carbon Footprint Calculation
description: Calculates the carbon footprint for a given flight based on external
data.
- name: Shipping Calculation
description: Calculates the shipping options for a product given external data.
paths:
/api/calculateShippingOptions:
post:
tags:
- Shipping Calculation
summary: Calculate Shipping Options
description: Calculates the shipping options for a product given external data.
operationId: calculateShippingOptions
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CalculateShippingOptionsRequest"
required: true
responses:
"200":
description: OK
content:
'*/*':
schema:
$ref: "#/components/schemas/CalculateShippingOptionsResponse"
/api/calculateFinanceAgreement:
post:
tags:
- Finance Agreement Calculation
summary: Calculate a Finance Agreement
description: "Processes a finance agreement based on car valuation, customer\
\ credit profile, business margin constraints, and competitor pricing."
operationId: calculateFinanceAgreement
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/FinanceCalculationRequest"
required: true
responses:
"200":
description: OK
content:
'*/*':
schema:
$ref: "#/components/schemas/FinanceCalculationResponse"
/api/calculateCarbonFootprint:
post:
tags:
- Carbon Footprint Calculation
summary: Calculate Carbon Footprint
description: Calculates the carbon footprint for a given flight based on external
data.
operationId: calculateCarbonFootprint
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CarbonFootprintRequest"
required: true
responses:
"200":
description: OK
content:
'*/*':
schema:
$ref: "#/components/schemas/CarbonFootprintResponse"
components:
schemas:
CalculateShippingOptionsRequest:
type: object
properties:
productId:
type: string
description: The Salesforce record ID of the product.
example: PROD123456
description: "Request to determine shipping options for a product, including\
\ the Salesforce record ID of the product being shipped."
CalculateShippingOptionsResponse:
type: object
properties:
product:
$ref: "#/components/schemas/ProductInfo"
shippingOptions:
type: array
items:
$ref: "#/components/schemas/ShippingOption"
recommendedOption:
$ref: "#/components/schemas/ShippingOption"
timestamp:
type: string
units:
type: object
additionalProperties:
type: string
description: Response containing the calculated shipping options for the given
product. Describe the results in natural language text to the user.
Dimensions:
type: object
properties:
length:
type: number
format: double
width:
type: number
format: double
height:
type: number
format: double
description: Product dimensions in centimeters.
ProductInfo:
type: object
properties:
productId:
type: string
name:
type: string
weight:
type: number
format: double
dimensions:
$ref: "#/components/schemas/Dimensions"
category:
type: string
price:
type: number
format: double
description: Product details including weight and dimensions.
ShippingOption:
type: object
properties:
carrier:
type: string
service:
type: string
estimatedDeliveryDays:
type: integer
format: int32
cost:
type: number
format: double
carbonFootprint:
type: number
format: double
description: Available shipping options for the product.
FinanceCalculationRequest:
type: object
properties:
customerId:
type: string
description: The Salesforce record ID of the customer applying for financing.
example: 0035g00000XyZbHAZ
vehicleId:
type: string
description: The Salesforce record ID of the car being financed.
example: a0B5g00000LkVnWEAV
maxInterestRate:
type: number
description: The maximum interest rate the user is prepared to go to
format: double
downPayment:
type: number
description: The down payment the user is prepared to give
format: double
example: 1000
years:
type: integer
description: The number years to pay the finance the user is reuqesting
format: int32
example: 3
description: "Request to compute a finance agreement for a car purchase, including\
\ the Salesforce record ID of both the customer applying for financing and\
\ the vehicle being financed."
FinanceCalculationResponse:
type: object
properties:
recommendedFinanceOffer:
$ref: "#/components/schemas/FinanceOffer"
description: Response containing the calculated finance agreement. Describe
the results in natural language text to the user.
FinanceOffer:
type: object
properties:
finalCarPrice:
type: number
format: double
adjustedInterestRate:
type: number
format: double
monthlyPayment:
type: number
format: double
loanTermMonths:
type: integer
format: int32
totalFinancingCost:
type: number
format: double
description: Recommended finance offer based on business rules and customer
affordability.
CarbonFootprintRequest:
type: object
properties:
flightId:
type: string
description: The Salesforce record ID of the flight.
example: 0035g00000XyZbHAZ
description: "Request to calculate the carbon footprint of a flight, including\
\ the Salesforce record ID of the flight being analyzed."
CarbonFootprintResponse:
type: object
properties:
flight:
$ref: "#/components/schemas/FlightInfo"
emissions:
$ref: "#/components/schemas/EmissionsData"
methodology:
$ref: "#/components/schemas/Methodology"
timestamp:
type: string
units:
type: object
additionalProperties:
type: string
description: Response containing the calculated carbon footprint for the flight.
Describe the results in natural language text to the user.
EmissionsData:
type: object
properties:
totalCo2Kg:
type: number
format: double
co2PerPassengerKg:
type: number
format: double
co2PerKmKg:
type: number
format: double
fuelBurnedLiters:
type: number
format: double
description: Carbon emissions data for the flight.
FlightInfo:
type: object
properties:
flightNumber:
type: string
departureAirport:
type: string
arrivalAirport:
type: string
aircraftType:
type: string
distanceKm:
type: integer
format: int32
passengerCount:
type: integer
format: int32
description: Flight information details.
Methodology:
type: object
properties:
calculationBasis:
type: string
fuelToCo2Ratio:
type: number
format: double
radiativeForcingMultiplier:
type: number
format: double
dataSource:
type: string
description: Details about the methodology used for emissions calculation.