-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoneatlas-data.yaml
285 lines (267 loc) · 5.72 KB
/
oneatlas-data.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
swagger: "2.0"
info:
description: "OneAtlas Data API."
title: "oneatlas-data"
version: "0.1.0"
host: "oneatlas-data.geoapi-airbusds.com"
basePath: "/api/v1"
consumes:
- "application/json"
produces:
- "application/json"
schemes:
- "https"
tags:
- name: authentication
description: Authentication endpoints
- name: search
description: Search endpoints
- name: orders
description: Orders & products endpoints
definitions:
productionType:
type: string
enum:
- stream8bits3bands
- download8bits4bands
- download12bits4bands
- download16bits4bands
order:
properties:
status:
type: string
enum:
- created
- ordered
- delivered
credits:
type: integer
contractId:
type: string
userId:
type: string
id:
type: string
createdAt:
type: string
productionType:
type: string
_links:
properties:
self:
properties:
href:
type: string
products:
type: array
items:
$ref: '#/definitions/product'
product:
properties:
orderId:
type: string
status:
type: string
enum:
- pending
- delivered
userId:
type: string
aoi:
type: object
credits:
type: string
deliveries:
properties:
download:
properties:
status:
type: string
enum:
- pending
- delivered
href:
type: string
stream:
properties:
status:
type: string
enum:
- pending
- delivered
href:
type: string
id:
type: string
createdAt:
type: string
contractId:
type: integer
source:
type: object
user:
properties:
id:
type: string
contract:
properties:
credits:
type: string
company:
type: string
id:
type: integer
paths:
"/users/me":
get:
tags:
- authentication
description: "Get the user info."
operationId: "getUser"
responses:
200:
description: "user"
schema:
$ref: '#/definitions/user'
security:
- google_id_token: []
"/search":
post:
tags:
- search
description: "Search in archive catalog."
operationId: "search"
responses:
200:
description: "search"
security:
- google_id_token: []
"/prices":
post:
tags:
- orders
description: "Get a price."
operationId: "getPrice"
responses:
200:
description: "getPrice"
security:
- google_id_token: []
"/orders":
post:
tags:
- orders
description: "Create an order."
operationId: "createOrder"
responses:
200:
description: "createOrder"
schema:
$ref: '#/definitions/order'
security:
- google_id_token: []
get:
tags:
- orders
description: "Get all orders."
operationId: "getOrders"
responses:
200:
description: "getOrders"
security:
- google_id_token: []
"/orders/{orderId}":
get:
tags:
- orders
operationId: "getOrder"
summary: "Get an order by id."
parameters:
- in: path
name: orderId
type: string
required: true
description: order id
responses:
200:
description: "order"
security:
- google_id_token: []
"/products":
get:
tags:
- orders
operationId: "getProducts"
summary: "Get all products."
responses:
200:
description: "products"
security:
- google_id_token: []
"/products/{productId}":
get:
tags:
- orders
operationId: "getProduct"
summary: "Get a product by id."
parameters:
- in: path
name: productId
type: string
required: true
description: productId
responses:
200:
description: "product"
security:
- google_id_token: []
"/products/{productId}/download":
get:
tags:
- orders
operationId: "getDownloadProduct"
summary: "Get a product download url."
parameters:
- in: path
name: productId
type: string
required: true
description: product download
responses:
200:
description: "productDownloadUrl"
security:
- google_id_token: []
"/oauth2/step1":
get:
tags:
- authentication
description: "Oauth2 step1."
operationId: "oauthStep1"
produces:
- "application/json"
responses:
200:
description: "oauthStep1"
"/oauth2/step2":
get:
tags:
- authentication
description: "Oauth2 step2."
operationId: "oauthStep2"
produces:
- "application/json"
responses:
200:
description: "oauthStep2"
"/oauth2/refresh":
get:
tags:
- authentication
description: "Oauth2 refresh."
operationId: "oauthRefresh"
produces:
- "application/json"
responses:
200:
description: "oauthRefresh"