-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger-event.json
277 lines (277 loc) · 7.92 KB
/
swagger-event.json
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
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "FDSN Event Web Service",
"description": "The fdsnws-event web service returns event (earthquake) information from the catalogs submitted to the IRIS DMC.",
"termsOfService": "TBD",
"contact": {
"name": "[email protected]"
},
"license": {
"name": "GNU Lesser General Public License",
"url": "http://www.gnu.org/licenses/"
}
},
"host": "service.iris.edu",
"basePath": "/fdsnws/event/1",
"schemes": [
"http"
],
"paths": {
"/query": {
"get": {
"tags": [
"Event Query"
],
"summary": "Event Query",
"description": "Query for event information",
"operationId": "query",
"produces": [
"text/plain"
],
"parameters": [
{
"name": "starttime",
"in": "query",
"description": "Earliest event time",
"required": false,
"type": "string",
"format": "date-time"
},
{
"name": "endtime",
"in": "query",
"description": "Latest event time",
"required": false,
"type": "string",
"format": "date-time"
},
{
"name": "minmag",
"in": "query",
"description": "Minimum magnitude",
"required": false,
"type": "number",
"maximum": 10,
"minimum": 0
},
{
"name": "maxmag",
"in": "query",
"description": "Maximum magnitude",
"required": false,
"type": "number",
"maximum": 10,
"minimum": 0
},
{
"name": "magtype",
"in": "query",
"description": "Some common magnitude types are listed, other types may be specified by modifying the URL.",
"required": false,
"type": "string",
"enum": ["MB", "ML", "MS", "MW"]
},
{
"name": "catalog",
"in": "query",
"description": "Catalog listing the event.",
"required": false,
"type": "string",
"enum": ["ISC", "ANF", "GCMT", "NEIC PDE"]
},
{
"name": "contributor",
"in": "query",
"description": "Group contributing the event.",
"required": false,
"type": "string",
"enum": ["ISC", "ANF", "GCMT", "NEIC ALERT", "NEIC COMCAT", "NEIC PDE-M", "NEIC PDE-Q", "NEIC PDE-W"]
},
{
"name": "includeallorigins",
"in": "query",
"description": "List all contributed event origins; otherwise, choose only the origin from the preferred contributor.",
"required": false,
"type": "boolean"
},
{
"name": "includeallmagnitudes",
"in": "query",
"description": "List all contributed magnitudes; otherwise, choose only the magnitude from the preferred contributor.",
"required": false,
"type": "boolean"
},
{
"name": "includearrivals",
"in": "query",
"description": "Include phase picks for events, if they exist.",
"required": false,
"type": "boolean"
},
{
"name": "minlon",
"in": "query",
"description": "Western limit of bounding box.",
"required": false,
"type": "number",
"maximum": 180.0,
"minimum": -180.0
},
{
"name": "maxlon",
"in": "query",
"description": "Eastern limit of bounding box.",
"required": false,
"type": "number",
"maximum": 180.0,
"minimum": -180.0
},
{
"name": "minlat",
"in": "query",
"description": "Southern limit of bounding box.",
"required": false,
"type": "number",
"maximum": 90.0,
"minimum": -90.0
},
{
"name": "maxlat",
"in": "query",
"description": "Northern limit of bounding box.",
"required": false,
"type": "number",
"maximum": 90.0,
"minimum": -90.0
},
{
"name": "lat",
"in": "query",
"description": "Latitude of bounding circle.",
"required": false,
"type": "number",
"default": 40,
"maximum": 90.0,
"minimum": -90.0
},
{
"name": "lon",
"in": "query",
"description": "Longitude of bounding circle.",
"required": false,
"type": "number",
"default": -100,
"maximum": 180.0,
"minimum": -180.0
},
{
"name": "minradius",
"in": "query",
"description": "Minimum radius of bounding circle.",
"required": false,
"type": "number",
"default": 0.0,
"maximum": 180.0,
"minimum": 0.0
},
{
"name": "maxradius",
"in": "query",
"description": "Maximum radius of bounding circle.",
"required": false,
"type": "number",
"default": 30.0,
"maximum": 180.0,
"minimum": 0.0
},
{
"name": "mindepth",
"in": "query",
"description": "Minimum depth",
"required": false,
"type": "number"
},
{
"name": "maxdepth",
"in": "query",
"description": "Maximum depth",
"required": false,
"type": "number"
},
{
"name": "orderby",
"in": "query",
"description": "Specify the sort order of the results.",
"required": true,
"type": "string",
"enum": ["time", "time-asc", "magnitude", "magnitude-asc"]
},
{
"name": "format",
"in": "query",
"description": "Format for returned data.",
"required": true,
"type": "string",
"enum": ["xml", "text"]
},
{
"name": "limit",
"in": "query",
"description": "Limit the results to the specified number of events.",
"required": false,
"type": "number"
},
{
"name": "offset",
"in": "query",
"description": "Return results starting at the event count specified.",
"required": false,
"type": "number"
},
{
"name": "eventid",
"in": "query",
"description": "Get event by ID. Most other options are unavailable when an event ID is specified.",
"required": false,
"type": "number"
},
{
"name": "updatedafter",
"in": "query",
"description": "Return events updated since the given date.",
"required": false,
"type": "string",
"format": "date-time"
}
],
"responses": {
"500": {
"description": "Internal Server Error"
}
},
"security": [
{
"TBD_auth": [
"write:writeTBD",
"read:readTBD"
]
}
]
}
}
},
"securityDefinitions": {
"api_key": {
"type": "apiKey",
"name": "api_key",
"in": "header"
},
"TBD_auth": {
"type": "oauth2",
"authorizationUrl": "http://TBD/api/oauth/dialog",
"flow": "implicit"
}
}
}