1{
2  "basePath": "/latest",
3  "host": "esi.tech.ccp.is",
4  "info": {
5    "description": "An OpenAPI for EVE Online",
6    "title": "EVE Swagger Interface",
7    "version": "0.3.4"
8  },
9  "paths": {
10    "/alliances/": {
11      "get": {
12        "description": "List all active player alliances\n\n---\n\nAlternate route: `/v1/alliances/`\n\nAlternate route: `/legacy/alliances/`\n\nAlternate route: `/dev/alliances/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
13        "operationId": "get_alliances",
14        "parameters": [{
15          "default": "tranquility",
16          "description": "The server name you would like data from",
17          "enum": ["tranquility", "singularity"],
18          "in": "query",
19          "name": "datasource",
20          "type": "string"
21        }],
22        "responses": {
23          "200": {
24            "description": "List of Alliance IDs",
25            "examples": {
26              "application/json": [99000001, 99000002]
27            },
28            "headers": {
29              "Cache-Control": {
30                "description": "The caching mechanism used",
31                "type": "string"
32              },
33              "Expires": {
34                "description": "RFC7231 formatted datetime string",
35                "type": "string"
36              },
37              "Last-Modified": {
38                "description": "RFC7231 formatted datetime string",
39                "type": "string"
40              }
41            },
42            "schema": {
43              "description": "200 ok array",
44              "items": {
45                "description": "200 ok integer",
46                "format": "int32",
47                "minimum": 0,
48                "title": "get_alliances_200_ok",
49                "type": "integer",
50                "uniqueItems": true
51              },
52              "title": "get_alliances_ok",
53              "type": "array"
54            }
55          },
56          "500": {
57            "description": "Internal server error",
58            "examples": {
59              "application/json": {
60                "error": "uncaught exception: IOError('out of memory')"
61              }
62            },
63            "schema": {
64              "description": "Internal server error",
65              "properties": {
66                "error": {
67                  "description": "Internal server error message",
68                  "title": "get_alliances_500_internal_server_error",
69                  "type": "string"
70                }
71              },
72              "title": "get_alliances_internal_server_error",
73              "type": "object"
74            }
75          }
76        },
77        "summary": "List all alliances",
78        "tags": ["Alliance"]
79      }
80    },
81    "/alliances/names/": {
82      "get": {
83        "description": "Resolve a set of alliance IDs to alliance names\n\n---\n\nAlternate route: `/v1/alliances/names/`\n\nAlternate route: `/legacy/alliances/names/`\n\nAlternate route: `/dev/alliances/names/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
84        "operationId": "get_alliances_names",
85        "parameters": [{
86          "description": "A comma separated list of alliance IDs",
87          "in": "query",
88          "items": {
89            "format": "int64",
90            "type": "integer"
91          },
92          "minItems": 1,
93          "name": "alliance_ids",
94          "required": true,
95          "type": "array"
96        }, {
97          "default": "tranquility",
98          "description": "The server name you would like data from",
99          "enum": ["tranquility", "singularity"],
100          "in": "query",
101          "name": "datasource",
102          "type": "string"
103        }],
104        "responses": {
105          "200": {
106            "description": "List of id/name associations",
107            "examples": {
108              "application/json": [{
109                "alliance_id": 1000171,
110                "alliance_name": "Republic University"
111              }]
112            },
113            "headers": {
114              "Cache-Control": {
115                "description": "The caching mechanism used",
116                "type": "string"
117              },
118              "Expires": {
119                "description": "RFC7231 formatted datetime string",
120                "type": "string"
121              },
122              "Last-Modified": {
123                "description": "RFC7231 formatted datetime string",
124                "type": "string"
125              }
126            },
127            "schema": {
128              "description": "200 ok array",
129              "items": {
130                "description": "200 ok object",
131                "properties": {
132                  "alliance_id": {
133                    "description": "alliance_id integer",
134                    "format": "int32",
135                    "title": "get_alliances_names_alliance_id",
136                    "type": "integer"
137                  },
138                  "alliance_name": {
139                    "description": "alliance_name string",
140                    "title": "get_alliances_names_alliance_name",
141                    "type": "string"
142                  }
143                },
144                "required": ["alliance_id", "alliance_name"],
145                "title": "get_alliances_names_200_ok",
146                "type": "object"
147              },
148              "title": "get_alliances_names_ok",
149              "type": "array"
150            }
151          },
152          "500": {
153            "description": "Internal server error",
154            "examples": {
155              "application/json": {
156                "error": "uncaught exception: IOError('out of memory')"
157              }
158            },
159            "schema": {
160              "description": "Internal server error",
161              "properties": {
162                "error": {
163                  "description": "Internal server error message",
164                  "title": "get_alliances_names_500_internal_server_error",
165                  "type": "string"
166                }
167              },
168              "title": "get_alliances_names_internal_server_error",
169              "type": "object"
170            }
171          }
172        },
173        "summary": "Get alliance names",
174        "tags": ["Alliance"]
175      }
176    },
177    "/alliances/{alliance_id}/": {
178      "get": {
179        "description": "Public information about an alliance\n\n---\n\nAlternate route: `/v2/alliances/{alliance_id}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
180        "operationId": "get_alliances_alliance_id",
181        "parameters": [{
182          "description": "An Eve alliance ID",
183          "format": "int32",
184          "in": "path",
185          "name": "alliance_id",
186          "required": true,
187          "type": "integer"
188        }, {
189          "default": "tranquility",
190          "description": "The server name you would like data from",
191          "enum": ["tranquility", "singularity"],
192          "in": "query",
193          "name": "datasource",
194          "type": "string"
195        }],
196        "responses": {
197          "200": {
198            "description": "Public data about an alliance",
199            "examples": {
200              "application/json": {
201                "alliance_name": "C C P Alliance",
202                "date_founded": "2016-06-26T21:00:00Z",
203                "executor_corp": 98356193,
204                "ticker": "<C C P>"
205              }
206            },
207            "headers": {
208              "Cache-Control": {
209                "description": "The caching mechanism used",
210                "type": "string"
211              },
212              "Expires": {
213                "description": "RFC7231 formatted datetime string",
214                "type": "string"
215              },
216              "Last-Modified": {
217                "description": "RFC7231 formatted datetime string",
218                "type": "string"
219              }
220            },
221            "schema": {
222              "description": "200 ok object",
223              "properties": {
224                "alliance_name": {
225                  "description": "the full name of the alliance",
226                  "title": "get_alliances_alliance_id_alliance_name",
227                  "type": "string"
228                },
229                "date_founded": {
230                  "description": "date_founded string",
231                  "format": "date-time",
232                  "title": "get_alliances_alliance_id_date_founded",
233                  "type": "string"
234                },
235                "executor_corp": {
236                  "description": "the executor corporation ID, if this alliance is not closed",
237                  "format": "int32",
238                  "title": "get_alliances_alliance_id_executor_corp",
239                  "type": "integer"
240                },
241                "ticker": {
242                  "description": "the short name of the alliance",
243                  "title": "get_alliances_alliance_id_ticker",
244                  "type": "string"
245                }
246              },
247              "required": ["alliance_name", "ticker", "date_founded"],
248              "title": "get_alliances_alliance_id_ok",
249              "type": "object"
250            }
251          },
252          "404": {
253            "description": "Alliance not found",
254            "examples": {
255              "application/json": {
256                "error": "Alliance not found"
257              }
258            },
259            "schema": {
260              "description": "Alliance not found",
261              "properties": {
262                "error": {
263                  "description": "error message",
264                  "title": "get_alliances_alliance_id_error",
265                  "type": "string"
266                }
267              },
268              "title": "get_alliances_alliance_id_not_found",
269              "type": "object"
270            }
271          },
272          "500": {
273            "description": "Internal server error",
274            "examples": {
275              "application/json": {
276                "error": "uncaught exception: IOError('out of memory')"
277              }
278            },
279            "schema": {
280              "description": "Internal server error",
281              "properties": {
282                "error": {
283                  "description": "Internal server error message",
284                  "title": "get_alliances_alliance_id_500_internal_server_error",
285                  "type": "string"
286                }
287              },
288              "title": "get_alliances_alliance_id_internal_server_error",
289              "type": "object"
290            }
291          }
292        },
293        "summary": "Get alliance information",
294        "tags": ["Alliance"]
295      }
296    },
297    "/alliances/{alliance_id}/corporations/": {
298      "get": {
299        "description": "List all current member corporations of an alliance\n\n---\n\nAlternate route: `/v1/alliances/{alliance_id}/corporations/`\n\nAlternate route: `/legacy/alliances/{alliance_id}/corporations/`\n\nAlternate route: `/dev/alliances/{alliance_id}/corporations/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
300        "operationId": "get_alliances_alliance_id_corporations",
301        "parameters": [{
302          "description": "An EVE alliance ID",
303          "format": "int32",
304          "in": "path",
305          "name": "alliance_id",
306          "required": true,
307          "type": "integer"
308        }, {
309          "default": "tranquility",
310          "description": "The server name you would like data from",
311          "enum": ["tranquility", "singularity"],
312          "in": "query",
313          "name": "datasource",
314          "type": "string"
315        }],
316        "responses": {
317          "200": {
318            "description": "List of corporation IDs",
319            "examples": {
320              "application/json": [98000001]
321            },
322            "headers": {
323              "Cache-Control": {
324                "description": "The caching mechanism used",
325                "type": "string"
326              },
327              "Expires": {
328                "description": "RFC7231 formatted datetime string",
329                "type": "string"
330              },
331              "Last-Modified": {
332                "description": "RFC7231 formatted datetime string",
333                "type": "string"
334              }
335            },
336            "schema": {
337              "description": "200 ok array",
338              "items": {
339                "description": "200 ok integer",
340                "format": "int32",
341                "minimum": 0,
342                "title": "get_alliances_alliance_id_corporations_200_ok",
343                "type": "integer",
344                "uniqueItems": true
345              },
346              "title": "get_alliances_alliance_id_corporations_ok",
347              "type": "array"
348            }
349          },
350          "500": {
351            "description": "Internal server error",
352            "examples": {
353              "application/json": {
354                "error": "uncaught exception: IOError('out of memory')"
355              }
356            },
357            "schema": {
358              "description": "Internal server error",
359              "properties": {
360                "error": {
361                  "description": "Internal server error message",
362                  "title": "get_alliances_alliance_id_corporations_500_internal_server_error",
363                  "type": "string"
364                }
365              },
366              "title": "get_alliances_alliance_id_corporations_internal_server_error",
367              "type": "object"
368            }
369          }
370        },
371        "summary": "List alliance's corporations",
372        "tags": ["Alliance"]
373      }
374    },
375    "/alliances/{alliance_id}/icons/": {
376      "get": {
377        "description": "Get the icon urls for a alliance\n\n---\n\nAlternate route: `/v1/alliances/{alliance_id}/icons/`\n\nAlternate route: `/legacy/alliances/{alliance_id}/icons/`\n\nAlternate route: `/dev/alliances/{alliance_id}/icons/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
378        "operationId": "get_alliances_alliance_id_icons",
379        "parameters": [{
380          "description": "An EVE alliance ID",
381          "format": "int32",
382          "in": "path",
383          "name": "alliance_id",
384          "required": true,
385          "type": "integer"
386        }, {
387          "default": "tranquility",
388          "description": "The server name you would like data from",
389          "enum": ["tranquility", "singularity"],
390          "in": "query",
391          "name": "datasource",
392          "type": "string"
393        }],
394        "responses": {
395          "200": {
396            "description": "Urls for icons for the given alliance id and server",
397            "examples": {
398              "application/json": {
399                "px128x128": "https://imageserver.eveonline.com/Alliance/503818424_128.png",
400                "px64x64": "https://imageserver.eveonline.com/Alliance/503818424_64.png"
401              }
402            },
403            "headers": {
404              "Cache-Control": {
405                "description": "The caching mechanism used",
406                "type": "string"
407              },
408              "Expires": {
409                "description": "RFC7231 formatted datetime string",
410                "type": "string"
411              },
412              "Last-Modified": {
413                "description": "RFC7231 formatted datetime string",
414                "type": "string"
415              }
416            },
417            "schema": {
418              "description": "200 ok object",
419              "properties": {
420                "px128x128": {
421                  "description": "px128x128 string",
422                  "title": "get_alliances_alliance_id_icons_px128x128",
423                  "type": "string"
424                },
425                "px64x64": {
426                  "description": "px64x64 string",
427                  "title": "get_alliances_alliance_id_icons_px64x64",
428                  "type": "string"
429                }
430              },
431              "title": "get_alliances_alliance_id_icons_ok",
432              "type": "object"
433            }
434          },
435          "404": {
436            "description": "No image server for this datasource",
437            "examples": {
438              "application/json": {
439                "error": "No image server for this datasource"
440              }
441            },
442            "schema": {
443              "description": "No image server for this datasource",
444              "properties": {
445                "error": {
446                  "description": "error message",
447                  "title": "get_alliances_alliance_id_icons_error",
448                  "type": "string"
449                }
450              },
451              "title": "get_alliances_alliance_id_icons_not_found",
452              "type": "object"
453            }
454          },
455          "500": {
456            "description": "Internal server error",
457            "examples": {
458              "application/json": {
459                "error": "uncaught exception: IOError('out of memory')"
460              }
461            },
462            "schema": {
463              "description": "Internal server error",
464              "properties": {
465                "error": {
466                  "description": "Internal server error message",
467                  "title": "get_alliances_alliance_id_icons_500_internal_server_error",
468                  "type": "string"
469                }
470              },
471              "title": "get_alliances_alliance_id_icons_internal_server_error",
472              "type": "object"
473            }
474          }
475        },
476        "summary": "Get alliance icon",
477        "tags": ["Alliance"]
478      }
479    },
480    "/characters/names/": {
481      "get": {
482        "description": "Resolve a set of character IDs to character names\n\n---\n\nAlternate route: `/v1/characters/names/`\n\nAlternate route: `/legacy/characters/names/`\n\nAlternate route: `/dev/characters/names/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
483        "operationId": "get_characters_names",
484        "parameters": [{
485          "description": "A comma separated list of character IDs",
486          "in": "query",
487          "items": {
488            "format": "int64",
489            "type": "integer"
490          },
491          "minItems": 1,
492          "name": "character_ids",
493          "required": true,
494          "type": "array"
495        }, {
496          "default": "tranquility",
497          "description": "The server name you would like data from",
498          "enum": ["tranquility", "singularity"],
499          "in": "query",
500          "name": "datasource",
501          "type": "string"
502        }],
503        "responses": {
504          "200": {
505            "description": "List of id/name associations",
506            "examples": {
507              "application/json": [{
508                "character_id": 95465499,
509                "character_name": "CCP Bartender"
510              }]
511            },
512            "headers": {
513              "Cache-Control": {
514                "description": "The caching mechanism used",
515                "type": "string"
516              },
517              "Expires": {
518                "description": "RFC7231 formatted datetime string",
519                "type": "string"
520              },
521              "Last-Modified": {
522                "description": "RFC7231 formatted datetime string",
523                "type": "string"
524              }
525            },
526            "schema": {
527              "description": "200 ok array",
528              "items": {
529                "description": "200 ok object",
530                "properties": {
531                  "character_id": {
532                    "description": "character_id integer",
533                    "format": "int64",
534                    "title": "get_characters_names_character_id",
535                    "type": "integer"
536                  },
537                  "character_name": {
538                    "description": "character_name string",
539                    "title": "get_characters_names_character_name",
540                    "type": "string"
541                  }
542                },
543                "required": ["character_id", "character_name"],
544                "title": "get_characters_names_200_ok",
545                "type": "object"
546              },
547              "title": "get_characters_names_ok",
548              "type": "array"
549            }
550          },
551          "500": {
552            "description": "Internal server error",
553            "examples": {
554              "application/json": {
555                "error": "uncaught exception: IOError('out of memory')"
556              }
557            },
558            "schema": {
559              "description": "Internal server error",
560              "properties": {
561                "error": {
562                  "description": "Internal server error message",
563                  "title": "get_characters_names_500_internal_server_error",
564                  "type": "string"
565                }
566              },
567              "title": "get_characters_names_internal_server_error",
568              "type": "object"
569            }
570          }
571        },
572        "summary": "Get character names",
573        "tags": ["Character"]
574      }
575    },
576    "/characters/{character_id}/": {
577      "get": {
578        "description": "Public information about a character\n\n---\n\nAlternate route: `/v3/characters/{character_id}/`\n\nAlternate route: `/legacy/characters/{character_id}/`\n\nAlternate route: `/dev/characters/{character_id}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
579        "operationId": "get_characters_character_id",
580        "parameters": [{
581          "description": "An EVE character ID",
582          "format": "int32",
583          "in": "path",
584          "name": "character_id",
585          "required": true,
586          "type": "integer"
587        }, {
588          "default": "tranquility",
589          "description": "The server name you would like data from",
590          "enum": ["tranquility", "singularity"],
591          "in": "query",
592          "name": "datasource",
593          "type": "string"
594        }],
595        "responses": {
596          "200": {
597            "description": "Public data for the given character",
598            "examples": {
599              "application/json": {
600                "ancestry_id": 19,
601                "birthday": "2015-03-24T11:37:00Z",
602                "bloodline_id": 3,
603                "corporation_id": 109299958,
604                "description": "",
605                "gender": "male",
606                "name": "CCP Bartender",
607                "race_id": 2
608              }
609            },
610            "headers": {
611              "Cache-Control": {
612                "description": "The caching mechanism used",
613                "type": "string"
614              },
615              "Expires": {
616                "description": "RFC7231 formatted datetime string",
617                "type": "string"
618              },
619              "Last-Modified": {
620                "description": "RFC7231 formatted datetime string",
621                "type": "string"
622              }
623            },
624            "schema": {
625              "description": "200 ok object",
626              "properties": {
627                "ancestry_id": {
628                  "description": "ancestry_id integer",
629                  "format": "int32",
630                  "title": "get_characters_character_id_ancestry_id",
631                  "type": "integer"
632                },
633                "birthday": {
634                  "description": "Creation date of the character",
635                  "format": "date-time",
636                  "title": "get_characters_character_id_birthday",
637                  "type": "string"
638                },
639                "bloodline_id": {
640                  "description": "bloodline_id integer",
641                  "format": "int32",
642                  "title": "get_characters_character_id_bloodline_id",
643                  "type": "integer"
644                },
645                "corporation_id": {
646                  "description": "The character's corporation ID",
647                  "format": "int32",
648                  "title": "get_characters_character_id_corporation_id",
649                  "type": "integer"
650                },
651                "description": {
652                  "description": "description string",
653                  "title": "get_characters_character_id_description",
654                  "type": "string"
655                },
656                "gender": {
657                  "description": "gender string",
658                  "enum": ["female", "male"],
659                  "title": "get_characters_character_id_gender",
660                  "type": "string"
661                },
662                "name": {
663                  "description": "The name of the character",
664                  "title": "get_characters_character_id_name",
665                  "type": "string"
666                },
667                "race_id": {
668                  "description": "race_id integer",
669                  "format": "int32",
670                  "title": "get_characters_character_id_race_id",
671                  "type": "integer"
672                },
673                "security_status": {
674                  "description": "security_status number",
675                  "format": "float",
676                  "maximum": 10,
677                  "minimum": -10,
678                  "title": "get_characters_character_id_security_status",
679                  "type": "number"
680                }
681              },
682              "required": ["corporation_id", "birthday", "name", "gender", "race_id", "description", "bloodline_id"],
683              "title": "get_characters_character_id_ok",
684              "type": "object"
685            }
686          },
687          "422": {
688            "description": "Is not a character ID",
689            "examples": {
690              "application/json": {
691                "error": "98000001 is not a character ID"
692              }
693            },
694            "schema": {
695              "description": "Is not a character ID",
696              "properties": {
697                "error": {
698                  "description": "error message",
699                  "title": "get_characters_character_id_error",
700                  "type": "string"
701                }
702              },
703              "title": "get_characters_character_id_unprocessable_entity",
704              "type": "object"
705            }
706          },
707          "500": {
708            "description": "Internal server error",
709            "examples": {
710              "application/json": {
711                "error": "uncaught exception: IOError('out of memory')"
712              }
713            },
714            "schema": {
715              "description": "Internal server error",
716              "properties": {
717                "error": {
718                  "description": "Internal server error message",
719                  "title": "get_characters_character_id_500_internal_server_error",
720                  "type": "string"
721                }
722              },
723              "title": "get_characters_character_id_internal_server_error",
724              "type": "object"
725            }
726          }
727        },
728        "summary": "Get character's public information",
729        "tags": ["Character"]
730      }
731    },
732    "/characters/{character_id}/assets/": {
733      "get": {
734        "description": "Return a list of the characters assets\n\n---\n\nAlternate route: `/v1/characters/{character_id}/assets/`\n\nAlternate route: `/legacy/characters/{character_id}/assets/`\n\nAlternate route: `/dev/characters/{character_id}/assets/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
735        "operationId": "get_characters_character_id_assets",
736        "parameters": [{
737          "description": "Character id of the target character",
738          "format": "int32",
739          "in": "path",
740          "name": "character_id",
741          "required": true,
742          "type": "integer"
743        }, {
744          "default": "tranquility",
745          "description": "The server name you would like data from",
746          "enum": ["tranquility", "singularity"],
747          "in": "query",
748          "name": "datasource",
749          "type": "string"
750        }],
751        "responses": {
752          "200": {
753            "description": "A flat list of the users assets",
754            "examples": {
755              "application/json": [{
756                "is_singleton": true,
757                "item_id": 1000000016835,
758                "location_flag": "Hangar",
759                "location_id": 60002959,
760                "location_type": "station",
761                "type_id": 3516
762              }]
763            },
764            "headers": {
765              "Cache-Control": {
766                "description": "The caching mechanism used",
767                "type": "string"
768              },
769              "Expires": {
770                "description": "RFC7231 formatted datetime string",
771                "type": "string"
772              },
773              "Last-Modified": {
774                "description": "RFC7231 formatted datetime string",
775                "type": "string"
776              }
777            },
778            "schema": {
779              "description": "200 ok array",
780              "items": {
781                "description": "200 ok object",
782                "properties": {
783                  "is_singleton": {
784                    "description": "is_singleton boolean",
785                    "title": "get_characters_character_id_assets_is_singleton",
786                    "type": "boolean"
787                  },
788                  "item_id": {
789                    "description": "item_id integer",
790                    "format": "int64",
791                    "title": "get_characters_character_id_assets_item_id",
792                    "type": "integer"
793                  },
794                  "location_flag": {
795                    "description": "location_flag string",
796                    "enum": ["AutoFit", "Cargo", "CorpseBay", "DroneBay", "FleetHangar", "Deliveries", "HiddenModifiers", "Hangar", "HangarAll", "LoSlot0", "LoSlot1", "LoSlot2", "LoSlot3", "LoSlot4", "LoSlot5", "LoSlot6", "LoSlot7", "MedSlot0", "MedSlot1", "MedSlot2", "MedSlot3", "MedSlot4", "MedSlot5", "MedSlot6", "MedSlot7", "HiSlot0", "HiSlot1", "HiSlot2", "HiSlot3", "HiSlot4", "HiSlot5", "HiSlot6", "HiSlot7", "AssetSafety", "Locked", "Unlocked", "Implant", "QuafeBay", "RigSlot0", "RigSlot1", "RigSlot2", "RigSlot3", "RigSlot4", "RigSlot5", "RigSlot6", "RigSlot7", "ShipHangar", "SpecializedFuelBay", "SpecializedOreHold", "SpecializedGasHold", "SpecializedMineralHold", "SpecializedSalvageHold", "SpecializedShipHold", "SpecializedSmallShipHold", "SpecializedMediumShipHold", "SpecializedLargeShipHold", "SpecializedIndustrialShipHold", "SpecializedAmmoHold", "SpecializedCommandCenterHold", "SpecializedPlanetaryCommoditiesHold", "SpecializedMaterialBay", "SubSystemSlot0", "SubSystemSlot1", "SubSystemSlot2", "SubSystemSlot3", "SubSystemSlot4", "SubSystemSlot5", "SubSystemSlot6", "SubSystemSlot7", "FighterBay", "FighterTube0", "FighterTube1", "FighterTube2", "FighterTube3", "FighterTube4"],
797                    "title": "get_characters_character_id_assets_location_flag",
798                    "type": "string"
799                  },
800                  "location_id": {
801                    "description": "location_id integer",
802                    "format": "int64",
803                    "title": "get_characters_character_id_assets_location_id",
804                    "type": "integer"
805                  },
806                  "location_type": {
807                    "description": "location_type string",
808                    "enum": ["station", "solar_system", "other"],
809                    "title": "get_characters_character_id_assets_location_type",
810                    "type": "string"
811                  },
812                  "quantity": {
813                    "description": "quantity integer",
814                    "format": "int32",
815                    "title": "get_characters_character_id_assets_quantity",
816                    "type": "integer"
817                  },
818                  "type_id": {
819                    "description": "type_id integer",
820                    "format": "int32",
821                    "title": "get_characters_character_id_assets_type_id",
822                    "type": "integer"
823                  }
824                },
825                "required": ["type_id", "location_id", "location_type", "item_id", "location_flag", "is_singleton"],
826                "title": "get_characters_character_id_assets_200_ok",
827                "type": "object"
828              },
829              "title": "get_characters_character_id_assets_ok",
830              "type": "array"
831            }
832          },
833          "403": {
834            "description": "Forbidden",
835            "examples": {
836              "application/json": {
837                "error": "Token is not valid for scope(s): esi-assets.read_assets.v1"
838              }
839            },
840            "schema": {
841              "description": "Forbidden",
842              "properties": {
843                "error": {
844                  "description": "Forbidden message",
845                  "title": "get_characters_character_id_assets_403_forbidden",
846                  "type": "string"
847                }
848              },
849              "title": "get_characters_character_id_assets_forbidden",
850              "type": "object"
851            }
852          },
853          "500": {
854            "description": "Internal server error",
855            "examples": {
856              "application/json": {
857                "error": "uncaught exception: IOError('out of memory')"
858              }
859            },
860            "schema": {
861              "description": "Internal server error",
862              "properties": {
863                "error": {
864                  "description": "Internal server error message",
865                  "title": "get_characters_character_id_assets_500_internal_server_error",
866                  "type": "string"
867                }
868              },
869              "title": "get_characters_character_id_assets_internal_server_error",
870              "type": "object"
871            }
872          }
873        },
874        "security": [{
875          "evesso": ["esi-assets.read_assets.v1"]
876        }],
877        "summary": "Get character assets",
878        "tags": ["Assets"]
879      }
880    },
881    "/characters/{character_id}/bookmarks/": {
882      "get": {
883        "description": "List your character's personal bookmarks\n\n---\n\nAlternate route: `/v1/characters/{character_id}/bookmarks/`\n\nAlternate route: `/legacy/characters/{character_id}/bookmarks/`\n\nAlternate route: `/dev/characters/{character_id}/bookmarks/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
884        "operationId": "get_characters_character_id_bookmarks",
885        "parameters": [{
886          "description": "An EVE character ID",
887          "format": "int32",
888          "in": "path",
889          "name": "character_id",
890          "required": true,
891          "type": "integer"
892        }, {
893          "default": "tranquility",
894          "description": "The server name you would like data from",
895          "enum": ["tranquility", "singularity"],
896          "in": "query",
897          "name": "datasource",
898          "type": "string"
899        }],
900        "responses": {
901          "200": {
902            "description": "A list of bookmarks",
903            "examples": {
904              "application/json": [{
905                "bookmark_id": 32,
906                "create_date": "2016-08-09T11:57:47Z",
907                "creator_id": 90000001,
908                "folder_id": 5,
909                "memo": "aoeu ( Citadel )",
910                "note": "",
911                "owner_id": 90000001,
912                "target": {
913                  "item": {
914                    "item_id": 1000000012668,
915                    "type_id": 35832
916                  },
917                  "location_id": 30000005
918                }
919              }]
920            },
921            "headers": {
922              "Cache-Control": {
923                "description": "The caching mechanism used",
924                "type": "string"
925              },
926              "Expires": {
927                "description": "RFC7231 formatted datetime string",
928                "type": "string"
929              },
930              "Last-Modified": {
931                "description": "RFC7231 formatted datetime string",
932                "type": "string"
933              }
934            },
935            "schema": {
936              "description": "200 ok array",
937              "items": {
938                "description": "200 ok object",
939                "properties": {
940                  "bookmark_id": {
941                    "description": "bookmark_id integer",
942                    "format": "int64",
943                    "title": "get_characters_character_id_bookmarks_bookmark_id",
944                    "type": "integer"
945                  },
946                  "create_date": {
947                    "description": "create_date string",
948                    "format": "date-time",
949                    "title": "get_characters_character_id_bookmarks_create_date",
950                    "type": "string"
951                  },
952                  "creator_id": {
953                    "description": "creator_id integer",
954                    "format": "int32",
955                    "title": "get_characters_character_id_bookmarks_creator_id",
956                    "type": "integer"
957                  },
958                  "folder_id": {
959                    "description": "folder_id integer",
960                    "format": "int32",
961                    "title": "get_characters_character_id_bookmarks_folder_id",
962                    "type": "integer"
963                  },
964                  "memo": {
965                    "description": "memo string",
966                    "title": "get_characters_character_id_bookmarks_memo",
967                    "type": "string"
968                  },
969                  "note": {
970                    "description": "note string",
971                    "title": "get_characters_character_id_bookmarks_note",
972                    "type": "string"
973                  },
974                  "owner_id": {
975                    "description": "owner_id integer",
976                    "format": "int32",
977                    "title": "get_characters_character_id_bookmarks_owner_id",
978                    "type": "integer"
979                  },
980                  "target": {
981                    "description": "target object",
982                    "properties": {
983                      "coordinates": {
984                        "description": "coordinates object",
985                        "properties": {
986                          "x": {
987                            "description": "x number",
988                            "format": "double",
989                            "title": "get_characters_character_id_bookmarks_x",
990                            "type": "number"
991                          },
992                          "y": {
993                            "description": "y number",
994                            "format": "double",
995                            "title": "get_characters_character_id_bookmarks_y",
996                            "type": "number"
997                          },
998                          "z": {
999                            "description": "z number",
1000                            "format": "double",
1001                            "title": "get_characters_character_id_bookmarks_z",
1002                            "type": "number"
1003                          }
1004                        },
1005                        "required": ["x", "y", "z"],
1006                        "title": "get_characters_character_id_bookmarks_coordinates",
1007                        "type": "object"
1008                      },
1009                      "item": {
1010                        "description": "item object",
1011                        "properties": {
1012                          "item_id": {
1013                            "description": "item_id integer",
1014                            "format": "int64",
1015                            "title": "get_characters_character_id_bookmarks_item_id",
1016                            "type": "integer"
1017                          },
1018                          "type_id": {
1019                            "description": "type_id integer",
1020                            "format": "int32",
1021                            "title": "get_characters_character_id_bookmarks_type_id",
1022                            "type": "integer"
1023                          }
1024                        },
1025                        "required": ["item_id", "type_id"],
1026                        "title": "get_characters_character_id_bookmarks_item",
1027                        "type": "object"
1028                      },
1029                      "location_id": {
1030                        "description": "location_id integer",
1031                        "format": "int64",
1032                        "title": "get_characters_character_id_bookmarks_location_id",
1033                        "type": "integer"
1034                      }
1035                    },
1036                    "required": ["location_id"],
1037                    "title": "get_characters_character_id_bookmarks_target",
1038                    "type": "object"
1039                  }
1040                },
1041                "required": ["bookmark_id", "creator_id", "owner_id", "create_date", "memo", "note", "target"],
1042                "title": "get_characters_character_id_bookmarks_200_ok",
1043                "type": "object"
1044              },
1045              "title": "get_characters_character_id_bookmarks_ok",
1046              "type": "array"
1047            }
1048          },
1049          "403": {
1050            "description": "Forbidden",
1051            "examples": {
1052              "application/json": {
1053                "error": "Token is not valid for scope(s): esi-bookmarks.read_character_bookmarks.v1"
1054              }
1055            },
1056            "schema": {
1057              "description": "Forbidden",
1058              "properties": {
1059                "error": {
1060                  "description": "Forbidden message",
1061                  "title": "get_characters_character_id_bookmarks_403_forbidden",
1062                  "type": "string"
1063                }
1064              },
1065              "title": "get_characters_character_id_bookmarks_forbidden",
1066              "type": "object"
1067            }
1068          },
1069          "500": {
1070            "description": "Internal server error",
1071            "examples": {
1072              "application/json": {
1073                "error": "uncaught exception: IOError('out of memory')"
1074              }
1075            },
1076            "schema": {
1077              "description": "Internal server error",
1078              "properties": {
1079                "error": {
1080                  "description": "Internal server error message",
1081                  "title": "get_characters_character_id_bookmarks_500_internal_server_error",
1082                  "type": "string"
1083                }
1084              },
1085              "title": "get_characters_character_id_bookmarks_internal_server_error",
1086              "type": "object"
1087            }
1088          }
1089        },
1090        "security": [{
1091          "evesso": ["esi-bookmarks.read_character_bookmarks.v1"]
1092        }],
1093        "summary": "List bookmarks",
1094        "tags": ["Bookmarks"]
1095      }
1096    },
1097    "/characters/{character_id}/bookmarks/folders/": {
1098      "get": {
1099        "description": "List your character's personal bookmark folders\n\n---\n\nAlternate route: `/v1/characters/{character_id}/bookmarks/folders/`\n\nAlternate route: `/legacy/characters/{character_id}/bookmarks/folders/`\n\nAlternate route: `/dev/characters/{character_id}/bookmarks/folders/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
1100        "operationId": "get_characters_character_id_bookmarks_folders",
1101        "parameters": [{
1102          "description": "An EVE character ID",
1103          "format": "int32",
1104          "in": "path",
1105          "name": "character_id",
1106          "required": true,
1107          "type": "integer"
1108        }, {
1109          "default": "tranquility",
1110          "description": "The server name you would like data from",
1111          "enum": ["tranquility", "singularity"],
1112          "in": "query",
1113          "name": "datasource",
1114          "type": "string"
1115        }],
1116        "responses": {
1117          "200": {
1118            "description": "List of bookmark folders",
1119            "examples": {
1120              "application/json": [{
1121                "folder_id": 5,
1122                "name": "Icecream",
1123                "owner_id": 90000001
1124              }]
1125            },
1126            "headers": {
1127              "Cache-Control": {
1128                "description": "The caching mechanism used",
1129                "type": "string"
1130              },
1131              "Expires": {
1132                "description": "RFC7231 formatted datetime string",
1133                "type": "string"
1134              },
1135              "Last-Modified": {
1136                "description": "RFC7231 formatted datetime string",
1137                "type": "string"
1138              }
1139            },
1140            "schema": {
1141              "description": "200 ok array",
1142              "items": {
1143                "description": "200 ok object",
1144                "properties": {
1145                  "folder_id": {
1146                    "description": "folder_id integer",
1147                    "format": "int32",
1148                    "title": "get_characters_character_id_bookmarks_folders_folder_id",
1149                    "type": "integer"
1150                  },
1151                  "name": {
1152                    "description": "name string",
1153                    "title": "get_characters_character_id_bookmarks_folders_name",
1154                    "type": "string"
1155                  },
1156                  "owner_id": {
1157                    "description": "owner_id integer",
1158                    "format": "int32",
1159                    "title": "get_characters_character_id_bookmarks_folders_owner_id",
1160                    "type": "integer"
1161                  }
1162                },
1163                "title": "get_characters_character_id_bookmarks_folders_200_ok",
1164                "type": "object"
1165              },
1166              "title": "get_characters_character_id_bookmarks_folders_ok",
1167              "type": "array"
1168            }
1169          },
1170          "403": {
1171            "description": "Forbidden",
1172            "examples": {
1173              "application/json": {
1174                "error": "Token is not valid for scope(s): esi-bookmarks.read_character_bookmarks.v1"
1175              }
1176            },
1177            "schema": {
1178              "description": "Forbidden",
1179              "properties": {
1180                "error": {
1181                  "description": "Forbidden message",
1182                  "title": "get_characters_character_id_bookmarks_folders_403_forbidden",
1183                  "type": "string"
1184                }
1185              },
1186              "title": "get_characters_character_id_bookmarks_folders_forbidden",
1187              "type": "object"
1188            }
1189          },
1190          "500": {
1191            "description": "Internal server error",
1192            "examples": {
1193              "application/json": {
1194                "error": "uncaught exception: IOError('out of memory')"
1195              }
1196            },
1197            "schema": {
1198              "description": "Internal server error",
1199              "properties": {
1200                "error": {
1201                  "description": "Internal server error message",
1202                  "title": "get_characters_character_id_bookmarks_folders_500_internal_server_error",
1203                  "type": "string"
1204                }
1205              },
1206              "title": "get_characters_character_id_bookmarks_folders_internal_server_error",
1207              "type": "object"
1208            }
1209          }
1210        },
1211        "security": [{
1212          "evesso": ["esi-bookmarks.read_character_bookmarks.v1"]
1213        }],
1214        "summary": "List bookmark folders",
1215        "tags": ["Bookmarks"]
1216      }
1217    },
1218    "/characters/{character_id}/calendar/": {
1219      "get": {
1220        "description": "Get 50 event summaries from the calendar. If no event ID is given,\nthe resource will return the next 50 chronological event summaries\nfrom now. If an event ID is specified, it will return the next 50\nchronological event summaries from after that event.\n\n\n---\n\nAlternate route: `/v1/characters/{character_id}/calendar/`\n\nAlternate route: `/legacy/characters/{character_id}/calendar/`\n\nAlternate route: `/dev/characters/{character_id}/calendar/`\n\n\n---\n\nThis route is cached for up to 5 seconds",
1221        "operationId": "get_characters_character_id_calendar",
1222        "parameters": [{
1223          "description": "The character to retrieve events from",
1224          "format": "int64",
1225          "in": "path",
1226          "name": "character_id",
1227          "required": true,
1228          "type": "integer"
1229        }, {
1230          "description": "The event ID to retrieve events from",
1231          "format": "int32",
1232          "in": "query",
1233          "name": "from_event",
1234          "required": false,
1235          "type": "integer"
1236        }, {
1237          "default": "tranquility",
1238          "description": "The server name you would like data from",
1239          "enum": ["tranquility", "singularity"],
1240          "in": "query",
1241          "name": "datasource",
1242          "type": "string"
1243        }],
1244        "responses": {
1245          "200": {
1246            "description": "A collection of event summaries",
1247            "examples": {
1248              "application/json": [{
1249                "event_date": "2016-06-26T20:00:00Z",
1250                "event_id": 1386435,
1251                "event_response": "accepted",
1252                "importance": 0,
1253                "title": "o7 The EVE Online Show"
1254              }]
1255            },
1256            "headers": {
1257              "Cache-Control": {
1258                "description": "The caching mechanism used",
1259                "type": "string"
1260              },
1261              "Expires": {
1262                "description": "RFC7231 formatted datetime string",
1263                "type": "string"
1264              },
1265              "Last-Modified": {
1266                "description": "RFC7231 formatted datetime string",
1267                "type": "string"
1268              }
1269            },
1270            "schema": {
1271              "description": "Up to 50 events from now or the event you requested\n",
1272              "items": {
1273                "description": "event",
1274                "properties": {
1275                  "event_date": {
1276                    "description": "event_date string",
1277                    "format": "date-time",
1278                    "title": "get_characters_character_id_calendar_event_date",
1279                    "type": "string"
1280                  },
1281                  "event_id": {
1282                    "description": "event_id integer",
1283                    "format": "int32",
1284                    "title": "get_characters_character_id_calendar_event_id",
1285                    "type": "integer"
1286                  },
1287                  "event_response": {
1288                    "description": "event_response string",
1289                    "enum": ["declined", "not_responded", "accepted", "tentative"],
1290                    "title": "get_characters_character_id_calendar_event_response",
1291                    "type": "string"
1292                  },
1293                  "importance": {
1294                    "description": "importance integer",
1295                    "format": "int32",
1296                    "title": "get_characters_character_id_calendar_importance",
1297                    "type": "integer"
1298                  },
1299                  "title": {
1300                    "description": "title string",
1301                    "title": "get_characters_character_id_calendar_title",
1302                    "type": "string"
1303                  }
1304                },
1305                "title": "get_characters_character_id_calendar_200_ok",
1306                "type": "object"
1307              },
1308              "title": "get_characters_character_id_calendar_ok",
1309              "type": "array"
1310            }
1311          },
1312          "403": {
1313            "description": "Forbidden",
1314            "examples": {
1315              "application/json": {
1316                "error": "Token is not valid for scope(s): esi-calendar.read_calendar_events.v1"
1317              }
1318            },
1319            "schema": {
1320              "description": "Forbidden",
1321              "properties": {
1322                "error": {
1323                  "description": "Forbidden message",
1324                  "title": "get_characters_character_id_calendar_403_forbidden",
1325                  "type": "string"
1326                }
1327              },
1328              "title": "get_characters_character_id_calendar_forbidden",
1329              "type": "object"
1330            }
1331          },
1332          "500": {
1333            "description": "Internal server error",
1334            "examples": {
1335              "application/json": {
1336                "error": "uncaught exception: IOError('out of memory')"
1337              }
1338            },
1339            "schema": {
1340              "description": "Internal server error",
1341              "properties": {
1342                "error": {
1343                  "description": "Internal server error message",
1344                  "title": "get_characters_character_id_calendar_500_internal_server_error",
1345                  "type": "string"
1346                }
1347              },
1348              "title": "get_characters_character_id_calendar_internal_server_error",
1349              "type": "object"
1350            }
1351          }
1352        },
1353        "security": [{
1354          "evesso": ["esi-calendar.read_calendar_events.v1"]
1355        }],
1356        "summary": "List calendar event summaries",
1357        "tags": ["Calendar"]
1358      }
1359    },
1360    "/characters/{character_id}/calendar/{event_id}/": {
1361      "get": {
1362        "description": "Get all the information for a specific event\n\n---\n\nAlternate route: `/v3/characters/{character_id}/calendar/{event_id}/`\n\nAlternate route: `/dev/characters/{character_id}/calendar/{event_id}/`\n\n\n---\n\nThis route is cached for up to 5 seconds",
1363        "operationId": "get_characters_character_id_calendar_event_id",
1364        "parameters": [{
1365          "description": "The character id requesting the event",
1366          "format": "int64",
1367          "in": "path",
1368          "name": "character_id",
1369          "required": true,
1370          "type": "integer"
1371        }, {
1372          "description": "The id of the event requested",
1373          "format": "int32",
1374          "in": "path",
1375          "name": "event_id",
1376          "required": true,
1377          "type": "integer"
1378        }, {
1379          "default": "tranquility",
1380          "description": "The server name you would like data from",
1381          "enum": ["tranquility", "singularity"],
1382          "in": "query",
1383          "name": "datasource",
1384          "type": "string"
1385        }],
1386        "responses": {
1387          "200": {
1388            "description": "Full details of a specific event",
1389            "examples": {
1390              "application/json": {
1391                "date": "2016-06-26T21:00:00Z",
1392                "duration": 60,
1393                "event_id": 1386435,
1394                "importance": 1,
1395                "owner_id": 1,
1396                "owner_name": "EVE System",
1397                "owner_type": "eve_server",
1398                "response": "Undecided",
1399                "text": "o7: The EVE Online Show features latest developer news, fast paced action, community overviews and a lot more with CCP Guard and CCP Mimic. Join the thrilling o7 live broadcast at 20:00 EVE time (=UTC) on <a href=\"http://www.twitch.tv/ccp\">EVE TV</a>. Don't miss it!",
1400                "title": "o7 The EVE Online Show"
1401              }
1402            },
1403            "headers": {
1404              "Cache-Control": {
1405                "description": "The caching mechanism used",
1406                "type": "string"
1407              },
1408              "Expires": {
1409                "description": "RFC7231 formatted datetime string",
1410                "type": "string"
1411              },
1412              "Last-Modified": {
1413                "description": "RFC7231 formatted datetime string",
1414                "type": "string"
1415              }
1416            },
1417            "schema": {
1418              "description": "Full details of a specific event",
1419              "properties": {
1420                "date": {
1421                  "description": "date string",
1422                  "format": "date-time",
1423                  "title": "get_characters_character_id_calendar_event_id_date",
1424                  "type": "string"
1425                },
1426                "duration": {
1427                  "description": "Length in minutes",
1428                  "format": "int64",
1429                  "title": "get_characters_character_id_calendar_event_id_duration",
1430                  "type": "integer"
1431                },
1432                "event_id": {
1433                  "description": "event_id integer",
1434                  "format": "int32",
1435                  "title": "get_characters_character_id_calendar_event_id_event_id",
1436                  "type": "integer"
1437                },
1438                "importance": {
1439                  "description": "importance integer",
1440                  "format": "int32",
1441                  "title": "get_characters_character_id_calendar_event_id_importance",
1442                  "type": "integer"
1443                },
1444                "owner_id": {
1445                  "description": "owner_id integer",
1446                  "format": "int64",
1447                  "title": "get_characters_character_id_calendar_event_id_owner_id",
1448                  "type": "integer"
1449                },
1450                "owner_name": {
1451                  "description": "owner_name string",
1452                  "title": "get_characters_character_id_calendar_event_id_owner_name",
1453                  "type": "string"
1454                },
1455                "owner_type": {
1456                  "description": "owner_type string",
1457                  "enum": ["eve_server", "corporation", "faction", "character", "alliance"],
1458                  "title": "get_characters_character_id_calendar_event_id_owner_type",
1459                  "type": "string"
1460                },
1461                "response": {
1462                  "description": "response string",
1463                  "title": "get_characters_character_id_calendar_event_id_response",
1464                  "type": "string"
1465                },
1466                "text": {
1467                  "description": "text string",
1468                  "title": "get_characters_character_id_calendar_event_id_text",
1469                  "type": "string"
1470                },
1471                "title": {
1472                  "description": "title string",
1473                  "title": "get_characters_character_id_calendar_event_id_title",
1474                  "type": "string"
1475                }
1476              },
1477              "required": ["event_id", "owner_id", "owner_name", "date", "title", "duration", "importance", "response", "text", "owner_type"],
1478              "title": "get_characters_character_id_calendar_event_id_ok",
1479              "type": "object"
1480            }
1481          },
1482          "403": {
1483            "description": "Forbidden",
1484            "examples": {
1485              "application/json": {
1486                "error": "Token is not valid for scope(s): esi-calendar.read_calendar_events.v1"
1487              }
1488            },
1489            "schema": {
1490              "description": "Forbidden",
1491              "properties": {
1492                "error": {
1493                  "description": "Forbidden message",
1494                  "title": "get_characters_character_id_calendar_event_id_403_forbidden",
1495                  "type": "string"
1496                }
1497              },
1498              "title": "get_characters_character_id_calendar_event_id_forbidden",
1499              "type": "object"
1500            }
1501          },
1502          "500": {
1503            "description": "Internal server error",
1504            "examples": {
1505              "application/json": {
1506                "error": "uncaught exception: IOError('out of memory')"
1507              }
1508            },
1509            "schema": {
1510              "description": "Internal server error",
1511              "properties": {
1512                "error": {
1513                  "description": "Internal server error message",
1514                  "title": "get_characters_character_id_calendar_event_id_500_internal_server_error",
1515                  "type": "string"
1516                }
1517              },
1518              "title": "get_characters_character_id_calendar_event_id_internal_server_error",
1519              "type": "object"
1520            }
1521          }
1522        },
1523        "security": [{
1524          "evesso": ["esi-calendar.read_calendar_events.v1"]
1525        }],
1526        "summary": "Get an event",
1527        "tags": ["Calendar"]
1528      },
1529      "put": {
1530        "description": "Set your response status to an event\n\n---\n\nAlternate route: `/v3/characters/{character_id}/calendar/{event_id}/`\n\nAlternate route: `/dev/characters/{character_id}/calendar/{event_id}/`\n",
1531        "operationId": "put_characters_character_id_calendar_event_id",
1532        "parameters": [{
1533          "description": "The character ID requesting the event",
1534          "format": "int32",
1535          "in": "path",
1536          "name": "character_id",
1537          "required": true,
1538          "type": "integer"
1539        }, {
1540          "description": "The ID of the event requested",
1541          "format": "int32",
1542          "in": "path",
1543          "name": "event_id",
1544          "required": true,
1545          "type": "integer"
1546        }, {
1547          "description": "The response value to set, overriding current value.",
1548          "in": "body",
1549          "name": "response",
1550          "required": true,
1551          "schema": {
1552            "description": "response schema",
1553            "properties": {
1554              "response": {
1555                "description": "response string",
1556                "enum": ["accepted", "declined", "tentative"],
1557                "title": "put_characters_character_id_calendar_event_id_response",
1558                "type": "string"
1559              }
1560            },
1561            "required": ["response"],
1562            "title": "put_characters_character_id_calendar_event_id_response"
1563          }
1564        }, {
1565          "default": "tranquility",
1566          "description": "The server name you would like data from",
1567          "enum": ["tranquility", "singularity"],
1568          "in": "query",
1569          "name": "datasource",
1570          "type": "string"
1571        }],
1572        "responses": {
1573          "204": {
1574            "description": "Event updated"
1575          },
1576          "403": {
1577            "description": "Forbidden",
1578            "examples": {
1579              "application/json": {
1580                "error": "Token is not valid for scope(s): esi-calendar.respond_calendar_events.v1"
1581              }
1582            },
1583            "schema": {
1584              "description": "Forbidden",
1585              "properties": {
1586                "error": {
1587                  "description": "Forbidden message",
1588                  "title": "put_characters_character_id_calendar_event_id_403_forbidden",
1589                  "type": "string"
1590                }
1591              },
1592              "title": "put_characters_character_id_calendar_event_id_forbidden",
1593              "type": "object"
1594            }
1595          },
1596          "500": {
1597            "description": "Internal server error",
1598            "examples": {
1599              "application/json": {
1600                "error": "uncaught exception: IOError('out of memory')"
1601              }
1602            },
1603            "schema": {
1604              "description": "Internal server error",
1605              "properties": {
1606                "error": {
1607                  "description": "Internal server error message",
1608                  "title": "put_characters_character_id_calendar_event_id_500_internal_server_error",
1609                  "type": "string"
1610                }
1611              },
1612              "title": "put_characters_character_id_calendar_event_id_internal_server_error",
1613              "type": "object"
1614            }
1615          }
1616        },
1617        "security": [{
1618          "evesso": ["esi-calendar.respond_calendar_events.v1"]
1619        }],
1620        "summary": "Respond to an event",
1621        "tags": ["Calendar"]
1622      }
1623    },
1624    "/characters/{character_id}/clones/": {
1625      "get": {
1626        "description": "A list of the character's clones\n\n---\n\nAlternate route: `/v2/characters/{character_id}/clones/`\n\nAlternate route: `/dev/characters/{character_id}/clones/`\n\n\n---\n\nThis route is cached for up to 120 seconds",
1627        "operationId": "get_characters_character_id_clones",
1628        "parameters": [{
1629          "description": "An EVE character ID",
1630          "format": "int32",
1631          "in": "path",
1632          "name": "character_id",
1633          "required": true,
1634          "type": "integer"
1635        }, {
1636          "default": "tranquility",
1637          "description": "The server name you would like data from",
1638          "enum": ["tranquility", "singularity"],
1639          "in": "query",
1640          "name": "datasource",
1641          "type": "string"
1642        }],
1643        "responses": {
1644          "200": {
1645            "description": "Clone information for the given character",
1646            "examples": {
1647              "application/json": {
1648                "home_location": {
1649                  "location_id": 1021348135816,
1650                  "location_type": "structure"
1651                },
1652                "jump_clones": [{
1653                  "implants": [22118],
1654                  "location_id": 60003463,
1655                  "location_type": "station"
1656                }, {
1657                  "implants": [],
1658                  "location_id": 1021348135816,
1659                  "location_type": "structure"
1660                }]
1661              }
1662            },
1663            "headers": {
1664              "Cache-Control": {
1665                "description": "The caching mechanism used",
1666                "type": "string"
1667              },
1668              "Expires": {
1669                "description": "RFC7231 formatted datetime string",
1670                "type": "string"
1671              },
1672              "Last-Modified": {
1673                "description": "RFC7231 formatted datetime string",
1674                "type": "string"
1675              }
1676            },
1677            "schema": {
1678              "description": "200 ok object",
1679              "properties": {
1680                "home_location": {
1681                  "description": "home_location object",
1682                  "properties": {
1683                    "location_id": {
1684                      "description": "location_id integer",
1685                      "format": "int64",
1686                      "title": "get_characters_character_id_clones_location_id",
1687                      "type": "integer"
1688                    },
1689                    "location_type": {
1690                      "description": "location_type string",
1691                      "enum": ["station", "structure"],
1692                      "title": "get_characters_character_id_clones_location_type",
1693                      "type": "string"
1694                    }
1695                  },
1696                  "title": "get_characters_character_id_clones_home_location",
1697                  "type": "object"
1698                },
1699                "jump_clones": {
1700                  "description": "jump_clones array",
1701                  "items": {
1702                    "description": "jump_clone object",
1703                    "properties": {
1704                      "implants": {
1705                        "description": "implants array",
1706                        "items": {
1707                          "description": "implant integer",
1708                          "format": "int32",
1709                          "title": "get_characters_character_id_clones_implant",
1710                          "type": "integer"
1711                        },
1712                        "title": "get_characters_character_id_clones_implants",
1713                        "type": "array"
1714                      },
1715                      "location_id": {
1716                        "description": "location_id integer",
1717                        "format": "int64",
1718                        "title": "get_characters_character_id_clones_location_id",
1719                        "type": "integer"
1720                      },
1721                      "location_type": {
1722                        "description": "location_type string",
1723                        "enum": ["station", "structure"],
1724                        "title": "get_characters_character_id_clones_location_type",
1725                        "type": "string"
1726                      }
1727                    },
1728                    "title": "get_characters_character_id_clones_jump_clone",
1729                    "type": "object"
1730                  },
1731                  "title": "get_characters_character_id_clones_jump_clones",
1732                  "type": "array"
1733                },
1734                "last_jump_date": {
1735                  "description": "last_jump_date string",
1736                  "format": "date-time",
1737                  "title": "get_characters_character_id_clones_last_jump_date",
1738                  "type": "string"
1739                }
1740              },
1741              "required": ["jump_clones"],
1742              "title": "get_characters_character_id_clones_ok",
1743              "type": "object"
1744            }
1745          },
1746          "403": {
1747            "description": "Forbidden",
1748            "examples": {
1749              "application/json": {
1750                "error": "Token is not valid for scope(s): esi-clones.read_clones.v1"
1751              }
1752            },
1753            "schema": {
1754              "description": "Forbidden",
1755              "properties": {
1756                "error": {
1757                  "description": "Forbidden message",
1758                  "title": "get_characters_character_id_clones_403_forbidden",
1759                  "type": "string"
1760                }
1761              },
1762              "title": "get_characters_character_id_clones_forbidden",
1763              "type": "object"
1764            }
1765          },
1766          "500": {
1767            "description": "Internal server error",
1768            "examples": {
1769              "application/json": {
1770                "error": "uncaught exception: IOError('out of memory')"
1771              }
1772            },
1773            "schema": {
1774              "description": "Internal server error",
1775              "properties": {
1776                "error": {
1777                  "description": "Internal server error message",
1778                  "title": "get_characters_character_id_clones_500_internal_server_error",
1779                  "type": "string"
1780                }
1781              },
1782              "title": "get_characters_character_id_clones_internal_server_error",
1783              "type": "object"
1784            }
1785          }
1786        },
1787        "security": [{
1788          "evesso": ["esi-clones.read_clones.v1"]
1789        }],
1790        "summary": "Get clones",
1791        "tags": ["Clones"]
1792      }
1793    },
1794    "/characters/{character_id}/contacts/": {
1795      "delete": {
1796        "description": "Bulk delete contacts\n\n---\n\nAlternate route: `/v1/characters/{character_id}/contacts/`\n\nAlternate route: `/legacy/characters/{character_id}/contacts/`\n\nAlternate route: `/dev/characters/{character_id}/contacts/`\n",
1797        "operationId": "delete_characters_character_id_contacts",
1798        "parameters": [{
1799          "description": "ID for a character",
1800          "format": "int32",
1801          "in": "path",
1802          "name": "character_id",
1803          "required": true,
1804          "type": "integer"
1805        }, {
1806          "description": "A list of contacts to edit",
1807          "in": "body",
1808          "name": "contact_ids",
1809          "required": true,
1810          "schema": {
1811            "description": "contact_ids array",
1812            "items": {
1813              "description": "ID of the contact to edit",
1814              "format": "int32",
1815              "title": "delete_characters_character_id_contacts_contact_id",
1816              "type": "integer"
1817            },
1818            "maxLength": 20,
1819            "minLength": 1,
1820            "title": "delete_characters_character_id_contacts_contact_ids",
1821            "type": "array"
1822          }
1823        }, {
1824          "default": "tranquility",
1825          "description": "The server name you would like data from",
1826          "enum": ["tranquility", "singularity"],
1827          "in": "query",
1828          "name": "datasource",
1829          "type": "string"
1830        }],
1831        "responses": {
1832          "204": {
1833            "description": "Contacts deleted"
1834          },
1835          "403": {
1836            "description": "Forbidden",
1837            "examples": {
1838              "application/json": {
1839                "error": "Token is not valid for scope(s): esi-characters.write_contacts.v1"
1840              }
1841            },
1842            "schema": {
1843              "description": "Forbidden",
1844              "properties": {
1845                "error": {
1846                  "description": "Forbidden message",
1847                  "title": "delete_characters_character_id_contacts_403_forbidden",
1848                  "type": "string"
1849                }
1850              },
1851              "title": "delete_characters_character_id_contacts_forbidden",
1852              "type": "object"
1853            }
1854          },
1855          "500": {
1856            "description": "Internal server error",
1857            "examples": {
1858              "application/json": {
1859                "error": "uncaught exception: IOError('out of memory')"
1860              }
1861            },
1862            "schema": {
1863              "description": "Internal server error",
1864              "properties": {
1865                "error": {
1866                  "description": "Internal server error message",
1867                  "title": "delete_characters_character_id_contacts_500_internal_server_error",
1868                  "type": "string"
1869                }
1870              },
1871              "title": "delete_characters_character_id_contacts_internal_server_error",
1872              "type": "object"
1873            }
1874          }
1875        },
1876        "security": [{
1877          "evesso": ["esi-characters.write_contacts.v1"]
1878        }],
1879        "summary": "Delete contacts",
1880        "tags": ["Contacts"]
1881      },
1882      "get": {
1883        "description": "Return contacts of a character\n\n---\n\nAlternate route: `/v1/characters/{character_id}/contacts/`\n\nAlternate route: `/legacy/characters/{character_id}/contacts/`\n\nAlternate route: `/dev/characters/{character_id}/contacts/`\n\n\n---\n\nThis route is cached for up to 300 seconds",
1884        "operationId": "get_characters_character_id_contacts",
1885        "parameters": [{
1886          "description": "ID for a character",
1887          "format": "int32",
1888          "in": "path",
1889          "name": "character_id",
1890          "required": true,
1891          "type": "integer"
1892        }, {
1893          "default": 1,
1894          "description": "page integer",
1895          "format": "int32",
1896          "in": "query",
1897          "minimum": 1,
1898          "name": "page",
1899          "required": false,
1900          "type": "integer"
1901        }, {
1902          "default": "tranquility",
1903          "description": "The server name you would like data from",
1904          "enum": ["tranquility", "singularity"],
1905          "in": "query",
1906          "name": "datasource",
1907          "type": "string"
1908        }],
1909        "responses": {
1910          "200": {
1911            "description": "A list of contacts",
1912            "examples": {
1913              "application/json": [{
1914                "contact_id": 123,
1915                "contact_type": "character",
1916                "is_blocked": false,
1917                "is_watched": true,
1918                "standing": 10.0
1919              }]
1920            },
1921            "headers": {
1922              "Cache-Control": {
1923                "description": "The caching mechanism used",
1924                "type": "string"
1925              },
1926              "Expires": {
1927                "description": "RFC7231 formatted datetime string",
1928                "type": "string"
1929              },
1930              "Last-Modified": {
1931                "description": "RFC7231 formatted datetime string",
1932                "type": "string"
1933              }
1934            },
1935            "schema": {
1936              "description": "200 ok array",
1937              "items": {
1938                "description": "200 ok object",
1939                "properties": {
1940                  "contact_id": {
1941                    "description": "contact_id integer",
1942                    "format": "int32",
1943                    "title": "get_characters_character_id_contacts_contact_id",
1944                    "type": "integer"
1945                  },
1946                  "contact_type": {
1947                    "description": "contact_type string",
1948                    "enum": ["character", "corporation", "alliance", "faction"],
1949                    "title": "get_characters_character_id_contacts_contact_type",
1950                    "type": "string"
1951                  },
1952                  "is_blocked": {
1953                    "description": "Whether this contact is in the blocked list. Note a missing value denotes unknown, not true or false",
1954                    "title": "get_characters_character_id_contacts_is_blocked",
1955                    "type": "boolean"
1956                  },
1957                  "is_watched": {
1958                    "description": "Whether this contact is being watched",
1959                    "title": "get_characters_character_id_contacts_is_watched",
1960                    "type": "boolean"
1961                  },
1962                  "label_id": {
1963                    "description": "Custom label of the contact",
1964                    "format": "int64",
1965                    "title": "get_characters_character_id_contacts_label_id",
1966                    "type": "integer"
1967                  },
1968                  "standing": {
1969                    "description": "Standing of the contact",
1970                    "format": "float",
1971                    "title": "get_characters_character_id_contacts_standing",
1972                    "type": "number"
1973                  }
1974                },
1975                "required": ["standing", "contact_type", "contact_id"],
1976                "title": "get_characters_character_id_contacts_200_ok",
1977                "type": "object"
1978              },
1979              "title": "get_characters_character_id_contacts_ok",
1980              "type": "array"
1981            }
1982          },
1983          "403": {
1984            "description": "Forbidden",
1985            "examples": {
1986              "application/json": {
1987                "error": "Token is not valid for scope(s): esi-characters.read_contacts.v1"
1988              }
1989            },
1990            "schema": {
1991              "description": "Forbidden",
1992              "properties": {
1993                "error": {
1994                  "description": "Forbidden message",
1995                  "title": "get_characters_character_id_contacts_403_forbidden",
1996                  "type": "string"
1997                }
1998              },
1999              "title": "get_characters_character_id_contacts_forbidden",
2000              "type": "object"
2001            }
2002          },
2003          "500": {
2004            "description": "Internal server error",
2005            "examples": {
2006              "application/json": {
2007                "error": "uncaught exception: IOError('out of memory')"
2008              }
2009            },
2010            "schema": {
2011              "description": "Internal server error",
2012              "properties": {
2013                "error": {
2014                  "description": "Internal server error message",
2015                  "title": "get_characters_character_id_contacts_500_internal_server_error",
2016                  "type": "string"
2017                }
2018              },
2019              "title": "get_characters_character_id_contacts_internal_server_error",
2020              "type": "object"
2021            }
2022          }
2023        },
2024        "security": [{
2025          "evesso": ["esi-characters.read_contacts.v1"]
2026        }],
2027        "summary": "Get contacts",
2028        "tags": ["Contacts"]
2029      },
2030      "post": {
2031        "description": "Bulk add contacts with same settings\n\n---\n\nAlternate route: `/v1/characters/{character_id}/contacts/`\n\nAlternate route: `/legacy/characters/{character_id}/contacts/`\n\nAlternate route: `/dev/characters/{character_id}/contacts/`\n",
2032        "operationId": "post_characters_character_id_contacts",
2033        "parameters": [{
2034          "description": "ID for a character",
2035          "format": "int32",
2036          "in": "path",
2037          "name": "character_id",
2038          "required": true,
2039          "type": "integer"
2040        }, {
2041          "description": "Standing for the new contact",
2042          "format": "float",
2043          "in": "query",
2044          "maximum": 10,
2045          "minimum": -10,
2046          "name": "standing",
2047          "required": true,
2048          "type": "number"
2049        }, {
2050          "default": false,
2051          "description": "Whether the new contact should be watched, note this is only effective on characters",
2052          "in": "query",
2053          "name": "watched",
2054          "required": false,
2055          "type": "boolean"
2056        }, {
2057          "default": 0,
2058          "description": "Add a custom label to the new contact",
2059          "format": "int64",
2060          "in": "query",
2061          "name": "label_id",
2062          "required": false,
2063          "type": "integer"
2064        }, {
2065          "description": "A list of contacts to add",
2066          "in": "body",
2067          "name": "contact_ids",
2068          "required": true,
2069          "schema": {
2070            "description": "contact_ids array",
2071            "items": {
2072              "description": "ID of the contact to add",
2073              "format": "int32",
2074              "title": "post_characters_character_id_contacts_contact_id",
2075              "type": "integer"
2076            },
2077            "maxLength": 20,
2078            "minLength": 1,
2079            "title": "post_characters_character_id_contacts_contact_ids",
2080            "type": "array"
2081          }
2082        }, {
2083          "default": "tranquility",
2084          "description": "The server name you would like data from",
2085          "enum": ["tranquility", "singularity"],
2086          "in": "query",
2087          "name": "datasource",
2088          "type": "string"
2089        }],
2090        "responses": {
2091          "201": {
2092            "description": "A list of contact ids that successfully created",
2093            "examples": {
2094              "application/json": [123, 456]
2095            },
2096            "schema": {
2097              "description": "201 created array",
2098              "items": {
2099                "description": "201 created integer",
2100                "format": "int32",
2101                "title": "post_characters_character_id_contacts_201_created",
2102                "type": "integer"
2103              },
2104              "title": "post_characters_character_id_contacts_created",
2105              "type": "array"
2106            }
2107          },
2108          "403": {
2109            "description": "Forbidden",
2110            "examples": {
2111              "application/json": {
2112                "error": "Token is not valid for scope(s): esi-characters.write_contacts.v1"
2113              }
2114            },
2115            "schema": {
2116              "description": "Forbidden",
2117              "properties": {
2118                "error": {
2119                  "description": "Forbidden message",
2120                  "title": "post_characters_character_id_contacts_403_forbidden",
2121                  "type": "string"
2122                }
2123              },
2124              "title": "post_characters_character_id_contacts_forbidden",
2125              "type": "object"
2126            }
2127          },
2128          "500": {
2129            "description": "Internal server error",
2130            "examples": {
2131              "application/json": {
2132                "error": "uncaught exception: IOError('out of memory')"
2133              }
2134            },
2135            "schema": {
2136              "description": "Internal server error",
2137              "properties": {
2138                "error": {
2139                  "description": "Internal server error message",
2140                  "title": "post_characters_character_id_contacts_500_internal_server_error",
2141                  "type": "string"
2142                }
2143              },
2144              "title": "post_characters_character_id_contacts_internal_server_error",
2145              "type": "object"
2146            }
2147          }
2148        },
2149        "security": [{
2150          "evesso": ["esi-characters.write_contacts.v1"]
2151        }],
2152        "summary": "Add contacts",
2153        "tags": ["Contacts"]
2154      },
2155      "put": {
2156        "description": "Bulk edit contacts with same settings\n\n---\n\nAlternate route: `/v1/characters/{character_id}/contacts/`\n\nAlternate route: `/legacy/characters/{character_id}/contacts/`\n\nAlternate route: `/dev/characters/{character_id}/contacts/`\n",
2157        "operationId": "put_characters_character_id_contacts",
2158        "parameters": [{
2159          "description": "ID for a character",
2160          "format": "int32",
2161          "in": "path",
2162          "name": "character_id",
2163          "required": true,
2164          "type": "integer"
2165        }, {
2166          "description": "Standing for the contact",
2167          "format": "float",
2168          "in": "query",
2169          "maximum": 10,
2170          "minimum": -10,
2171          "name": "standing",
2172          "required": true,
2173          "type": "number"
2174        }, {
2175          "default": false,
2176          "description": "Whether the contact should be watched, note this is only effective on characters",
2177          "in": "query",
2178          "name": "watched",
2179          "required": false,
2180          "type": "boolean"
2181        }, {
2182          "default": 0,
2183          "description": "Add a custom label to the contact, use 0 for clearing label",
2184          "format": "int64",
2185          "in": "query",
2186          "name": "label_id",
2187          "required": false,
2188          "type": "integer"
2189        }, {
2190          "description": "A list of contacts to edit",
2191          "in": "body",
2192          "name": "contact_ids",
2193          "required": true,
2194          "schema": {
2195            "description": "contact_ids array",
2196            "items": {
2197              "description": "ID of the contact to edit",
2198              "format": "int32",
2199              "title": "put_characters_character_id_contacts_contact_id",
2200              "type": "integer"
2201            },
2202            "maxLength": 20,
2203            "minLength": 1,
2204            "title": "put_characters_character_id_contacts_contact_ids",
2205            "type": "array"
2206          }
2207        }, {
2208          "default": "tranquility",
2209          "description": "The server name you would like data from",
2210          "enum": ["tranquility", "singularity"],
2211          "in": "query",
2212          "name": "datasource",
2213          "type": "string"
2214        }],
2215        "responses": {
2216          "204": {
2217            "description": "Contacts updated"
2218          },
2219          "403": {
2220            "description": "Forbidden",
2221            "examples": {
2222              "application/json": {
2223                "error": "Token is not valid for scope(s): esi-characters.write_contacts.v1"
2224              }
2225            },
2226            "schema": {
2227              "description": "Forbidden",
2228              "properties": {
2229                "error": {
2230                  "description": "Forbidden message",
2231                  "title": "put_characters_character_id_contacts_403_forbidden",
2232                  "type": "string"
2233                }
2234              },
2235              "title": "put_characters_character_id_contacts_forbidden",
2236              "type": "object"
2237            }
2238          },
2239          "500": {
2240            "description": "Internal server error",
2241            "examples": {
2242              "application/json": {
2243                "error": "uncaught exception: IOError('out of memory')"
2244              }
2245            },
2246            "schema": {
2247              "description": "Internal server error",
2248              "properties": {
2249                "error": {
2250                  "description": "Internal server error message",
2251                  "title": "put_characters_character_id_contacts_500_internal_server_error",
2252                  "type": "string"
2253                }
2254              },
2255              "title": "put_characters_character_id_contacts_internal_server_error",
2256              "type": "object"
2257            }
2258          }
2259        },
2260        "security": [{
2261          "evesso": ["esi-characters.write_contacts.v1"]
2262        }],
2263        "summary": "Edit contacts",
2264        "tags": ["Contacts"]
2265      }
2266    },
2267    "/characters/{character_id}/contacts/labels/": {
2268      "get": {
2269        "description": "Return custom labels for contacts the character defined\n\n---\n\nAlternate route: `/v1/characters/{character_id}/contacts/labels/`\n\nAlternate route: `/legacy/characters/{character_id}/contacts/labels/`\n\nAlternate route: `/dev/characters/{character_id}/contacts/labels/`\n\n\n---\n\nThis route is cached for up to 300 seconds",
2270        "operationId": "get_characters_character_id_contacts_labels",
2271        "parameters": [{
2272          "description": "ID for a character",
2273          "format": "int32",
2274          "in": "path",
2275          "name": "character_id",
2276          "required": true,
2277          "type": "integer"
2278        }, {
2279          "default": "tranquility",
2280          "description": "The server name you would like data from",
2281          "enum": ["tranquility", "singularity"],
2282          "in": "query",
2283          "name": "datasource",
2284          "type": "string"
2285        }],
2286        "responses": {
2287          "200": {
2288            "description": "A list of contact labels",
2289            "examples": {
2290              "application/json": [{
2291                "label_id": 123,
2292                "label_name": "Friends"
2293              }]
2294            },
2295            "headers": {
2296              "Cache-Control": {
2297                "description": "The caching mechanism used",
2298                "type": "string"
2299              },
2300              "Expires": {
2301                "description": "RFC7231 formatted datetime string",
2302                "type": "string"
2303              },
2304              "Last-Modified": {
2305                "description": "RFC7231 formatted datetime string",
2306                "type": "string"
2307              }
2308            },
2309            "schema": {
2310              "description": "200 ok array",
2311              "items": {
2312                "description": "200 ok object",
2313                "properties": {
2314                  "label_id": {
2315                    "description": "label_id integer",
2316                    "format": "int64",
2317                    "title": "get_characters_character_id_contacts_labels_label_id",
2318                    "type": "integer"
2319                  },
2320                  "label_name": {
2321                    "description": "label_name string",
2322                    "title": "get_characters_character_id_contacts_labels_label_name",
2323                    "type": "string"
2324                  }
2325                },
2326                "required": ["label_id", "label_name"],
2327                "title": "get_characters_character_id_contacts_labels_200_ok",
2328                "type": "object"
2329              },
2330              "title": "get_characters_character_id_contacts_labels_ok",
2331              "type": "array"
2332            }
2333          },
2334          "403": {
2335            "description": "Forbidden",
2336            "examples": {
2337              "application/json": {
2338                "error": "Token is not valid for scope(s): esi-characters.read_contacts.v1"
2339              }
2340            },
2341            "schema": {
2342              "description": "Forbidden",
2343              "properties": {
2344                "error": {
2345                  "description": "Forbidden message",
2346                  "title": "get_characters_character_id_contacts_labels_403_forbidden",
2347                  "type": "string"
2348                }
2349              },
2350              "title": "get_characters_character_id_contacts_labels_forbidden",
2351              "type": "object"
2352            }
2353          },
2354          "500": {
2355            "description": "Internal server error",
2356            "examples": {
2357              "application/json": {
2358                "error": "uncaught exception: IOError('out of memory')"
2359              }
2360            },
2361            "schema": {
2362              "description": "Internal server error",
2363              "properties": {
2364                "error": {
2365                  "description": "Internal server error message",
2366                  "title": "get_characters_character_id_contacts_labels_500_internal_server_error",
2367                  "type": "string"
2368                }
2369              },
2370              "title": "get_characters_character_id_contacts_labels_internal_server_error",
2371              "type": "object"
2372            }
2373          }
2374        },
2375        "security": [{
2376          "evesso": ["esi-characters.read_contacts.v1"]
2377        }],
2378        "summary": "Get contact labels",
2379        "tags": ["Contacts"]
2380      }
2381    },
2382    "/characters/{character_id}/corporationhistory/": {
2383      "get": {
2384        "description": "Get a list of all the corporations a character has been a member of\n\n---\n\nAlternate route: `/v1/characters/{character_id}/corporationhistory/`\n\nAlternate route: `/legacy/characters/{character_id}/corporationhistory/`\n\nAlternate route: `/dev/characters/{character_id}/corporationhistory/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
2385        "operationId": "get_characters_character_id_corporationhistory",
2386        "parameters": [{
2387          "description": "An EVE character ID",
2388          "format": "int32",
2389          "in": "path",
2390          "name": "character_id",
2391          "required": true,
2392          "type": "integer"
2393        }, {
2394          "default": "tranquility",
2395          "description": "The server name you would like data from",
2396          "enum": ["tranquility", "singularity"],
2397          "in": "query",
2398          "name": "datasource",
2399          "type": "string"
2400        }],
2401        "responses": {
2402          "200": {
2403            "description": "Corporation history for the given character",
2404            "examples": {
2405              "application/json": [{
2406                "corporation_id": 90000001,
2407                "is_deleted": false,
2408                "record_id": 500,
2409                "start_date": "2016-06-26T20:00:00Z"
2410              }, {
2411                "corporation_id": 90000002,
2412                "is_deleted": false,
2413                "record_id": 501,
2414                "start_date": "2016-07-26T20:00:00Z"
2415              }]
2416            },
2417            "headers": {
2418              "Cache-Control": {
2419                "description": "The caching mechanism used",
2420                "type": "string"
2421              },
2422              "Expires": {
2423                "description": "RFC7231 formatted datetime string",
2424                "type": "string"
2425              },
2426              "Last-Modified": {
2427                "description": "RFC7231 formatted datetime string",
2428                "type": "string"
2429              }
2430            },
2431            "schema": {
2432              "description": "200 ok array",
2433              "items": {
2434                "description": "200 ok object",
2435                "properties": {
2436                  "corporation_id": {
2437                    "description": "corporation_id integer",
2438                    "format": "int32",
2439                    "title": "get_characters_character_id_corporationhistory_corporation_id",
2440                    "type": "integer"
2441                  },
2442                  "is_deleted": {
2443                    "description": "True if the corporation has been deleted",
2444                    "title": "get_characters_character_id_corporationhistory_is_deleted",
2445                    "type": "boolean"
2446                  },
2447                  "record_id": {
2448                    "description": "An incrementing ID that can be used to canonically establish order of records in cases where dates may be ambiguous",
2449                    "format": "int32",
2450                    "title": "get_characters_character_id_corporationhistory_record_id",
2451                    "type": "integer"
2452                  },
2453                  "start_date": {
2454                    "description": "start_date string",
2455                    "format": "date-time",
2456                    "title": "get_characters_character_id_corporationhistory_start_date",
2457                    "type": "string"
2458                  }
2459                },
2460                "title": "get_characters_character_id_corporationhistory_200_ok",
2461                "type": "object"
2462              },
2463              "title": "get_characters_character_id_corporationhistory_ok",
2464              "type": "array"
2465            }
2466          },
2467          "500": {
2468            "description": "Internal server error",
2469            "examples": {
2470              "application/json": {
2471                "error": "uncaught exception: IOError('out of memory')"
2472              }
2473            },
2474            "schema": {
2475              "description": "Internal server error",
2476              "properties": {
2477                "error": {
2478                  "description": "Internal server error message",
2479                  "title": "get_characters_character_id_corporationhistory_500_internal_server_error",
2480                  "type": "string"
2481                }
2482              },
2483              "title": "get_characters_character_id_corporationhistory_internal_server_error",
2484              "type": "object"
2485            }
2486          }
2487        },
2488        "summary": "Get corporation history",
2489        "tags": ["Character"]
2490      }
2491    },
2492    "/characters/{character_id}/cspa/": {
2493      "post": {
2494        "description": "Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost\n\n---\n\nAlternate route: `/v3/characters/{character_id}/cspa/`\n\nAlternate route: `/legacy/characters/{character_id}/cspa/`\n\nAlternate route: `/dev/characters/{character_id}/cspa/`\n",
2495        "operationId": "post_characters_character_id_cspa",
2496        "parameters": [{
2497          "description": "An EVE character ID",
2498          "format": "int32",
2499          "in": "path",
2500          "name": "character_id",
2501          "required": true,
2502          "type": "integer"
2503        }, {
2504          "description": "The target characters to calculate the charge for",
2505          "in": "body",
2506          "name": "characters",
2507          "required": true,
2508          "schema": {
2509            "description": "characters schema",
2510            "properties": {
2511              "characters": {
2512                "description": "characters array",
2513                "items": {
2514                  "description": "character integer",
2515                  "format": "int32",
2516                  "title": "post_characters_character_id_cspa_character",
2517                  "type": "integer"
2518                },
2519                "minItems": 1,
2520                "title": "post_characters_character_id_cspa_characters",
2521                "type": "array",
2522                "uniqueItems": true
2523              }
2524            },
2525            "required": ["characters"],
2526            "title": "post_characters_character_id_cspa_characters"
2527          }
2528        }, {
2529          "default": "tranquility",
2530          "description": "The server name you would like data from",
2531          "enum": ["tranquility", "singularity"],
2532          "in": "query",
2533          "name": "datasource",
2534          "type": "string"
2535        }],
2536        "responses": {
2537          "201": {
2538            "description": "Aggregate cost of sending a mail from the source character to the target characters, in ISK hundredths",
2539            "examples": {
2540              "application/json": {
2541                "cost": 295000
2542              }
2543            },
2544            "schema": {
2545              "description": "201 created object",
2546              "properties": {
2547                "cost": {
2548                  "description": "cost integer",
2549                  "format": "int64",
2550                  "title": "post_characters_character_id_cspa_cost",
2551                  "type": "integer"
2552                }
2553              },
2554              "title": "post_characters_character_id_cspa_created",
2555              "type": "object"
2556            }
2557          },
2558          "403": {
2559            "description": "Forbidden",
2560            "examples": {
2561              "application/json": {
2562                "error": "Token is not valid for scope(s): esi-characters.read_contacts.v1"
2563              }
2564            },
2565            "schema": {
2566              "description": "Forbidden",
2567              "properties": {
2568                "error": {
2569                  "description": "Forbidden message",
2570                  "title": "post_characters_character_id_cspa_403_forbidden",
2571                  "type": "string"
2572                }
2573              },
2574              "title": "post_characters_character_id_cspa_forbidden",
2575              "type": "object"
2576            }
2577          },
2578          "500": {
2579            "description": "Internal server error",
2580            "examples": {
2581              "application/json": {
2582                "error": "uncaught exception: IOError('out of memory')"
2583              }
2584            },
2585            "schema": {
2586              "description": "Internal server error",
2587              "properties": {
2588                "error": {
2589                  "description": "Internal server error message",
2590                  "title": "post_characters_character_id_cspa_500_internal_server_error",
2591                  "type": "string"
2592                }
2593              },
2594              "title": "post_characters_character_id_cspa_internal_server_error",
2595              "type": "object"
2596            }
2597          }
2598        },
2599        "security": [{
2600          "evesso": ["esi-characters.read_contacts.v1"]
2601        }],
2602        "summary": "Calculate a CSPA charge cost",
2603        "tags": ["Character"]
2604      }
2605    },
2606    "/characters/{character_id}/killmails/recent/": {
2607      "get": {
2608        "description": "Return a list of character's recent kills and losses\n\n---\n\nAlternate route: `/v1/characters/{character_id}/killmails/recent/`\n\nAlternate route: `/legacy/characters/{character_id}/killmails/recent/`\n\nAlternate route: `/dev/characters/{character_id}/killmails/recent/`\n\n\n---\n\nThis route is cached for up to 120 seconds",
2609        "operationId": "get_characters_character_id_killmails_recent",
2610        "parameters": [{
2611          "description": "An EVE character ID",
2612          "format": "int32",
2613          "in": "path",
2614          "name": "character_id",
2615          "required": true,
2616          "type": "integer"
2617        }, {
2618          "default": 50,
2619          "description": "How many killmails to return at maximum",
2620          "format": "int32",
2621          "in": "query",
2622          "maximum": 5000,
2623          "name": "max_count",
2624          "required": false,
2625          "type": "integer"
2626        }, {
2627          "description": "Only return killmails with ID smaller than this.\n",
2628          "format": "int32",
2629          "in": "query",
2630          "name": "max_kill_id",
2631          "required": false,
2632          "type": "integer"
2633        }, {
2634          "default": "tranquility",
2635          "description": "The server name you would like data from",
2636          "enum": ["tranquility", "singularity"],
2637          "in": "query",
2638          "name": "datasource",
2639          "type": "string"
2640        }],
2641        "responses": {
2642          "200": {
2643            "description": "A list of killmail IDs and hashes",
2644            "examples": {
2645              "application/json": [{
2646                "killmail_hash": "8eef5e8fb6b88fe3407c489df33822b2e3b57a5e",
2647                "killmail_id": 2
2648              }, {
2649                "killmail_hash": "b41ccb498ece33d64019f64c0db392aa3aa701fb",
2650                "killmail_id": 1
2651              }]
2652            },
2653            "headers": {
2654              "Cache-Control": {
2655                "description": "The caching mechanism used",
2656                "type": "string"
2657              },
2658              "Expires": {
2659                "description": "RFC7231 formatted datetime string",
2660                "type": "string"
2661              },
2662              "Last-Modified": {
2663                "description": "RFC7231 formatted datetime string",
2664                "type": "string"
2665              }
2666            },
2667            "schema": {
2668              "description": "200 ok array",
2669              "items": {
2670                "description": "200 ok object",
2671                "properties": {
2672                  "killmail_hash": {
2673                    "description": "A hash of this killmail",
2674                    "title": "get_characters_character_id_killmails_recent_killmail_hash",
2675                    "type": "string"
2676                  },
2677                  "killmail_id": {
2678                    "description": "ID of this killmail",
2679                    "format": "int32",
2680                    "title": "get_characters_character_id_killmails_recent_killmail_id",
2681                    "type": "integer"
2682                  }
2683                },
2684                "required": ["killmail_id", "killmail_hash"],
2685                "title": "get_characters_character_id_killmails_recent_200_ok",
2686                "type": "object"
2687              },
2688              "title": "get_characters_character_id_killmails_recent_ok",
2689              "type": "array"
2690            }
2691          },
2692          "403": {
2693            "description": "Forbidden",
2694            "examples": {
2695              "application/json": {
2696                "error": "Token is not valid for scope(s): esi-killmails.read_killmails.v1"
2697              }
2698            },
2699            "schema": {
2700              "description": "Forbidden",
2701              "properties": {
2702                "error": {
2703                  "description": "Forbidden message",
2704                  "title": "get_characters_character_id_killmails_recent_403_forbidden",
2705                  "type": "string"
2706                }
2707              },
2708              "title": "get_characters_character_id_killmails_recent_forbidden",
2709              "type": "object"
2710            }
2711          },
2712          "500": {
2713            "description": "Internal server error",
2714            "examples": {
2715              "application/json": {
2716                "error": "uncaught exception: IOError('out of memory')"
2717              }
2718            },
2719            "schema": {
2720              "description": "Internal server error",
2721              "properties": {
2722                "error": {
2723                  "description": "Internal server error message",
2724                  "title": "get_characters_character_id_killmails_recent_500_internal_server_error",
2725                  "type": "string"
2726                }
2727              },
2728              "title": "get_characters_character_id_killmails_recent_internal_server_error",
2729              "type": "object"
2730            }
2731          }
2732        },
2733        "security": [{
2734          "evesso": ["esi-killmails.read_killmails.v1"]
2735        }],
2736        "summary": "List kills and losses",
2737        "tags": ["Killmails"]
2738      }
2739    },
2740    "/characters/{character_id}/location/": {
2741      "get": {
2742        "description": "Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable.\n\n---\n\nAlternate route: `/v1/characters/{character_id}/location/`\n\nAlternate route: `/legacy/characters/{character_id}/location/`\n\nAlternate route: `/dev/characters/{character_id}/location/`\n\n\n---\n\nThis route is cached for up to 5 seconds",
2743        "operationId": "get_characters_character_id_location",
2744        "parameters": [{
2745          "description": "An EVE character ID",
2746          "format": "int32",
2747          "in": "path",
2748          "name": "character_id",
2749          "required": true,
2750          "type": "integer"
2751        }, {
2752          "default": "tranquility",
2753          "description": "The server name you would like data from",
2754          "enum": ["tranquility", "singularity"],
2755          "in": "query",
2756          "name": "datasource",
2757          "type": "string"
2758        }],
2759        "responses": {
2760          "200": {
2761            "description": "Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable.",
2762            "examples": {
2763              "application/json": {
2764                "solar_system_id": 30002505,
2765                "structure_id": 1000000016989
2766              }
2767            },
2768            "headers": {
2769              "Cache-Control": {
2770                "description": "The caching mechanism used",
2771                "type": "string"
2772              },
2773              "Expires": {
2774                "description": "RFC7231 formatted datetime string",
2775                "type": "string"
2776              },
2777              "Last-Modified": {
2778                "description": "RFC7231 formatted datetime string",
2779                "type": "string"
2780              }
2781            },
2782            "schema": {
2783              "description": "200 ok object",
2784              "properties": {
2785                "solar_system_id": {
2786                  "description": "solar_system_id integer",
2787                  "format": "int32",
2788                  "title": "get_characters_character_id_location_solar_system_id",
2789                  "type": "integer"
2790                },
2791                "station_id": {
2792                  "description": "station_id integer",
2793                  "format": "int32",
2794                  "title": "get_characters_character_id_location_station_id",
2795                  "type": "integer"
2796                },
2797                "structure_id": {
2798                  "description": "structure_id integer",
2799                  "format": "int64",
2800                  "title": "get_characters_character_id_location_structure_id",
2801                  "type": "integer"
2802                }
2803              },
2804              "required": ["solar_system_id"],
2805              "title": "get_characters_character_id_location_ok",
2806              "type": "object"
2807            }
2808          },
2809          "403": {
2810            "description": "Forbidden",
2811            "examples": {
2812              "application/json": {
2813                "error": "Token is not valid for scope(s): esi-location.read_location.v1"
2814              }
2815            },
2816            "schema": {
2817              "description": "Forbidden",
2818              "properties": {
2819                "error": {
2820                  "description": "Forbidden message",
2821                  "title": "get_characters_character_id_location_403_forbidden",
2822                  "type": "string"
2823                }
2824              },
2825              "title": "get_characters_character_id_location_forbidden",
2826              "type": "object"
2827            }
2828          },
2829          "500": {
2830            "description": "Internal server error",
2831            "examples": {
2832              "application/json": {
2833                "error": "uncaught exception: IOError('out of memory')"
2834              }
2835            },
2836            "schema": {
2837              "description": "Internal server error",
2838              "properties": {
2839                "error": {
2840                  "description": "Internal server error message",
2841                  "title": "get_characters_character_id_location_500_internal_server_error",
2842                  "type": "string"
2843                }
2844              },
2845              "title": "get_characters_character_id_location_internal_server_error",
2846              "type": "object"
2847            }
2848          }
2849        },
2850        "security": [{
2851          "evesso": ["esi-location.read_location.v1"]
2852        }],
2853        "summary": "Get character location",
2854        "tags": ["Location"]
2855      }
2856    },
2857    "/characters/{character_id}/mail/": {
2858      "get": {
2859        "description": "Return the 50 most recent mail headers belonging to the character that match the query criteria. Queries can be filtered by label, and last_mail_id can be used to paginate backwards.\n\n---\n\nAlternate route: `/v1/characters/{character_id}/mail/`\n\nAlternate route: `/legacy/characters/{character_id}/mail/`\n\nAlternate route: `/dev/characters/{character_id}/mail/`\n\n\n---\n\nThis route is cached for up to 30 seconds",
2860        "operationId": "get_characters_character_id_mail",
2861        "parameters": [{
2862          "description": "An EVE character ID",
2863          "format": "int32",
2864          "in": "path",
2865          "name": "character_id",
2866          "required": true,
2867          "type": "integer"
2868        }, {
2869          "description": "Fetch only mails that match one or more of the given labels",
2870          "in": "query",
2871          "items": {
2872            "format": "int64",
2873            "minimum": 0,
2874            "type": "integer"
2875          },
2876          "minItems": 1,
2877          "name": "labels",
2878          "required": false,
2879          "type": "array",
2880          "uniqueItems": true
2881        }, {
2882          "description": "List only mail with an ID lower than the given ID, if present",
2883          "format": "int32",
2884          "in": "query",
2885          "name": "last_mail_id",
2886          "type": "integer"
2887        }, {
2888          "default": "tranquility",
2889          "description": "The server name you would like data from",
2890          "enum": ["tranquility", "singularity"],
2891          "in": "query",
2892          "name": "datasource",
2893          "type": "string"
2894        }],
2895        "responses": {
2896          "200": {
2897            "description": "The requested mail",
2898            "examples": {
2899              "application/json": [{
2900                "from": 90000001,
2901                "is_read": true,
2902                "labels": [3],
2903                "mail_id": 7,
2904                "recipients": [{
2905                  "recipient_id": 90000002,
2906                  "recipient_type": "character"
2907                }],
2908                "subject": "Title for EVE Mail",
2909                "timestamp": "2015-09-30T16:07:00Z"
2910              }]
2911            },
2912            "headers": {
2913              "Cache-Control": {
2914                "description": "The caching mechanism used",
2915                "type": "string"
2916              },
2917              "Expires": {
2918                "description": "RFC7231 formatted datetime string",
2919                "type": "string"
2920              },
2921              "Last-Modified": {
2922                "description": "RFC7231 formatted datetime string",
2923                "type": "string"
2924              }
2925            },
2926            "schema": {
2927              "description": "200 ok array",
2928              "items": {
2929                "description": "200 ok object",
2930                "properties": {
2931                  "from": {
2932                    "description": "From whom the mail was sent",
2933                    "format": "int32",
2934                    "title": "get_characters_character_id_mail_from",
2935                    "type": "integer"
2936                  },
2937                  "is_read": {
2938                    "description": "is_read boolean",
2939                    "title": "get_characters_character_id_mail_is_read",
2940                    "type": "boolean"
2941                  },
2942                  "labels": {
2943                    "description": "labels array",
2944                    "items": {
2945                      "description": "label integer",
2946                      "format": "int64",
2947                      "title": "get_characters_character_id_mail_label",
2948                      "type": "integer"
2949                    },
2950                    "maxItems": 25,
2951                    "minimum": 0,
2952                    "title": "get_characters_character_id_mail_labels",
2953                    "type": "array",
2954                    "uniqueItems": true
2955                  },
2956                  "mail_id": {
2957                    "description": "mail_id integer",
2958                    "format": "int64",
2959                    "title": "get_characters_character_id_mail_mail_id",
2960                    "type": "integer"
2961                  },
2962                  "recipients": {
2963                    "description": "Recipients of the mail",
2964                    "items": {
2965                      "description": "recipient object",
2966                      "properties": {
2967                        "recipient_id": {
2968                          "description": "recipient_id integer",
2969                          "format": "int32",
2970                          "title": "get_characters_character_id_mail_recipient_id",
2971                          "type": "integer"
2972                        },
2973                        "recipient_type": {
2974                          "description": "recipient_type string",
2975                          "enum": ["alliance", "character", "corporation", "mailing_list"],
2976                          "title": "get_characters_character_id_mail_recipient_type",
2977                          "type": "string"
2978                        }
2979                      },
2980                      "required": ["recipient_type", "recipient_id"],
2981                      "title": "get_characters_character_id_mail_recipient",
2982                      "type": "object"
2983                    },
2984                    "maxItems": 50,
2985                    "minItems": 1,
2986                    "title": "get_characters_character_id_mail_recipients",
2987                    "type": "array",
2988                    "uniqueItems": true
2989                  },
2990                  "subject": {
2991                    "description": "Mail subject",
2992                    "title": "get_characters_character_id_mail_subject",
2993                    "type": "string"
2994                  },
2995                  "timestamp": {
2996                    "description": "When the mail was sent",
2997                    "format": "date-time",
2998                    "title": "get_characters_character_id_mail_timestamp",
2999                    "type": "string"
3000                  }
3001                },
3002                "title": "get_characters_character_id_mail_200_ok",
3003                "type": "object"
3004              },
3005              "title": "get_characters_character_id_mail_ok",
3006              "type": "array"
3007            }
3008          },
3009          "403": {
3010            "description": "Forbidden",
3011            "examples": {
3012              "application/json": {
3013                "error": "Token is not valid for scope(s): esi-mail.read_mail.v1"
3014              }
3015            },
3016            "schema": {
3017              "description": "Forbidden",
3018              "properties": {
3019                "error": {
3020                  "description": "Forbidden message",
3021                  "title": "get_characters_character_id_mail_403_forbidden",
3022                  "type": "string"
3023                }
3024              },
3025              "title": "get_characters_character_id_mail_forbidden",
3026              "type": "object"
3027            }
3028          },
3029          "500": {
3030            "description": "Internal server error",
3031            "examples": {
3032              "application/json": {
3033                "error": "uncaught exception: IOError('out of memory')"
3034              }
3035            },
3036            "schema": {
3037              "description": "Internal server error",
3038              "properties": {
3039                "error": {
3040                  "description": "Internal server error message",
3041                  "title": "get_characters_character_id_mail_500_internal_server_error",
3042                  "type": "string"
3043                }
3044              },
3045              "title": "get_characters_character_id_mail_internal_server_error",
3046              "type": "object"
3047            }
3048          }
3049        },
3050        "security": [{
3051          "evesso": ["esi-mail.read_mail.v1"]
3052        }],
3053        "summary": "Return mail headers",
3054        "tags": ["Mail"]
3055      },
3056      "post": {
3057        "description": "Create and send a new mail\n\n---\n\nAlternate route: `/v1/characters/{character_id}/mail/`\n\nAlternate route: `/legacy/characters/{character_id}/mail/`\n\nAlternate route: `/dev/characters/{character_id}/mail/`\n",
3058        "operationId": "post_characters_character_id_mail",
3059        "parameters": [{
3060          "description": "The sender's character ID",
3061          "format": "int32",
3062          "in": "path",
3063          "name": "character_id",
3064          "required": true,
3065          "type": "integer"
3066        }, {
3067          "description": "The mail to send",
3068          "in": "body",
3069          "name": "mail",
3070          "required": true,
3071          "schema": {
3072            "description": "mail schema",
3073            "properties": {
3074              "approved_cost": {
3075                "default": 0,
3076                "description": "approved_cost integer",
3077                "format": "int64",
3078                "title": "post_characters_character_id_mail_approved_cost",
3079                "type": "integer"
3080              },
3081              "body": {
3082                "description": "body string",
3083                "maxLength": 10000,
3084                "title": "post_characters_character_id_mail_body",
3085                "type": "string"
3086              },
3087              "recipients": {
3088                "description": "recipients array",
3089                "items": {
3090                  "description": "recipient object",
3091                  "properties": {
3092                    "recipient_id": {
3093                      "description": "recipient_id integer",
3094                      "format": "int32",
3095                      "title": "post_characters_character_id_mail_recipient_id",
3096                      "type": "integer"
3097                    },
3098                    "recipient_type": {
3099                      "description": "recipient_type string",
3100                      "enum": ["alliance", "character", "corporation", "mailing_list"],
3101                      "title": "post_characters_character_id_mail_recipient_type",
3102                      "type": "string"
3103                    }
3104                  },
3105                  "required": ["recipient_type", "recipient_id"],
3106                  "title": "post_characters_character_id_mail_recipient",
3107                  "type": "object"
3108                },
3109                "maxItems": 50,
3110                "minItems": 1,
3111                "title": "post_characters_character_id_mail_recipients",
3112                "type": "array"
3113              },
3114              "subject": {
3115                "description": "subject string",
3116                "maxLength": 1000,
3117                "title": "post_characters_character_id_mail_subject",
3118                "type": "string"
3119              }
3120            },
3121            "required": ["recipients", "subject", "body"],
3122            "title": "post_characters_character_id_mail_mail"
3123          }
3124        }, {
3125          "default": "tranquility",
3126          "description": "The server name you would like data from",
3127          "enum": ["tranquility", "singularity"],
3128          "in": "query",
3129          "name": "datasource",
3130          "type": "string"
3131        }],
3132        "responses": {
3133          "201": {
3134            "description": "Mail created",
3135            "examples": {
3136              "application/json": 13
3137            },
3138            "schema": {
3139              "description": "Mail ID",
3140              "format": "int32",
3141              "title": "post_characters_character_id_mail_created",
3142              "type": "integer"
3143            }
3144          },
3145          "400": {
3146            "description": "Only one corporation, alliance, or mailing list can be the\nrecipient of a mail\n",
3147            "examples": {
3148              "application/json": {
3149                "error": "Bad request message"
3150              }
3151            },
3152            "schema": {
3153              "description": "Bad request",
3154              "properties": {
3155                "error": {
3156                  "description": "Bad request message",
3157                  "title": "post_characters_character_id_mail_400_bad_request",
3158                  "type": "string"
3159                }
3160              },
3161              "title": "post_characters_character_id_mail_bad_request",
3162              "type": "object"
3163            }
3164          },
3165          "403": {
3166            "description": "Forbidden",
3167            "examples": {
3168              "application/json": {
3169                "error": "Token is not valid for scope(s): esi-mail.send_mail.v1"
3170              }
3171            },
3172            "schema": {
3173              "description": "Forbidden",
3174              "properties": {
3175                "error": {
3176                  "description": "Forbidden message",
3177                  "title": "post_characters_character_id_mail_403_forbidden",
3178                  "type": "string"
3179                }
3180              },
3181              "title": "post_characters_character_id_mail_forbidden",
3182              "type": "object"
3183            }
3184          },
3185          "500": {
3186            "description": "Internal server error",
3187            "examples": {
3188              "application/json": {
3189                "error": "uncaught exception: IOError('out of memory')"
3190              }
3191            },
3192            "schema": {
3193              "description": "Internal server error",
3194              "properties": {
3195                "error": {
3196                  "description": "Internal server error message",
3197                  "title": "post_characters_character_id_mail_500_internal_server_error",
3198                  "type": "string"
3199                }
3200              },
3201              "title": "post_characters_character_id_mail_internal_server_error",
3202              "type": "object"
3203            }
3204          }
3205        },
3206        "security": [{
3207          "evesso": ["esi-mail.send_mail.v1"]
3208        }],
3209        "summary": "Send a new mail",
3210        "tags": ["Mail"]
3211      }
3212    },
3213    "/characters/{character_id}/mail/labels/": {
3214      "get": {
3215        "description": "Return a list of the users mail labels, unread counts for each label and a total unread count.\n\n---\n\nAlternate route: `/v3/characters/{character_id}/mail/labels/`\n\nAlternate route: `/dev/characters/{character_id}/mail/labels/`\n\n\n---\n\nThis route is cached for up to 30 seconds",
3216        "operationId": "get_characters_character_id_mail_labels",
3217        "parameters": [{
3218          "description": "An EVE character ID",
3219          "format": "int32",
3220          "in": "path",
3221          "name": "character_id",
3222          "required": true,
3223          "type": "integer"
3224        }, {
3225          "default": "tranquility",
3226          "description": "The server name you would like data from",
3227          "enum": ["tranquility", "singularity"],
3228          "in": "query",
3229          "name": "datasource",
3230          "type": "string"
3231        }],
3232        "responses": {
3233          "200": {
3234            "description": "A list of mail labels and unread counts",
3235            "examples": {
3236              "application/json": {
3237                "labels": [{
3238                  "color_hex": "#660066",
3239                  "label_id": 16,
3240                  "name": "PINK",
3241                  "unread_count": 4
3242                }, {
3243                  "color_hex": "#ffffff",
3244                  "label_id": 17,
3245                  "name": "WHITE",
3246                  "unread_count": 1
3247                }],
3248                "total_unread_count": 5
3249              }
3250            },
3251            "headers": {
3252              "Cache-Control": {
3253                "description": "The caching mechanism used",
3254                "type": "string"
3255              },
3256              "Expires": {
3257                "description": "RFC7231 formatted datetime string",
3258                "type": "string"
3259              },
3260              "Last-Modified": {
3261                "description": "RFC7231 formatted datetime string",
3262                "type": "string"
3263              }
3264            },
3265            "schema": {
3266              "description": "200 ok object",
3267              "properties": {
3268                "labels": {
3269                  "description": "labels array",
3270                  "items": {
3271                    "description": "label object",
3272                    "properties": {
3273                      "color": {
3274                        "default": "#ffffff",
3275                        "description": "color string",
3276                        "enum": ["#ffffff", "#ffff01", "#ff6600", "#fe0000", "#9a0000", "#660066", "#0000fe", "#0099ff", "#01ffff", "#00ff33", "#349800", "#006634", "#666666", "#999999", "#e6e6e6", "#ffffcd", "#99ffff", "#ccff9a"],
3277                        "title": "get_characters_character_id_mail_labels_color",
3278                        "type": "string"
3279                      },
3280                      "label_id": {
3281                        "description": "label_id integer",
3282                        "format": "int32",
3283                        "minimum": 0,
3284                        "title": "get_characters_character_id_mail_labels_label_id",
3285                        "type": "integer"
3286                      },
3287                      "name": {
3288                        "description": "name string",
3289                        "maxLength": 40,
3290                        "title": "get_characters_character_id_mail_labels_name",
3291                        "type": "string"
3292                      },
3293                      "unread_count": {
3294                        "description": "unread_count integer",
3295                        "format": "int32",
3296                        "minimum": 0,
3297                        "title": "get_characters_character_id_mail_labels_unread_count",
3298                        "type": "integer"
3299                      }
3300                    },
3301                    "title": "get_characters_character_id_mail_labels_label",
3302                    "type": "object"
3303                  },
3304                  "title": "get_characters_character_id_mail_labels_labels",
3305                  "type": "array"
3306                },
3307                "total_unread_count": {
3308                  "description": "total_unread_count integer",
3309                  "format": "int32",
3310                  "minimum": 0,
3311                  "title": "get_characters_character_id_mail_labels_total_unread_count",
3312                  "type": "integer"
3313                }
3314              },
3315              "title": "get_characters_character_id_mail_labels_ok",
3316              "type": "object"
3317            }
3318          },
3319          "403": {
3320            "description": "Forbidden",
3321            "examples": {
3322              "application/json": {
3323                "error": "Token is not valid for scope(s): esi-mail.read_mail.v1"
3324              }
3325            },
3326            "schema": {
3327              "description": "Forbidden",
3328              "properties": {
3329                "error": {
3330                  "description": "Forbidden message",
3331                  "title": "get_characters_character_id_mail_labels_403_forbidden",
3332                  "type": "string"
3333                }
3334              },
3335              "title": "get_characters_character_id_mail_labels_forbidden",
3336              "type": "object"
3337            }
3338          },
3339          "500": {
3340            "description": "Internal server error",
3341            "examples": {
3342              "application/json": {
3343                "error": "uncaught exception: IOError('out of memory')"
3344              }
3345            },
3346            "schema": {
3347              "description": "Internal server error",
3348              "properties": {
3349                "error": {
3350                  "description": "Internal server error message",
3351                  "title": "get_characters_character_id_mail_labels_500_internal_server_error",
3352                  "type": "string"
3353                }
3354              },
3355              "title": "get_characters_character_id_mail_labels_internal_server_error",
3356              "type": "object"
3357            }
3358          }
3359        },
3360        "security": [{
3361          "evesso": ["esi-mail.read_mail.v1"]
3362        }],
3363        "summary": "Get mail labels and unread counts",
3364        "tags": ["Mail"]
3365      },
3366      "post": {
3367        "description": "Create a mail label\n\n---\n\nAlternate route: `/v2/characters/{character_id}/mail/labels/`\n\nAlternate route: `/legacy/characters/{character_id}/mail/labels/`\n\nAlternate route: `/dev/characters/{character_id}/mail/labels/`\n",
3368        "operationId": "post_characters_character_id_mail_labels",
3369        "parameters": [{
3370          "description": "An EVE character ID",
3371          "format": "int32",
3372          "in": "path",
3373          "name": "character_id",
3374          "required": true,
3375          "type": "integer"
3376        }, {
3377          "description": "Label to create",
3378          "in": "body",
3379          "name": "label",
3380          "schema": {
3381            "description": "label object",
3382            "properties": {
3383              "color": {
3384                "default": "#ffffff",
3385                "description": "Hexadecimal string representing label color,\nin RGB format\n",
3386                "enum": ["#ffffff", "#ffff01", "#ff6600", "#fe0000", "#9a0000", "#660066", "#0000fe", "#0099ff", "#01ffff", "#00ff33", "#349800", "#006634", "#666666", "#999999", "#e6e6e6", "#ffffcd", "#99ffff", "#ccff9a"],
3387                "title": "post_characters_character_id_mail_labels_color",
3388                "type": "string"
3389              },
3390              "name": {
3391                "description": "name string",
3392                "maxLength": 40,
3393                "minLength": 1,
3394                "title": "post_characters_character_id_mail_labels_name",
3395                "type": "string"
3396              }
3397            },
3398            "required": ["name"],
3399            "title": "post_characters_character_id_mail_labels_label",
3400            "type": "object"
3401          }
3402        }, {
3403          "default": "tranquility",
3404          "description": "The server name you would like data from",
3405          "enum": ["tranquility", "singularity"],
3406          "in": "query",
3407          "name": "datasource",
3408          "type": "string"
3409        }],
3410        "responses": {
3411          "201": {
3412            "description": "Label created",
3413            "examples": {
3414              "application/json": 128
3415            },
3416            "schema": {
3417              "description": "Label ID",
3418              "format": "int64",
3419              "title": "post_characters_character_id_mail_labels_created",
3420              "type": "integer"
3421            }
3422          },
3423          "403": {
3424            "description": "Forbidden",
3425            "examples": {
3426              "application/json": {
3427                "error": "Token is not valid for scope(s): esi-mail.organize_mail.v1"
3428              }
3429            },
3430            "schema": {
3431              "description": "Forbidden",
3432              "properties": {
3433                "error": {
3434                  "description": "Forbidden message",
3435                  "title": "post_characters_character_id_mail_labels_403_forbidden",
3436                  "type": "string"
3437                }
3438              },
3439              "title": "post_characters_character_id_mail_labels_forbidden",
3440              "type": "object"
3441            }
3442          },
3443          "500": {
3444            "description": "Internal server error",
3445            "examples": {
3446              "application/json": {
3447                "error": "uncaught exception: IOError('out of memory')"
3448              }
3449            },
3450            "schema": {
3451              "description": "Internal server error",
3452              "properties": {
3453                "error": {
3454                  "description": "Internal server error message",
3455                  "title": "post_characters_character_id_mail_labels_500_internal_server_error",
3456                  "type": "string"
3457                }
3458              },
3459              "title": "post_characters_character_id_mail_labels_internal_server_error",
3460              "type": "object"
3461            }
3462          }
3463        },
3464        "security": [{
3465          "evesso": ["esi-mail.organize_mail.v1"]
3466        }],
3467        "summary": "Create a mail label",
3468        "tags": ["Mail"]
3469      }
3470    },
3471    "/characters/{character_id}/mail/lists/": {
3472      "get": {
3473        "description": "Return all mailing lists that the character is subscribed to\n\n\n---\n\nAlternate route: `/v1/characters/{character_id}/mail/lists/`\n\nAlternate route: `/legacy/characters/{character_id}/mail/lists/`\n\nAlternate route: `/dev/characters/{character_id}/mail/lists/`\n\n\n---\n\nThis route is cached for up to 120 seconds",
3474        "operationId": "get_characters_character_id_mail_lists",
3475        "parameters": [{
3476          "description": "An EVE character ID",
3477          "format": "int32",
3478          "in": "path",
3479          "name": "character_id",
3480          "required": true,
3481          "type": "integer"
3482        }, {
3483          "default": "tranquility",
3484          "description": "The server name you would like data from",
3485          "enum": ["tranquility", "singularity"],
3486          "in": "query",
3487          "name": "datasource",
3488          "type": "string"
3489        }],
3490        "responses": {
3491          "200": {
3492            "description": "Mailing lists",
3493            "examples": {
3494              "application/json": [{
3495                "mailing_list_id": 1,
3496                "name": "test_mailing_list"
3497              }]
3498            },
3499            "headers": {
3500              "Cache-Control": {
3501                "description": "The caching mechanism used",
3502                "type": "string"
3503              },
3504              "Expires": {
3505                "description": "RFC7231 formatted datetime string",
3506                "type": "string"
3507              },
3508              "Last-Modified": {
3509                "description": "RFC7231 formatted datetime string",
3510                "type": "string"
3511              }
3512            },
3513            "schema": {
3514              "description": "200 ok array",
3515              "items": {
3516                "description": "200 ok object",
3517                "properties": {
3518                  "mailing_list_id": {
3519                    "description": "Mailing list ID",
3520                    "format": "int32",
3521                    "title": "get_characters_character_id_mail_lists_mailing_list_id",
3522                    "type": "integer"
3523                  },
3524                  "name": {
3525                    "description": "name string",
3526                    "title": "get_characters_character_id_mail_lists_name",
3527                    "type": "string"
3528                  }
3529                },
3530                "required": ["mailing_list_id", "name"],
3531                "title": "get_characters_character_id_mail_lists_200_ok",
3532                "type": "object"
3533              },
3534              "title": "get_characters_character_id_mail_lists_ok",
3535              "type": "array"
3536            }
3537          },
3538          "403": {
3539            "description": "Forbidden",
3540            "examples": {
3541              "application/json": {
3542                "error": "Token is not valid for scope(s): esi-mail.read_mail.v1"
3543              }
3544            },
3545            "schema": {
3546              "description": "Forbidden",
3547              "properties": {
3548                "error": {
3549                  "description": "Forbidden message",
3550                  "title": "get_characters_character_id_mail_lists_403_forbidden",
3551                  "type": "string"
3552                }
3553              },
3554              "title": "get_characters_character_id_mail_lists_forbidden",
3555              "type": "object"
3556            }
3557          },
3558          "500": {
3559            "description": "Internal server error",
3560            "examples": {
3561              "application/json": {
3562                "error": "uncaught exception: IOError('out of memory')"
3563              }
3564            },
3565            "schema": {
3566              "description": "Internal server error",
3567              "properties": {
3568                "error": {
3569                  "description": "Internal server error message",
3570                  "title": "get_characters_character_id_mail_lists_500_internal_server_error",
3571                  "type": "string"
3572                }
3573              },
3574              "title": "get_characters_character_id_mail_lists_internal_server_error",
3575              "type": "object"
3576            }
3577          }
3578        },
3579        "security": [{
3580          "evesso": ["esi-mail.read_mail.v1"]
3581        }],
3582        "summary": "Return mailing list subscriptions",
3583        "tags": ["Mail"]
3584      }
3585    },
3586    "/characters/{character_id}/mail/{mail_id}/": {
3587      "delete": {
3588        "description": "Delete a mail\n\n---\n\nAlternate route: `/v1/characters/{character_id}/mail/{mail_id}/`\n\nAlternate route: `/legacy/characters/{character_id}/mail/{mail_id}/`\n\nAlternate route: `/dev/characters/{character_id}/mail/{mail_id}/`\n",
3589        "operationId": "delete_characters_character_id_mail_mail_id",
3590        "parameters": [{
3591          "description": "An EVE character ID",
3592          "format": "int32",
3593          "in": "path",
3594          "name": "character_id",
3595          "required": true,
3596          "type": "integer"
3597        }, {
3598          "description": "An EVE mail ID",
3599          "format": "int32",
3600          "in": "path",
3601          "name": "mail_id",
3602          "required": true,
3603          "type": "integer"
3604        }, {
3605          "default": "tranquility",
3606          "description": "The server name you would like data from",
3607          "enum": ["tranquility", "singularity"],
3608          "in": "query",
3609          "name": "datasource",
3610          "type": "string"
3611        }],
3612        "responses": {
3613          "204": {
3614            "description": "Mail deleted"
3615          },
3616          "403": {
3617            "description": "Forbidden",
3618            "examples": {
3619              "application/json": {
3620                "error": "Token is not valid for scope(s): esi-mail.organize_mail.v1"
3621              }
3622            },
3623            "schema": {
3624              "description": "Forbidden",
3625              "properties": {
3626                "error": {
3627                  "description": "Forbidden message",
3628                  "title": "delete_characters_character_id_mail_mail_id_403_forbidden",
3629                  "type": "string"
3630                }
3631              },
3632              "title": "delete_characters_character_id_mail_mail_id_forbidden",
3633              "type": "object"
3634            }
3635          },
3636          "500": {
3637            "description": "Internal server error",
3638            "examples": {
3639              "application/json": {
3640                "error": "uncaught exception: IOError('out of memory')"
3641              }
3642            },
3643            "schema": {
3644              "description": "Internal server error",
3645              "properties": {
3646                "error": {
3647                  "description": "Internal server error message",
3648                  "title": "delete_characters_character_id_mail_mail_id_500_internal_server_error",
3649                  "type": "string"
3650                }
3651              },
3652              "title": "delete_characters_character_id_mail_mail_id_internal_server_error",
3653              "type": "object"
3654            }
3655          }
3656        },
3657        "security": [{
3658          "evesso": ["esi-mail.organize_mail.v1"]
3659        }],
3660        "summary": "Delete a mail",
3661        "tags": ["Mail"]
3662      },
3663      "get": {
3664        "description": "Return the contents of an EVE mail\n\n---\n\nAlternate route: `/v1/characters/{character_id}/mail/{mail_id}/`\n\nAlternate route: `/legacy/characters/{character_id}/mail/{mail_id}/`\n\nAlternate route: `/dev/characters/{character_id}/mail/{mail_id}/`\n\n\n---\n\nThis route is cached for up to 30 seconds",
3665        "operationId": "get_characters_character_id_mail_mail_id",
3666        "parameters": [{
3667          "description": "An EVE character ID",
3668          "format": "int32",
3669          "in": "path",
3670          "name": "character_id",
3671          "required": true,
3672          "type": "integer"
3673        }, {
3674          "description": "An EVE mail ID",
3675          "format": "int32",
3676          "in": "path",
3677          "name": "mail_id",
3678          "required": true,
3679          "type": "integer"
3680        }, {
3681          "default": "tranquility",
3682          "description": "The server name you would like data from",
3683          "enum": ["tranquility", "singularity"],
3684          "in": "query",
3685          "name": "datasource",
3686          "type": "string"
3687        }],
3688        "responses": {
3689          "200": {
3690            "description": "Contents of a mail",
3691            "examples": {
3692              "application/json": {
3693                "body": "blah blah blah",
3694                "from": 90000001,
3695                "labels": [2, 32],
3696                "read": false,
3697                "subject": "test",
3698                "timestamp": "2015-09-30T16:07:00Z"
3699              }
3700            },
3701            "headers": {
3702              "Cache-Control": {
3703                "description": "The caching mechanism used",
3704                "type": "string"
3705              },
3706              "Expires": {
3707                "description": "RFC7231 formatted datetime string",
3708                "type": "string"
3709              },
3710              "Last-Modified": {
3711                "description": "RFC7231 formatted datetime string",
3712                "type": "string"
3713              }
3714            },
3715            "schema": {
3716              "description": "200 ok object",
3717              "properties": {
3718                "body": {
3719                  "description": "Mail's body",
3720                  "title": "get_characters_character_id_mail_mail_id_body",
3721                  "type": "string"
3722                },
3723                "from": {
3724                  "description": "From whom the mail was sent",
3725                  "format": "int32",
3726                  "title": "get_characters_character_id_mail_mail_id_from",
3727                  "type": "integer"
3728                },
3729                "labels": {
3730                  "description": "Labels attached to the mail",
3731                  "items": {
3732                    "description": "label integer",
3733                    "format": "int64",
3734                    "minimum": 0,
3735                    "title": "get_characters_character_id_mail_mail_id_label",
3736                    "type": "integer",
3737                    "uniqueItems": true
3738                  },
3739                  "title": "get_characters_character_id_mail_mail_id_labels",
3740                  "type": "array"
3741                },
3742                "read": {
3743                  "description": "Whether the mail is flagged as read",
3744                  "title": "get_characters_character_id_mail_mail_id_read",
3745                  "type": "boolean"
3746                },
3747                "recipients": {
3748                  "description": "Recipients of the mail",
3749                  "items": {
3750                    "description": "recipient object",
3751                    "properties": {
3752                      "recipient_id": {
3753                        "description": "recipient_id integer",
3754                        "format": "int32",
3755                        "title": "get_characters_character_id_mail_mail_id_recipient_id",
3756                        "type": "integer"
3757                      },
3758                      "recipient_type": {
3759                        "description": "recipient_type string",
3760                        "enum": ["alliance", "character", "corporation", "mailing_list"],
3761                        "title": "get_characters_character_id_mail_mail_id_recipient_type",
3762                        "type": "string"
3763                      }
3764                    },
3765                    "required": ["recipient_type", "recipient_id"],
3766                    "title": "get_characters_character_id_mail_mail_id_recipient",
3767                    "type": "object"
3768                  },
3769                  "maxItems": 50,
3770                  "minItems": 1,
3771                  "title": "get_characters_character_id_mail_mail_id_recipients",
3772                  "type": "array",
3773                  "uniqueItems": true
3774                },
3775                "subject": {
3776                  "description": "Mail subject",
3777                  "title": "get_characters_character_id_mail_mail_id_subject",
3778                  "type": "string"
3779                },
3780                "timestamp": {
3781                  "description": "When the mail was sent",
3782                  "format": "date-time",
3783                  "title": "get_characters_character_id_mail_mail_id_timestamp",
3784                  "type": "string"
3785                }
3786              },
3787              "title": "get_characters_character_id_mail_mail_id_ok",
3788              "type": "object"
3789            }
3790          },
3791          "403": {
3792            "description": "Forbidden",
3793            "examples": {
3794              "application/json": {
3795                "error": "Token is not valid for scope(s): esi-mail.read_mail.v1"
3796              }
3797            },
3798            "schema": {
3799              "description": "Forbidden",
3800              "properties": {
3801                "error": {
3802                  "description": "Forbidden message",
3803                  "title": "get_characters_character_id_mail_mail_id_403_forbidden",
3804                  "type": "string"
3805                }
3806              },
3807              "title": "get_characters_character_id_mail_mail_id_forbidden",
3808              "type": "object"
3809            }
3810          },
3811          "404": {
3812            "description": "Mail not found",
3813            "examples": {
3814              "application/json": {
3815                "error": "Not found message"
3816              }
3817            },
3818            "schema": {
3819              "description": "Not found",
3820              "properties": {
3821                "error": {
3822                  "description": "Not found message",
3823                  "title": "get_characters_character_id_mail_mail_id_404_not_found",
3824                  "type": "string"
3825                }
3826              },
3827              "title": "get_characters_character_id_mail_mail_id_not_found",
3828              "type": "object"
3829            }
3830          },
3831          "500": {
3832            "description": "Internal server error",
3833            "examples": {
3834              "application/json": {
3835                "error": "uncaught exception: IOError('out of memory')"
3836              }
3837            },
3838            "schema": {
3839              "description": "Internal server error",
3840              "properties": {
3841                "error": {
3842                  "description": "Internal server error message",
3843                  "title": "get_characters_character_id_mail_mail_id_500_internal_server_error",
3844                  "type": "string"
3845                }
3846              },
3847              "title": "get_characters_character_id_mail_mail_id_internal_server_error",
3848              "type": "object"
3849            }
3850          }
3851        },
3852        "security": [{
3853          "evesso": ["esi-mail.read_mail.v1"]
3854        }],
3855        "summary": "Return a mail",
3856        "tags": ["Mail"]
3857      },
3858      "put": {
3859        "description": "Update metadata about a mail\n\n---\n\nAlternate route: `/v1/characters/{character_id}/mail/{mail_id}/`\n\nAlternate route: `/legacy/characters/{character_id}/mail/{mail_id}/`\n\nAlternate route: `/dev/characters/{character_id}/mail/{mail_id}/`\n",
3860        "operationId": "put_characters_character_id_mail_mail_id",
3861        "parameters": [{
3862          "description": "An EVE character ID",
3863          "format": "int32",
3864          "in": "path",
3865          "name": "character_id",
3866          "required": true,
3867          "type": "integer"
3868        }, {
3869          "description": "An EVE mail ID",
3870          "format": "int32",
3871          "in": "path",
3872          "name": "mail_id",
3873          "required": true,
3874          "type": "integer"
3875        }, {
3876          "description": "Data used to update the mail",
3877          "in": "body",
3878          "name": "contents",
3879          "required": true,
3880          "schema": {
3881            "description": "contents object",
3882            "properties": {
3883              "labels": {
3884                "description": "Labels to assign to the mail. Pre-existing labels are unassigned.",
3885                "items": {
3886                  "description": "label integer",
3887                  "format": "int64",
3888                  "minimum": 0,
3889                  "title": "put_characters_character_id_mail_mail_id_label",
3890                  "type": "integer",
3891                  "uniqueItems": true
3892                },
3893                "title": "put_characters_character_id_mail_mail_id_labels",
3894                "type": "array"
3895              },
3896              "read": {
3897                "description": "Whether the mail is flagged as read",
3898                "title": "put_characters_character_id_mail_mail_id_read",
3899                "type": "boolean"
3900              }
3901            },
3902            "title": "put_characters_character_id_mail_mail_id_contents",
3903            "type": "object"
3904          }
3905        }, {
3906          "default": "tranquility",
3907          "description": "The server name you would like data from",
3908          "enum": ["tranquility", "singularity"],
3909          "in": "query",
3910          "name": "datasource",
3911          "type": "string"
3912        }],
3913        "responses": {
3914          "204": {
3915            "description": "Mail updated"
3916          },
3917          "400": {
3918            "description": "Invalid label ID; or No parameters in body -- nothing to do",
3919            "examples": {
3920              "application/json": {
3921                "error": "Bad request message"
3922              }
3923            },
3924            "schema": {
3925              "description": "Bad request",
3926              "properties": {
3927                "error": {
3928                  "description": "Bad request message",
3929                  "title": "put_characters_character_id_mail_mail_id_400_bad_request",
3930                  "type": "string"
3931                }
3932              },
3933              "title": "put_characters_character_id_mail_mail_id_bad_request",
3934              "type": "object"
3935            }
3936          },
3937          "403": {
3938            "description": "Forbidden",
3939            "examples": {
3940              "application/json": {
3941                "error": "Token is not valid for scope(s): esi-mail.organize_mail.v1"
3942              }
3943            },
3944            "schema": {
3945              "description": "Forbidden",
3946              "properties": {
3947                "error": {
3948                  "description": "Forbidden message",
3949                  "title": "put_characters_character_id_mail_mail_id_403_forbidden",
3950                  "type": "string"
3951                }
3952              },
3953              "title": "put_characters_character_id_mail_mail_id_forbidden",
3954              "type": "object"
3955            }
3956          },
3957          "500": {
3958            "description": "Internal server error",
3959            "examples": {
3960              "application/json": {
3961                "error": "uncaught exception: IOError('out of memory')"
3962              }
3963            },
3964            "schema": {
3965              "description": "Internal server error",
3966              "properties": {
3967                "error": {
3968                  "description": "Internal server error message",
3969                  "title": "put_characters_character_id_mail_mail_id_500_internal_server_error",
3970                  "type": "string"
3971                }
3972              },
3973              "title": "put_characters_character_id_mail_mail_id_internal_server_error",
3974              "type": "object"
3975            }
3976          }
3977        },
3978        "security": [{
3979          "evesso": ["esi-mail.organize_mail.v1"]
3980        }],
3981        "summary": "Update metadata about a mail",
3982        "tags": ["Mail"]
3983      }
3984    },
3985    "/characters/{character_id}/planets/": {
3986      "get": {
3987        "description": "Returns a list of all planetary colonies owned by a character.\n\n---\n\nAlternate route: `/v1/characters/{character_id}/planets/`\n\nAlternate route: `/legacy/characters/{character_id}/planets/`\n\nAlternate route: `/dev/characters/{character_id}/planets/`\n\n\n---\n\nThis route is cached for up to 600 seconds",
3988        "operationId": "get_characters_character_id_planets",
3989        "parameters": [{
3990          "description": "Character id of the target character",
3991          "format": "int32",
3992          "in": "path",
3993          "name": "character_id",
3994          "required": true,
3995          "type": "integer"
3996        }, {
3997          "default": "tranquility",
3998          "description": "The server name you would like data from",
3999          "enum": ["tranquility", "singularity"],
4000          "in": "query",
4001          "name": "datasource",
4002          "type": "string"
4003        }],
4004        "responses": {
4005          "200": {
4006            "description": "List of colonies",
4007            "examples": {
4008              "application/json": [{
4009                "last_update": "2016-11-28T16:42:51Z",
4010                "num_pins": 1,
4011                "owner_id": 90000001,
4012                "planet_id": 40023691,
4013                "planet_type": "plasma",
4014                "solar_system_id": 30000379,
4015                "upgrade_level": 0
4016              }, {
4017                "last_update": "2016-11-28T16:41:54Z",
4018                "num_pins": 1,
4019                "owner_id": 90000001,
4020                "planet_id": 40023697,
4021                "planet_type": "barren",
4022                "solar_system_id": 30000379,
4023                "upgrade_level": 0
4024              }]
4025            },
4026            "headers": {
4027              "Cache-Control": {
4028                "description": "The caching mechanism used",
4029                "type": "string"
4030              },
4031              "Expires": {
4032                "description": "RFC7231 formatted datetime string",
4033                "type": "string"
4034              },
4035              "Last-Modified": {
4036                "description": "RFC7231 formatted datetime string",
4037                "type": "string"
4038              }
4039            },
4040            "schema": {
4041              "description": "200 ok array",
4042              "items": {
4043                "description": "200 ok object",
4044                "properties": {
4045                  "last_update": {
4046                    "description": "last_update string",
4047                    "format": "date-time",
4048                    "title": "get_characters_character_id_planets_last_update",
4049                    "type": "string"
4050                  },
4051                  "num_pins": {
4052                    "description": "num_pins integer",
4053                    "format": "int32",
4054                    "minimum": 1,
4055                    "title": "get_characters_character_id_planets_num_pins",
4056                    "type": "integer"
4057                  },
4058                  "owner_id": {
4059                    "description": "owner_id integer",
4060                    "format": "int32",
4061                    "title": "get_characters_character_id_planets_owner_id",
4062                    "type": "integer"
4063                  },
4064                  "planet_id": {
4065                    "description": "planet_id integer",
4066                    "format": "int32",
4067                    "title": "get_characters_character_id_planets_planet_id",
4068                    "type": "integer"
4069                  },
4070                  "planet_type": {
4071                    "description": "planet_type string",
4072                    "enum": ["temperate", "barren", "oceanic", "ice", "gas", "lava", "storm", "plasma"],
4073                    "title": "get_characters_character_id_planets_planet_type",
4074                    "type": "string"
4075                  },
4076                  "solar_system_id": {
4077                    "description": "solar_system_id integer",
4078                    "format": "int32",
4079                    "title": "get_characters_character_id_planets_solar_system_id",
4080                    "type": "integer"
4081                  },
4082                  "upgrade_level": {
4083                    "description": "upgrade_level integer",
4084                    "format": "int32",
4085                    "maximum": 5,
4086                    "minimum": 0,
4087                    "title": "get_characters_character_id_planets_upgrade_level",
4088                    "type": "integer"
4089                  }
4090                },
4091                "required": ["solar_system_id", "planet_id", "planet_type", "owner_id", "last_update", "upgrade_level", "num_pins"],
4092                "title": "get_characters_character_id_planets_200_ok",
4093                "type": "object"
4094              },
4095              "title": "get_characters_character_id_planets_ok",
4096              "type": "array"
4097            }
4098          },
4099          "403": {
4100            "description": "Forbidden",
4101            "examples": {
4102              "application/json": {
4103                "error": "Token is not valid for scope(s): esi-planets.manage_planets.v1"
4104              }
4105            },
4106            "schema": {
4107              "description": "Forbidden",
4108              "properties": {
4109                "error": {
4110                  "description": "Forbidden message",
4111                  "title": "get_characters_character_id_planets_403_forbidden",
4112                  "type": "string"
4113                }
4114              },
4115              "title": "get_characters_character_id_planets_forbidden",
4116              "type": "object"
4117            }
4118          },
4119          "500": {
4120            "description": "Internal server error",
4121            "examples": {
4122              "application/json": {
4123                "error": "uncaught exception: IOError('out of memory')"
4124              }
4125            },
4126            "schema": {
4127              "description": "Internal server error",
4128              "properties": {
4129                "error": {
4130                  "description": "Internal server error message",
4131                  "title": "get_characters_character_id_planets_500_internal_server_error",
4132                  "type": "string"
4133                }
4134              },
4135              "title": "get_characters_character_id_planets_internal_server_error",
4136              "type": "object"
4137            }
4138          }
4139        },
4140        "security": [{
4141          "evesso": ["esi-planets.manage_planets.v1"]
4142        }],
4143        "summary": "Get colonies",
4144        "tags": ["Planetary Interaction"]
4145      }
4146    },
4147    "/characters/{character_id}/planets/{planet_id}/": {
4148      "get": {
4149        "description": "Returns full details on the layout of a single planetary colony, including links, pins and routes. Note: Planetary information is only recalculated when the colony is viewed through the client. Information on this endpoint will not update until this criteria is met.\n\n---\n\nAlternate route: `/v1/characters/{character_id}/planets/{planet_id}/`\n\nAlternate route: `/legacy/characters/{character_id}/planets/{planet_id}/`\n\nAlternate route: `/dev/characters/{character_id}/planets/{planet_id}/`\n\n\n---\n\nThis route is cached for up to 600 seconds",
4150        "operationId": "get_characters_character_id_planets_planet_id",
4151        "parameters": [{
4152          "description": "Character id of the target character",
4153          "format": "int32",
4154          "in": "path",
4155          "name": "character_id",
4156          "required": true,
4157          "type": "integer"
4158        }, {
4159          "description": "Planet id of the target planet",
4160          "format": "int32",
4161          "in": "path",
4162          "name": "planet_id",
4163          "required": true,
4164          "type": "integer"
4165        }, {
4166          "default": "tranquility",
4167          "description": "The server name you would like data from",
4168          "enum": ["tranquility", "singularity"],
4169          "in": "query",
4170          "name": "datasource",
4171          "type": "string"
4172        }],
4173        "responses": {
4174          "200": {
4175            "description": "Colony layout",
4176            "examples": {
4177              "application/json": {
4178                "links": [{
4179                  "destination_pin_id": 1000000017022,
4180                  "link_level": 0,
4181                  "source_pin_id": 1000000017021
4182                }],
4183                "pins": [{
4184                  "is_running": true,
4185                  "latitude": 1.55087844973,
4186                  "longitude": 0.717145933308,
4187                  "pin_id": 1000000017021,
4188                  "type_id": 2254
4189                }, {
4190                  "is_running": true,
4191                  "latitude": 1.53360639935,
4192                  "longitude": 0.709775584394,
4193                  "pin_id": 1000000017022,
4194                  "type_id": 2256
4195                }],
4196                "routes": [{
4197                  "content_type_id": 2393,
4198                  "destination_pin_id": 1000000017030,
4199                  "quantity": 20,
4200                  "route_id": 4,
4201                  "source_pin_id": 1000000017029
4202                }]
4203              }
4204            },
4205            "headers": {
4206              "Cache-Control": {
4207                "description": "The caching mechanism used",
4208                "type": "string"
4209              },
4210              "Expires": {
4211                "description": "RFC7231 formatted datetime string",
4212                "type": "string"
4213              },
4214              "Last-Modified": {
4215                "description": "RFC7231 formatted datetime string",
4216                "type": "string"
4217              }
4218            },
4219            "schema": {
4220              "description": "200 ok object",
4221              "properties": {
4222                "links": {
4223                  "description": "links array",
4224                  "items": {
4225                    "description": "link object",
4226                    "properties": {
4227                      "destination_pin_id": {
4228                        "description": "destination_pin_id integer",
4229                        "format": "int64",
4230                        "title": "get_characters_character_id_planets_planet_id_destination_pin_id",
4231                        "type": "integer"
4232                      },
4233                      "link_level": {
4234                        "description": "link_level integer",
4235                        "format": "int32",
4236                        "maximum": 10,
4237                        "minimum": 0,
4238                        "title": "get_characters_character_id_planets_planet_id_link_level",
4239                        "type": "integer"
4240                      },
4241                      "source_pin_id": {
4242                        "description": "source_pin_id integer",
4243                        "format": "int64",
4244                        "title": "get_characters_character_id_planets_planet_id_source_pin_id",
4245                        "type": "integer"
4246                      }
4247                    },
4248                    "required": ["source_pin_id", "destination_pin_id", "link_level"],
4249                    "title": "get_characters_character_id_planets_planet_id_link",
4250                    "type": "object"
4251                  },
4252                  "title": "get_characters_character_id_planets_planet_id_links",
4253                  "type": "array"
4254                },
4255                "pins": {
4256                  "description": "pins array",
4257                  "items": {
4258                    "description": "pin object",
4259                    "properties": {
4260                      "expiry_time": {
4261                        "description": "expiry_time string",
4262                        "format": "date-time",
4263                        "title": "get_characters_character_id_planets_planet_id_expiry_time",
4264                        "type": "string"
4265                      },
4266                      "extractor_details": {
4267                        "description": "extractor_details object",
4268                        "properties": {
4269                          "cycle_time": {
4270                            "description": "in seconds",
4271                            "format": "int32",
4272                            "title": "get_characters_character_id_planets_planet_id_cycle_time",
4273                            "type": "integer"
4274                          },
4275                          "head_radius": {
4276                            "description": "head_radius number",
4277                            "format": "float",
4278                            "title": "get_characters_character_id_planets_planet_id_head_radius",
4279                            "type": "number"
4280                          },
4281                          "heads": {
4282                            "description": "heads array",
4283                            "items": {
4284                              "description": "head object",
4285                              "properties": {
4286                                "head_id": {
4287                                  "description": "head_id integer",
4288                                  "format": "int32",
4289                                  "maximum": 9,
4290                                  "minimum": 0,
4291                                  "title": "get_characters_character_id_planets_planet_id_head_id",
4292                                  "type": "integer"
4293                                },
4294                                "latitude": {
4295                                  "description": "latitude number",
4296                                  "format": "float",
4297                                  "title": "get_characters_character_id_planets_planet_id_latitude",
4298                                  "type": "number"
4299                                },
4300                                "longitude": {
4301                                  "description": "longitude number",
4302                                  "format": "float",
4303                                  "title": "get_characters_character_id_planets_planet_id_longitude",
4304                                  "type": "number"
4305                                }
4306                              },
4307                              "required": ["head_id", "latitude", "longitude"],
4308                              "title": "get_characters_character_id_planets_planet_id_head",
4309                              "type": "object"
4310                            },
4311                            "title": "get_characters_character_id_planets_planet_id_heads",
4312                            "type": "array"
4313                          },
4314                          "product_type_id": {
4315                            "description": "product_type_id integer",
4316                            "format": "int32",
4317                            "title": "get_characters_character_id_planets_planet_id_product_type_id",
4318                            "type": "integer"
4319                          },
4320                          "qty_per_cycle": {
4321                            "description": "qty_per_cycle integer",
4322                            "format": "int32",
4323                            "title": "get_characters_character_id_planets_planet_id_qty_per_cycle",
4324                            "type": "integer"
4325                          }
4326                        },
4327                        "required": ["heads", "product_type_id", "cycle_time", "head_radius", "qty_per_cycle"],
4328                        "title": "get_characters_character_id_planets_planet_id_extractor_details",
4329                        "type": "object"
4330                      },
4331                      "factory_details": {
4332                        "description": "factory_details object",
4333                        "properties": {
4334                          "schematic_id": {
4335                            "description": "schematic_id integer",
4336                            "format": "int32",
4337                            "title": "get_characters_character_id_planets_planet_id_schematic_id",
4338                            "type": "integer"
4339                          }
4340                        },
4341                        "required": ["schematic_id"],
4342                        "title": "get_characters_character_id_planets_planet_id_factory_details",
4343                        "type": "object"
4344                      },
4345                      "install_time": {
4346                        "description": "install_time string",
4347                        "format": "date-time",
4348                        "title": "get_characters_character_id_planets_planet_id_install_time",
4349                        "type": "string"
4350                      },
4351                      "last_cycle_start": {
4352                        "description": "last_cycle_start string",
4353                        "format": "date-time",
4354                        "title": "get_characters_character_id_planets_planet_id_last_cycle_start",
4355                        "type": "string"
4356                      },
4357                      "latitude": {
4358                        "description": "latitude number",
4359                        "format": "float",
4360                        "title": "get_characters_character_id_planets_planet_id_latitude",
4361                        "type": "number"
4362                      },
4363                      "longitude": {
4364                        "description": "longitude number",
4365                        "format": "float",
4366                        "title": "get_characters_character_id_planets_planet_id_longitude",
4367                        "type": "number"
4368                      },
4369                      "pin_id": {
4370                        "description": "pin_id integer",
4371                        "format": "int64",
4372                        "title": "get_characters_character_id_planets_planet_id_pin_id",
4373                        "type": "integer"
4374                      },
4375                      "schematic_id": {
4376                        "description": "schematic_id integer",
4377                        "format": "int32",
4378                        "title": "get_characters_character_id_planets_planet_id_schematic_id",
4379                        "type": "integer"
4380                      },
4381                      "type_id": {
4382                        "description": "type_id integer",
4383                        "format": "int32",
4384                        "title": "get_characters_character_id_planets_planet_id_type_id",
4385                        "type": "integer"
4386                      }
4387                    },
4388                    "required": ["pin_id", "type_id", "latitude", "longitude"],
4389                    "title": "get_characters_character_id_planets_planet_id_pin",
4390                    "type": "object"
4391                  },
4392                  "title": "get_characters_character_id_planets_planet_id_pins",
4393                  "type": "array"
4394                },
4395                "routes": {
4396                  "description": "routes array",
4397                  "items": {
4398                    "description": "route object",
4399                    "properties": {
4400                      "content_type_id": {
4401                        "description": "content_type_id integer",
4402                        "format": "int32",
4403                        "title": "get_characters_character_id_planets_planet_id_content_type_id",
4404                        "type": "integer"
4405                      },
4406                      "destination_pin_id": {
4407                        "description": "destination_pin_id integer",
4408                        "format": "int64",
4409                        "title": "get_characters_character_id_planets_planet_id_destination_pin_id",
4410                        "type": "integer"
4411                      },
4412                      "quantity": {
4413                        "description": "quantity integer",
4414                        "format": "int64",
4415                        "title": "get_characters_character_id_planets_planet_id_quantity",
4416                        "type": "integer"
4417                      },
4418                      "route_id": {
4419                        "description": "route_id integer",
4420                        "format": "int64",
4421                        "title": "get_characters_character_id_planets_planet_id_route_id",
4422                        "type": "integer"
4423                      },
4424                      "source_pin_id": {
4425                        "description": "source_pin_id integer",
4426                        "format": "int64",
4427                        "title": "get_characters_character_id_planets_planet_id_source_pin_id",
4428                        "type": "integer"
4429                      },
4430                      "waypoints": {
4431                        "description": "waypoints array",
4432                        "items": {
4433                          "description": "waypoint object",
4434                          "properties": {
4435                            "order": {
4436                              "description": "order integer",
4437                              "format": "int32",
4438                              "maximum": 5,
4439                              "minimum": 1,
4440                              "title": "get_characters_character_id_planets_planet_id_order",
4441                              "type": "integer"
4442                            },
4443                            "pin_id": {
4444                              "description": "pin_id integer",
4445                              "format": "int64",
4446                              "title": "get_characters_character_id_planets_planet_id_pin_id",
4447                              "type": "integer"
4448                            }
4449                          },
4450                          "required": ["pin_id", "order"],
4451                          "title": "get_characters_character_id_planets_planet_id_waypoint",
4452                          "type": "object"
4453                        },
4454                        "title": "get_characters_character_id_planets_planet_id_waypoints",
4455                        "type": "array"
4456                      }
4457                    },
4458                    "required": ["route_id", "source_pin_id", "destination_pin_id", "content_type_id", "quantity"],
4459                    "title": "get_characters_character_id_planets_planet_id_route",
4460                    "type": "object"
4461                  },
4462                  "title": "get_characters_character_id_planets_planet_id_routes",
4463                  "type": "array"
4464                }
4465              },
4466              "required": ["links", "pins", "routes"],
4467              "title": "get_characters_character_id_planets_planet_id_ok",
4468              "type": "object"
4469            }
4470          },
4471          "403": {
4472            "description": "Forbidden",
4473            "examples": {
4474              "application/json": {
4475                "error": "Token is not valid for scope(s): esi-planets.manage_planets.v1"
4476              }
4477            },
4478            "schema": {
4479              "description": "Forbidden",
4480              "properties": {
4481                "error": {
4482                  "description": "Forbidden message",
4483                  "title": "get_characters_character_id_planets_planet_id_403_forbidden",
4484                  "type": "string"
4485                }
4486              },
4487              "title": "get_characters_character_id_planets_planet_id_forbidden",
4488              "type": "object"
4489            }
4490          },
4491          "404": {
4492            "description": "Colony not found",
4493            "examples": {
4494              "application/json": {
4495                "error": "Colony not found"
4496              }
4497            },
4498            "schema": {
4499              "description": "Colony not found",
4500              "properties": {
4501                "error": {
4502                  "description": "error message",
4503                  "title": "get_characters_character_id_planets_planet_id_error",
4504                  "type": "string"
4505                }
4506              },
4507              "title": "get_characters_character_id_planets_planet_id_not_found",
4508              "type": "object"
4509            }
4510          },
4511          "500": {
4512            "description": "Internal server error",
4513            "examples": {
4514              "application/json": {
4515                "error": "uncaught exception: IOError('out of memory')"
4516              }
4517            },
4518            "schema": {
4519              "description": "Internal server error",
4520              "properties": {
4521                "error": {
4522                  "description": "Internal server error message",
4523                  "title": "get_characters_character_id_planets_planet_id_500_internal_server_error",
4524                  "type": "string"
4525                }
4526              },
4527              "title": "get_characters_character_id_planets_planet_id_internal_server_error",
4528              "type": "object"
4529            }
4530          }
4531        },
4532        "security": [{
4533          "evesso": ["esi-planets.manage_planets.v1"]
4534        }],
4535        "summary": "Get colony layout",
4536        "tags": ["Planetary Interaction"]
4537      }
4538    },
4539    "/characters/{character_id}/portrait/": {
4540      "get": {
4541        "description": "Get portrait urls for a character\n\n---\n\nAlternate route: `/v2/characters/{character_id}/portrait/`\n\nAlternate route: `/dev/characters/{character_id}/portrait/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
4542        "operationId": "get_characters_character_id_portrait",
4543        "parameters": [{
4544          "description": "An EVE character ID",
4545          "format": "int32",
4546          "in": "path",
4547          "name": "character_id",
4548          "required": true,
4549          "type": "integer"
4550        }, {
4551          "default": "tranquility",
4552          "description": "The server name you would like data from",
4553          "enum": ["tranquility", "singularity"],
4554          "in": "query",
4555          "name": "datasource",
4556          "type": "string"
4557        }],
4558        "responses": {
4559          "200": {
4560            "description": "Public data for the given character",
4561            "examples": {
4562              "application/json": {
4563                "px128x128": "https://imageserver.eveonline.com/Character/95465499_128.jpg",
4564                "px256x256": "https://imageserver.eveonline.com/Character/95465499_256.jpg",
4565                "px512x512": "https://imageserver.eveonline.com/Character/95465499_512.jpg",
4566                "px64x64": "https://imageserver.eveonline.com/Character/95465499_64.jpg"
4567              }
4568            },
4569            "headers": {
4570              "Cache-Control": {
4571                "description": "The caching mechanism used",
4572                "type": "string"
4573              },
4574              "Expires": {
4575                "description": "RFC7231 formatted datetime string",
4576                "type": "string"
4577              },
4578              "Last-Modified": {
4579                "description": "RFC7231 formatted datetime string",
4580                "type": "string"
4581              }
4582            },
4583            "schema": {
4584              "description": "200 ok object",
4585              "properties": {
4586                "px128x128": {
4587                  "description": "px128x128 string",
4588                  "title": "get_characters_character_id_portrait_px128x128",
4589                  "type": "string"
4590                },
4591                "px256x256": {
4592                  "description": "px256x256 string",
4593                  "title": "get_characters_character_id_portrait_px256x256",
4594                  "type": "string"
4595                },
4596                "px512x512": {
4597                  "description": "px512x512 string",
4598                  "title": "get_characters_character_id_portrait_px512x512",
4599                  "type": "string"
4600                },
4601                "px64x64": {
4602                  "description": "px64x64 string",
4603                  "title": "get_characters_character_id_portrait_px64x64",
4604                  "type": "string"
4605                }
4606              },
4607              "title": "get_characters_character_id_portrait_ok",
4608              "type": "object"
4609            }
4610          },
4611          "404": {
4612            "description": "No image server for this datasource",
4613            "examples": {
4614              "application/json": {
4615                "error": "No image server for this datasource"
4616              }
4617            },
4618            "schema": {
4619              "description": "No image server for this datasource",
4620              "properties": {
4621                "error": {
4622                  "description": "error message",
4623                  "title": "get_characters_character_id_portrait_error",
4624                  "type": "string"
4625                }
4626              },
4627              "title": "get_characters_character_id_portrait_not_found",
4628              "type": "object"
4629            }
4630          },
4631          "500": {
4632            "description": "Internal server error",
4633            "examples": {
4634              "application/json": {
4635                "error": "uncaught exception: IOError('out of memory')"
4636              }
4637            },
4638            "schema": {
4639              "description": "Internal server error",
4640              "properties": {
4641                "error": {
4642                  "description": "Internal server error message",
4643                  "title": "get_characters_character_id_portrait_500_internal_server_error",
4644                  "type": "string"
4645                }
4646              },
4647              "title": "get_characters_character_id_portrait_internal_server_error",
4648              "type": "object"
4649            }
4650          }
4651        },
4652        "summary": "Get character portraits",
4653        "tags": ["Character"]
4654      }
4655    },
4656    "/characters/{character_id}/search/": {
4657      "get": {
4658        "description": "Search for entities that match a given sub-string.\n\n---\n\nAlternate route: `/v2/characters/{character_id}/search/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
4659        "operationId": "get_characters_character_id_search",
4660        "parameters": [{
4661          "description": "An EVE character ID",
4662          "format": "int32",
4663          "in": "path",
4664          "name": "character_id",
4665          "required": true,
4666          "type": "integer"
4667        }, {
4668          "description": "The string to search on",
4669          "in": "query",
4670          "minLength": 3,
4671          "name": "search",
4672          "required": true,
4673          "type": "string"
4674        }, {
4675          "description": "Type of entities to search for",
4676          "in": "query",
4677          "items": {
4678            "enum": ["agent", "alliance", "character", "constellation", "corporation", "faction", "inventorytype", "region", "solarsystem", "station", "structure", "wormhole"],
4679            "type": "string"
4680          },
4681          "minItems": 1,
4682          "name": "categories",
4683          "required": true,
4684          "type": "array",
4685          "uniqueItems": true
4686        }, {
4687          "default": "en-us",
4688          "description": "Search locale",
4689          "enum": ["en-us", "de", "fr", "ru", "ja", "zh"],
4690          "in": "query",
4691          "name": "language",
4692          "type": "string"
4693        }, {
4694          "default": false,
4695          "description": "Whether the search should be a strict match",
4696          "in": "query",
4697          "name": "strict",
4698          "type": "boolean"
4699        }, {
4700          "default": "tranquility",
4701          "description": "The server name you would like data from",
4702          "enum": ["tranquility", "singularity"],
4703          "in": "query",
4704          "name": "datasource",
4705          "type": "string"
4706        }],
4707        "responses": {
4708          "200": {
4709            "description": "A list of search results",
4710            "examples": {
4711              "application/json": {
4712                "solarsystem": [30002510],
4713                "station": [60004588, 60004594, 60005725, 60009106, 60012721, 60012724, 60012727]
4714              }
4715            },
4716            "headers": {
4717              "Cache-Control": {
4718                "description": "The caching mechanism used",
4719                "type": "string"
4720              },
4721              "Expires": {
4722                "description": "RFC7231 formatted datetime string",
4723                "type": "string"
4724              },
4725              "Last-Modified": {
4726                "description": "RFC7231 formatted datetime string",
4727                "type": "string"
4728              }
4729            },
4730            "schema": {
4731              "description": "200 ok object",
4732              "properties": {
4733                "agent": {
4734                  "description": "agent array",
4735                  "items": {
4736                    "description": "agent integer",
4737                    "format": "int32",
4738                    "title": "get_characters_character_id_search_agent",
4739                    "type": "integer"
4740                  },
4741                  "title": "get_characters_character_id_search_agent",
4742                  "type": "array"
4743                },
4744                "alliance": {
4745                  "description": "alliance array",
4746                  "items": {
4747                    "description": "alliance integer",
4748                    "format": "int32",
4749                    "title": "get_characters_character_id_search_alliance",
4750                    "type": "integer"
4751                  },
4752                  "title": "get_characters_character_id_search_alliance",
4753                  "type": "array"
4754                },
4755                "character": {
4756                  "description": "character array",
4757                  "items": {
4758                    "description": "character integer",
4759                    "format": "int32",
4760                    "title": "get_characters_character_id_search_character",
4761                    "type": "integer"
4762                  },
4763                  "title": "get_characters_character_id_search_character",
4764                  "type": "array"
4765                },
4766                "constellation": {
4767                  "description": "constellation array",
4768                  "items": {
4769                    "description": "constellation integer",
4770                    "format": "int32",
4771                    "title": "get_characters_character_id_search_constellation",
4772                    "type": "integer"
4773                  },
4774                  "title": "get_characters_character_id_search_constellation",
4775                  "type": "array"
4776                },
4777                "corporation": {
4778                  "description": "corporation array",
4779                  "items": {
4780                    "description": "corporation integer",
4781                    "format": "int32",
4782                    "title": "get_characters_character_id_search_corporation",
4783                    "type": "integer"
4784                  },
4785                  "title": "get_characters_character_id_search_corporation",
4786                  "type": "array"
4787                },
4788                "faction": {
4789                  "description": "faction array",
4790                  "items": {
4791                    "description": "faction integer",
4792                    "format": "int32",
4793                    "title": "get_characters_character_id_search_faction",
4794                    "type": "integer"
4795                  },
4796                  "title": "get_characters_character_id_search_faction",
4797                  "type": "array"
4798                },
4799                "inventorytype": {
4800                  "description": "inventorytype array",
4801                  "items": {
4802                    "description": "inventorytype integer",
4803                    "format": "int32",
4804                    "title": "get_characters_character_id_search_inventorytype",
4805                    "type": "integer"
4806                  },
4807                  "title": "get_characters_character_id_search_inventorytype",
4808                  "type": "array"
4809                },
4810                "region": {
4811                  "description": "region array",
4812                  "items": {
4813                    "description": "region integer",
4814                    "format": "int32",
4815                    "title": "get_characters_character_id_search_region",
4816                    "type": "integer"
4817                  },
4818                  "title": "get_characters_character_id_search_region",
4819                  "type": "array"
4820                },
4821                "solarsystem": {
4822                  "description": "solarsystem array",
4823                  "items": {
4824                    "description": "solarsystem integer",
4825                    "format": "int32",
4826                    "title": "get_characters_character_id_search_solarsystem",
4827                    "type": "integer"
4828                  },
4829                  "title": "get_characters_character_id_search_solarsystem",
4830                  "type": "array"
4831                },
4832                "station": {
4833                  "description": "station array",
4834                  "items": {
4835                    "description": "station integer",
4836                    "format": "int32",
4837                    "title": "get_characters_character_id_search_station",
4838                    "type": "integer"
4839                  },
4840                  "title": "get_characters_character_id_search_station",
4841                  "type": "array"
4842                },
4843                "structure": {
4844                  "description": "structure array",
4845                  "items": {
4846                    "description": "structure integer",
4847                    "format": "int64",
4848                    "title": "get_characters_character_id_search_structure",
4849                    "type": "integer"
4850                  },
4851                  "title": "get_characters_character_id_search_structure",
4852                  "type": "array"
4853                },
4854                "wormhole": {
4855                  "description": "wormhole array",
4856                  "items": {
4857                    "description": "wormhole integer",
4858                    "format": "int32",
4859                    "title": "get_characters_character_id_search_wormhole",
4860                    "type": "integer"
4861                  },
4862                  "title": "get_characters_character_id_search_wormhole",
4863                  "type": "array"
4864                }
4865              },
4866              "title": "get_characters_character_id_search_ok",
4867              "type": "object"
4868            }
4869          },
4870          "403": {
4871            "description": "Forbidden",
4872            "examples": {
4873              "application/json": {
4874                "error": "Token is not valid for scope(s): esi-search.search_structures.v1"
4875              }
4876            },
4877            "schema": {
4878              "description": "Forbidden",
4879              "properties": {
4880                "error": {
4881                  "description": "Forbidden message",
4882                  "title": "get_characters_character_id_search_403_forbidden",
4883                  "type": "string"
4884                }
4885              },
4886              "title": "get_characters_character_id_search_forbidden",
4887              "type": "object"
4888            }
4889          },
4890          "500": {
4891            "description": "Internal server error",
4892            "examples": {
4893              "application/json": {
4894                "error": "uncaught exception: IOError('out of memory')"
4895              }
4896            },
4897            "schema": {
4898              "description": "Internal server error",
4899              "properties": {
4900                "error": {
4901                  "description": "Internal server error message",
4902                  "title": "get_characters_character_id_search_500_internal_server_error",
4903                  "type": "string"
4904                }
4905              },
4906              "title": "get_characters_character_id_search_internal_server_error",
4907              "type": "object"
4908            }
4909          }
4910        },
4911        "security": [{
4912          "evesso": ["esi-search.search_structures.v1"]
4913        }],
4914        "summary": "Search on a string",
4915        "tags": ["Search"]
4916      }
4917    },
4918    "/characters/{character_id}/ship/": {
4919      "get": {
4920        "description": "Get the current ship type, name and id\n\n---\n\nAlternate route: `/v1/characters/{character_id}/ship/`\n\nAlternate route: `/legacy/characters/{character_id}/ship/`\n\nAlternate route: `/dev/characters/{character_id}/ship/`\n\n\n---\n\nThis route is cached for up to 5 seconds",
4921        "operationId": "get_characters_character_id_ship",
4922        "parameters": [{
4923          "description": "An EVE character ID",
4924          "format": "int32",
4925          "in": "path",
4926          "name": "character_id",
4927          "required": true,
4928          "type": "integer"
4929        }, {
4930          "default": "tranquility",
4931          "description": "The server name you would like data from",
4932          "enum": ["tranquility", "singularity"],
4933          "in": "query",
4934          "name": "datasource",
4935          "type": "string"
4936        }],
4937        "responses": {
4938          "200": {
4939            "description": "Get the current ship type, name and id",
4940            "examples": {
4941              "application/json": {
4942                "ship_item_id": 1000000016991,
4943                "ship_name": "SPACESHIPS!!!",
4944                "ship_type_id": 1233
4945              }
4946            },
4947            "headers": {
4948              "Cache-Control": {
4949                "description": "The caching mechanism used",
4950                "type": "string"
4951              },
4952              "Expires": {
4953                "description": "RFC7231 formatted datetime string",
4954                "type": "string"
4955              },
4956              "Last-Modified": {
4957                "description": "RFC7231 formatted datetime string",
4958                "type": "string"
4959              }
4960            },
4961            "schema": {
4962              "description": "200 ok object",
4963              "properties": {
4964                "ship_item_id": {
4965                  "description": "Item id's are unique to a ship and persist until it is repackaged. This value can be used to track repeated uses of a ship, or detect when a pilot changes into a different instance of the same ship type.",
4966                  "format": "int64",
4967                  "title": "get_characters_character_id_ship_ship_item_id",
4968                  "type": "integer"
4969                },
4970                "ship_name": {
4971                  "description": "ship_name string",
4972                  "title": "get_characters_character_id_ship_ship_name",
4973                  "type": "string"
4974                },
4975                "ship_type_id": {
4976                  "description": "ship_type_id integer",
4977                  "format": "int32",
4978                  "title": "get_characters_character_id_ship_ship_type_id",
4979                  "type": "integer"
4980                }
4981              },
4982              "required": ["ship_type_id", "ship_item_id", "ship_name"],
4983              "title": "get_characters_character_id_ship_ok",
4984              "type": "object"
4985            }
4986          },
4987          "403": {
4988            "description": "Forbidden",
4989            "examples": {
4990              "application/json": {
4991                "error": "Token is not valid for scope(s): esi-location.read_ship_type.v1"
4992              }
4993            },
4994            "schema": {
4995              "description": "Forbidden",
4996              "properties": {
4997                "error": {
4998                  "description": "Forbidden message",
4999                  "title": "get_characters_character_id_ship_403_forbidden",
5000                  "type": "string"
5001                }
5002              },
5003              "title": "get_characters_character_id_ship_forbidden",
5004              "type": "object"
5005            }
5006          },
5007          "500": {
5008            "description": "Internal server error",
5009            "examples": {
5010              "application/json": {
5011                "error": "uncaught exception: IOError('out of memory')"
5012              }
5013            },
5014            "schema": {
5015              "description": "Internal server error",
5016              "properties": {
5017                "error": {
5018                  "description": "Internal server error message",
5019                  "title": "get_characters_character_id_ship_500_internal_server_error",
5020                  "type": "string"
5021                }
5022              },
5023              "title": "get_characters_character_id_ship_internal_server_error",
5024              "type": "object"
5025            }
5026          }
5027        },
5028        "security": [{
5029          "evesso": ["esi-location.read_ship_type.v1"]
5030        }],
5031        "summary": "Get current ship",
5032        "tags": ["Location"]
5033      }
5034    },
5035    "/characters/{character_id}/skillqueue/": {
5036      "get": {
5037        "description": "List the configured skill queue for the given character\n\n---\n\nAlternate route: `/v2/characters/{character_id}/skillqueue/`\n\nAlternate route: `/legacy/characters/{character_id}/skillqueue/`\n\nAlternate route: `/dev/characters/{character_id}/skillqueue/`\n\n\n---\n\nThis route is cached for up to 120 seconds",
5038        "operationId": "get_characters_character_id_skillqueue",
5039        "parameters": [{
5040          "description": "Character id of the target character",
5041          "format": "int32",
5042          "in": "path",
5043          "name": "character_id",
5044          "required": true,
5045          "type": "integer"
5046        }, {
5047          "default": "tranquility",
5048          "description": "The server name you would like data from",
5049          "enum": ["tranquility", "singularity"],
5050          "in": "query",
5051          "name": "datasource",
5052          "type": "string"
5053        }],
5054        "responses": {
5055          "200": {
5056            "description": "The current skill queue, sorted ascending by finishing time",
5057            "examples": {
5058              "application/json": [{
5059                "finish_date": "2016-06-29T10:47:00Z",
5060                "finished_level": 3,
5061                "queue_position": 0,
5062                "skill_id": 1,
5063                "start_date": "2016-06-29T10:46:00Z"
5064              }, {
5065                "finish_date": "2016-07-15T10:47:00Z",
5066                "finished_level": 4,
5067                "queue_position": 1,
5068                "skill_id": 1,
5069                "start_date": "2016-06-29T10:47:00Z"
5070              }, {
5071                "finish_date": "2016-08-30T10:47:00Z",
5072                "finished_level": 2,
5073                "queue_position": 2,
5074                "skill_id": 2,
5075                "start_date": "2016-07-15T10:47:00Z"
5076              }]
5077            },
5078            "headers": {
5079              "Cache-Control": {
5080                "description": "The caching mechanism used",
5081                "type": "string"
5082              },
5083              "Expires": {
5084                "description": "RFC7231 formatted datetime string",
5085                "type": "string"
5086              },
5087              "Last-Modified": {
5088                "description": "RFC7231 formatted datetime string",
5089                "type": "string"
5090              }
5091            },
5092            "schema": {
5093              "description": "200 ok array",
5094              "items": {
5095                "description": "200 ok object",
5096                "properties": {
5097                  "finish_date": {
5098                    "description": "finish_date string",
5099                    "format": "date-time",
5100                    "title": "get_characters_character_id_skillqueue_finish_date",
5101                    "type": "string"
5102                  },
5103                  "finished_level": {
5104                    "description": "finished_level integer",
5105                    "format": "int32",
5106                    "maximum": 5,
5107                    "minimum": 0,
5108                    "title": "get_characters_character_id_skillqueue_finished_level",
5109                    "type": "integer"
5110                  },
5111                  "level_end_sp": {
5112                    "description": "level_end_sp integer",
5113                    "format": "int32",
5114                    "title": "get_characters_character_id_skillqueue_level_end_sp",
5115                    "type": "integer"
5116                  },
5117                  "level_start_sp": {
5118                    "description": "Amount of SP that was in the skill when it started training it's current level. Used to calculate % of current level complete.",
5119                    "format": "int32",
5120                    "title": "get_characters_character_id_skillqueue_level_start_sp",
5121                    "type": "integer"
5122                  },
5123                  "queue_position": {
5124                    "description": "queue_position integer",
5125                    "format": "int32",
5126                    "title": "get_characters_character_id_skillqueue_queue_position",
5127                    "type": "integer"
5128                  },
5129                  "skill_id": {
5130                    "description": "skill_id integer",
5131                    "format": "int32",
5132                    "title": "get_characters_character_id_skillqueue_skill_id",
5133                    "type": "integer"
5134                  },
5135                  "start_date": {
5136                    "description": "start_date string",
5137                    "format": "date-time",
5138                    "title": "get_characters_character_id_skillqueue_start_date",
5139                    "type": "string"
5140                  },
5141                  "training_start_sp": {
5142                    "description": "training_start_sp integer",
5143                    "format": "int32",
5144                    "title": "get_characters_character_id_skillqueue_training_start_sp",
5145                    "type": "integer"
5146                  }
5147                },
5148                "required": ["skill_id", "finished_level", "queue_position"],
5149                "title": "get_characters_character_id_skillqueue_200_ok",
5150                "type": "object"
5151              },
5152              "title": "get_characters_character_id_skillqueue_ok",
5153              "type": "array"
5154            }
5155          },
5156          "403": {
5157            "description": "Forbidden",
5158            "examples": {
5159              "application/json": {
5160                "error": "Token is not valid for scope(s): esi-skills.read_skillqueue.v1"
5161              }
5162            },
5163            "schema": {
5164              "description": "Forbidden",
5165              "properties": {
5166                "error": {
5167                  "description": "Forbidden message",
5168                  "title": "get_characters_character_id_skillqueue_403_forbidden",
5169                  "type": "string"
5170                }
5171              },
5172              "title": "get_characters_character_id_skillqueue_forbidden",
5173              "type": "object"
5174            }
5175          },
5176          "500": {
5177            "description": "Internal server error",
5178            "examples": {
5179              "application/json": {
5180                "error": "uncaught exception: IOError('out of memory')"
5181              }
5182            },
5183            "schema": {
5184              "description": "Internal server error",
5185              "properties": {
5186                "error": {
5187                  "description": "Internal server error message",
5188                  "title": "get_characters_character_id_skillqueue_500_internal_server_error",
5189                  "type": "string"
5190                }
5191              },
5192              "title": "get_characters_character_id_skillqueue_internal_server_error",
5193              "type": "object"
5194            }
5195          }
5196        },
5197        "security": [{
5198          "evesso": ["esi-skills.read_skillqueue.v1"]
5199        }],
5200        "summary": "Get character's skill queue",
5201        "tags": ["Skills"]
5202      }
5203    },
5204    "/characters/{character_id}/skills/": {
5205      "get": {
5206        "description": "List all trained skills for the given character\n\n---\n\nAlternate route: `/v3/characters/{character_id}/skills/`\n\nAlternate route: `/dev/characters/{character_id}/skills/`\n\n\n---\n\nThis route is cached for up to 120 seconds",
5207        "operationId": "get_characters_character_id_skills",
5208        "parameters": [{
5209          "description": "An EVE character ID",
5210          "format": "int32",
5211          "in": "path",
5212          "name": "character_id",
5213          "required": true,
5214          "type": "integer"
5215        }, {
5216          "default": "tranquility",
5217          "description": "The server name you would like data from",
5218          "enum": ["tranquility", "singularity"],
5219          "in": "query",
5220          "name": "datasource",
5221          "type": "string"
5222        }],
5223        "responses": {
5224          "200": {
5225            "description": "Known skills for the character",
5226            "examples": {
5227              "application/json": {
5228                "skills": [{
5229                  "current_skill_level": 1,
5230                  "skill_id": 1,
5231                  "skillpoints_in_skill": 10000
5232                }, {
5233                  "current_skill_level": 1,
5234                  "skill_id": 2,
5235                  "skillpoints_in_skill": 10000
5236                }],
5237                "total_sp": 20000
5238              }
5239            },
5240            "headers": {
5241              "Cache-Control": {
5242                "description": "The caching mechanism used",
5243                "type": "string"
5244              },
5245              "Expires": {
5246                "description": "RFC7231 formatted datetime string",
5247                "type": "string"
5248              },
5249              "Last-Modified": {
5250                "description": "RFC7231 formatted datetime string",
5251                "type": "string"
5252              }
5253            },
5254            "schema": {
5255              "description": "200 ok object",
5256              "properties": {
5257                "skills": {
5258                  "description": "skills array",
5259                  "items": {
5260                    "description": "skill object",
5261                    "properties": {
5262                      "current_skill_level": {
5263                        "description": "current_skill_level integer",
5264                        "format": "int32",
5265                        "title": "get_characters_character_id_skills_current_skill_level",
5266                        "type": "integer"
5267                      },
5268                      "skill_id": {
5269                        "description": "skill_id integer",
5270                        "format": "int32",
5271                        "title": "get_characters_character_id_skills_skill_id",
5272                        "type": "integer"
5273                      },
5274                      "skillpoints_in_skill": {
5275                        "description": "skillpoints_in_skill integer",
5276                        "format": "int64",
5277                        "title": "get_characters_character_id_skills_skillpoints_in_skill",
5278                        "type": "integer"
5279                      }
5280                    },
5281                    "title": "get_characters_character_id_skills_skill",
5282                    "type": "object"
5283                  },
5284                  "title": "get_characters_character_id_skills_skills",
5285                  "type": "array"
5286                },
5287                "total_sp": {
5288                  "description": "total_sp integer",
5289                  "format": "int64",
5290                  "title": "get_characters_character_id_skills_total_sp",
5291                  "type": "integer"
5292                }
5293              },
5294              "title": "get_characters_character_id_skills_ok",
5295              "type": "object"
5296            }
5297          },
5298          "403": {
5299            "description": "Forbidden",
5300            "examples": {
5301              "application/json": {
5302                "error": "Token is not valid for scope(s): esi-skills.read_skills.v1"
5303              }
5304            },
5305            "schema": {
5306              "description": "Forbidden",
5307              "properties": {
5308                "error": {
5309                  "description": "Forbidden message",
5310                  "title": "get_characters_character_id_skills_403_forbidden",
5311                  "type": "string"
5312                }
5313              },
5314              "title": "get_characters_character_id_skills_forbidden",
5315              "type": "object"
5316            }
5317          },
5318          "500": {
5319            "description": "Internal server error",
5320            "examples": {
5321              "application/json": {
5322                "error": "uncaught exception: IOError('out of memory')"
5323              }
5324            },
5325            "schema": {
5326              "description": "Internal server error",
5327              "properties": {
5328                "error": {
5329                  "description": "Internal server error message",
5330                  "title": "get_characters_character_id_skills_500_internal_server_error",
5331                  "type": "string"
5332                }
5333              },
5334              "title": "get_characters_character_id_skills_internal_server_error",
5335              "type": "object"
5336            }
5337          }
5338        },
5339        "security": [{
5340          "evesso": ["esi-skills.read_skills.v1"]
5341        }],
5342        "summary": "Get character skills",
5343        "tags": ["Skills"]
5344      }
5345    },
5346    "/characters/{character_id}/wallets/": {
5347      "get": {
5348        "description": "List your wallets and their balances. Characters typically have only one wallet, with wallet_id 1000 being the master wallet.\n\n---\n\nAlternate route: `/v1/characters/{character_id}/wallets/`\n\nAlternate route: `/legacy/characters/{character_id}/wallets/`\n\nAlternate route: `/dev/characters/{character_id}/wallets/`\n\n\n---\n\nThis route is cached for up to 120 seconds",
5349        "operationId": "get_characters_character_id_wallets",
5350        "parameters": [{
5351          "description": "An EVE character ID",
5352          "format": "int32",
5353          "in": "path",
5354          "name": "character_id",
5355          "required": true,
5356          "type": "integer"
5357        }, {
5358          "default": "tranquility",
5359          "description": "The server name you would like data from",
5360          "enum": ["tranquility", "singularity"],
5361          "in": "query",
5362          "name": "datasource",
5363          "type": "string"
5364        }],
5365        "responses": {
5366          "200": {
5367            "description": "Wallet data for selected user",
5368            "examples": {
5369              "application/json": [{
5370                "balance": 295000,
5371                "wallet_id": 1000
5372              }]
5373            },
5374            "headers": {
5375              "Cache-Control": {
5376                "description": "The caching mechanism used",
5377                "type": "string"
5378              },
5379              "Expires": {
5380                "description": "RFC7231 formatted datetime string",
5381                "type": "string"
5382              },
5383              "Last-Modified": {
5384                "description": "RFC7231 formatted datetime string",
5385                "type": "string"
5386              }
5387            },
5388            "schema": {
5389              "description": "200 ok array",
5390              "items": {
5391                "description": "200 ok object",
5392                "properties": {
5393                  "balance": {
5394                    "description": "Wallet's balance in ISK hundredths.",
5395                    "format": "int64",
5396                    "title": "get_characters_character_id_wallets_balance",
5397                    "type": "integer"
5398                  },
5399                  "wallet_id": {
5400                    "description": "wallet_id integer",
5401                    "format": "int32",
5402                    "title": "get_characters_character_id_wallets_wallet_id",
5403                    "type": "integer"
5404                  }
5405                },
5406                "title": "get_characters_character_id_wallets_200_ok",
5407                "type": "object"
5408              },
5409              "title": "get_characters_character_id_wallets_ok",
5410              "type": "array"
5411            }
5412          },
5413          "403": {
5414            "description": "Forbidden",
5415            "examples": {
5416              "application/json": {
5417                "error": "Token is not valid for scope(s): esi-wallet.read_character_wallet.v1"
5418              }
5419            },
5420            "schema": {
5421              "description": "Forbidden",
5422              "properties": {
5423                "error": {
5424                  "description": "Forbidden message",
5425                  "title": "get_characters_character_id_wallets_403_forbidden",
5426                  "type": "string"
5427                }
5428              },
5429              "title": "get_characters_character_id_wallets_forbidden",
5430              "type": "object"
5431            }
5432          },
5433          "500": {
5434            "description": "Internal server error",
5435            "examples": {
5436              "application/json": {
5437                "error": "uncaught exception: IOError('out of memory')"
5438              }
5439            },
5440            "schema": {
5441              "description": "Internal server error",
5442              "properties": {
5443                "error": {
5444                  "description": "Internal server error message",
5445                  "title": "get_characters_character_id_wallets_500_internal_server_error",
5446                  "type": "string"
5447                }
5448              },
5449              "title": "get_characters_character_id_wallets_internal_server_error",
5450              "type": "object"
5451            }
5452          }
5453        },
5454        "security": [{
5455          "evesso": ["esi-wallet.read_character_wallet.v1"]
5456        }],
5457        "summary": "List wallets and balances",
5458        "tags": ["Wallet"]
5459      }
5460    },
5461    "/corporations/names/": {
5462      "get": {
5463        "description": "Resolve a set of corporation IDs to corporation names\n\n---\n\nAlternate route: `/v1/corporations/names/`\n\nAlternate route: `/legacy/corporations/names/`\n\nAlternate route: `/dev/corporations/names/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
5464        "operationId": "get_corporations_names",
5465        "parameters": [{
5466          "description": "A comma separated list of corporation IDs",
5467          "in": "query",
5468          "items": {
5469            "format": "int64",
5470            "type": "integer"
5471          },
5472          "minItems": 1,
5473          "name": "corporation_ids",
5474          "required": true,
5475          "type": "array"
5476        }, {
5477          "default": "tranquility",
5478          "description": "The server name you would like data from",
5479          "enum": ["tranquility", "singularity"],
5480          "in": "query",
5481          "name": "datasource",
5482          "type": "string"
5483        }],
5484        "responses": {
5485          "200": {
5486            "description": "List of id/name associations",
5487            "examples": {
5488              "application/json": [{
5489                "corporation_id": 1000171,
5490                "corporation_name": "Republic University"
5491              }]
5492            },
5493            "headers": {
5494              "Cache-Control": {
5495                "description": "The caching mechanism used",
5496                "type": "string"
5497              },
5498              "Expires": {
5499                "description": "RFC7231 formatted datetime string",
5500                "type": "string"
5501              },
5502              "Last-Modified": {
5503                "description": "RFC7231 formatted datetime string",
5504                "type": "string"
5505              }
5506            },
5507            "schema": {
5508              "description": "200 ok array",
5509              "items": {
5510                "description": "200 ok object",
5511                "properties": {
5512                  "corporation_id": {
5513                    "description": "corporation_id integer",
5514                    "format": "int32",
5515                    "title": "get_corporations_names_corporation_id",
5516                    "type": "integer"
5517                  },
5518                  "corporation_name": {
5519                    "description": "corporation_name string",
5520                    "title": "get_corporations_names_corporation_name",
5521                    "type": "string"
5522                  }
5523                },
5524                "required": ["corporation_id", "corporation_name"],
5525                "title": "get_corporations_names_200_ok",
5526                "type": "object"
5527              },
5528              "title": "get_corporations_names_ok",
5529              "type": "array"
5530            }
5531          },
5532          "500": {
5533            "description": "Internal server error",
5534            "examples": {
5535              "application/json": {
5536                "error": "uncaught exception: IOError('out of memory')"
5537              }
5538            },
5539            "schema": {
5540              "description": "Internal server error",
5541              "properties": {
5542                "error": {
5543                  "description": "Internal server error message",
5544                  "title": "get_corporations_names_500_internal_server_error",
5545                  "type": "string"
5546                }
5547              },
5548              "title": "get_corporations_names_internal_server_error",
5549              "type": "object"
5550            }
5551          }
5552        },
5553        "summary": "Get corporation names",
5554        "tags": ["Corporation"]
5555      }
5556    },
5557    "/corporations/{corporation_id}/": {
5558      "get": {
5559        "description": "Public information about a corporation\n\n---\n\nAlternate route: `/v2/corporations/{corporation_id}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
5560        "operationId": "get_corporations_corporation_id",
5561        "parameters": [{
5562          "description": "An Eve corporation ID",
5563          "format": "int32",
5564          "in": "path",
5565          "name": "corporation_id",
5566          "required": true,
5567          "type": "integer"
5568        }, {
5569          "default": "tranquility",
5570          "description": "The server name you would like data from",
5571          "enum": ["tranquility", "singularity"],
5572          "in": "query",
5573          "name": "datasource",
5574          "type": "string"
5575        }],
5576        "responses": {
5577          "200": {
5578            "description": "Public data about a corporation",
5579            "examples": {
5580              "application/json": {
5581                "alliance_id": 434243723,
5582                "ceo_id": 180548812,
5583                "corporation_name": "C C P",
5584                "member_count": 656,
5585                "ticker": "-CCP-"
5586              }
5587            },
5588            "headers": {
5589              "Cache-Control": {
5590                "description": "The caching mechanism used",
5591                "type": "string"
5592              },
5593              "Expires": {
5594                "description": "RFC7231 formatted datetime string",
5595                "type": "string"
5596              },
5597              "Last-Modified": {
5598                "description": "RFC7231 formatted datetime string",
5599                "type": "string"
5600              }
5601            },
5602            "schema": {
5603              "description": "200 ok object",
5604              "properties": {
5605                "alliance_id": {
5606                  "description": "id of alliance that corporation is a member of, if any",
5607                  "format": "int32",
5608                  "title": "get_corporations_corporation_id_alliance_id",
5609                  "type": "integer"
5610                },
5611                "ceo_id": {
5612                  "description": "ceo_id integer",
5613                  "format": "int32",
5614                  "title": "get_corporations_corporation_id_ceo_id",
5615                  "type": "integer"
5616                },
5617                "corporation_name": {
5618                  "description": "the full name of the corporation",
5619                  "title": "get_corporations_corporation_id_corporation_name",
5620                  "type": "string"
5621                },
5622                "member_count": {
5623                  "description": "member_count integer",
5624                  "format": "int32",
5625                  "title": "get_corporations_corporation_id_member_count",
5626                  "type": "integer"
5627                },
5628                "ticker": {
5629                  "description": "the short name of the corporation",
5630                  "title": "get_corporations_corporation_id_ticker",
5631                  "type": "string"
5632                }
5633              },
5634              "required": ["corporation_name", "ticker", "member_count", "ceo_id"],
5635              "title": "get_corporations_corporation_id_ok",
5636              "type": "object"
5637            }
5638          },
5639          "404": {
5640            "description": "Corporation not found",
5641            "examples": {
5642              "application/json": {
5643                "error": "Not found message"
5644              }
5645            },
5646            "schema": {
5647              "description": "Not found",
5648              "properties": {
5649                "error": {
5650                  "description": "Not found message",
5651                  "title": "get_corporations_corporation_id_404_not_found",
5652                  "type": "string"
5653                }
5654              },
5655              "title": "get_corporations_corporation_id_not_found",
5656              "type": "object"
5657            }
5658          },
5659          "500": {
5660            "description": "Internal server error",
5661            "examples": {
5662              "application/json": {
5663                "error": "uncaught exception: IOError('out of memory')"
5664              }
5665            },
5666            "schema": {
5667              "description": "Internal server error",
5668              "properties": {
5669                "error": {
5670                  "description": "Internal server error message",
5671                  "title": "get_corporations_corporation_id_500_internal_server_error",
5672                  "type": "string"
5673                }
5674              },
5675              "title": "get_corporations_corporation_id_internal_server_error",
5676              "type": "object"
5677            }
5678          }
5679        },
5680        "summary": "Get corporation information",
5681        "tags": ["Corporation"]
5682      }
5683    },
5684    "/corporations/{corporation_id}/alliancehistory/": {
5685      "get": {
5686        "description": "Get a list of all the alliances a corporation has been a member of\n\n---\n\nAlternate route: `/v1/corporations/{corporation_id}/alliancehistory/`\n\nAlternate route: `/legacy/corporations/{corporation_id}/alliancehistory/`\n\nAlternate route: `/dev/corporations/{corporation_id}/alliancehistory/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
5687        "operationId": "get_corporations_corporation_id_alliancehistory",
5688        "parameters": [{
5689          "description": "An EVE corporation ID",
5690          "format": "int32",
5691          "in": "path",
5692          "name": "corporation_id",
5693          "required": true,
5694          "type": "integer"
5695        }, {
5696          "default": "tranquility",
5697          "description": "The server name you would like data from",
5698          "enum": ["tranquility", "singularity"],
5699          "in": "query",
5700          "name": "datasource",
5701          "type": "string"
5702        }],
5703        "responses": {
5704          "200": {
5705            "description": "Alliance history for the given corporation",
5706            "examples": {
5707              "application/json": [{
5708                "alliance": {
5709                  "alliance_id": 99000006,
5710                  "is_deleted": false
5711                },
5712                "record_id": 23,
5713                "start_date": "2016-10-25T14:46:00Z"
5714              }, {
5715                "record_id": 1,
5716                "start_date": "2015-07-06T20:56:00Z"
5717              }]
5718            },
5719            "headers": {
5720              "Cache-Control": {
5721                "description": "The caching mechanism used",
5722                "type": "string"
5723              },
5724              "Expires": {
5725                "description": "RFC7231 formatted datetime string",
5726                "type": "string"
5727              },
5728              "Last-Modified": {
5729                "description": "RFC7231 formatted datetime string",
5730                "type": "string"
5731              }
5732            },
5733            "schema": {
5734              "description": "200 ok array",
5735              "items": {
5736                "description": "200 ok object",
5737                "properties": {
5738                  "alliance": {
5739                    "description": "alliance object",
5740                    "properties": {
5741                      "alliance_id": {
5742                        "description": "alliance_id integer",
5743                        "format": "int32",
5744                        "title": "get_corporations_corporation_id_alliancehistory_alliance_id",
5745                        "type": "integer"
5746                      },
5747                      "is_deleted": {
5748                        "description": "True if the alliance has been deleted",
5749                        "title": "get_corporations_corporation_id_alliancehistory_is_deleted",
5750                        "type": "boolean"
5751                      }
5752                    },
5753                    "required": ["alliance_id", "is_deleted"],
5754                    "title": "get_corporations_corporation_id_alliancehistory_alliance",
5755                    "type": "object"
5756                  },
5757                  "record_id": {
5758                    "description": "An incrementing ID that can be used to canonically establish order of records in cases where dates may be ambiguous",
5759                    "format": "int32",
5760                    "title": "get_corporations_corporation_id_alliancehistory_record_id",
5761                    "type": "integer"
5762                  },
5763                  "start_date": {
5764                    "description": "start_date string",
5765                    "format": "date-time",
5766                    "title": "get_corporations_corporation_id_alliancehistory_start_date",
5767                    "type": "string"
5768                  }
5769                },
5770                "required": ["start_date", "record_id"],
5771                "title": "get_corporations_corporation_id_alliancehistory_200_ok",
5772                "type": "object"
5773              },
5774              "title": "get_corporations_corporation_id_alliancehistory_ok",
5775              "type": "array"
5776            }
5777          },
5778          "500": {
5779            "description": "Internal server error",
5780            "examples": {
5781              "application/json": {
5782                "error": "uncaught exception: IOError('out of memory')"
5783              }
5784            },
5785            "schema": {
5786              "description": "Internal server error",
5787              "properties": {
5788                "error": {
5789                  "description": "Internal server error message",
5790                  "title": "get_corporations_corporation_id_alliancehistory_500_internal_server_error",
5791                  "type": "string"
5792                }
5793              },
5794              "title": "get_corporations_corporation_id_alliancehistory_internal_server_error",
5795              "type": "object"
5796            }
5797          }
5798        },
5799        "summary": "Get alliance history",
5800        "tags": ["Corporation"]
5801      }
5802    },
5803    "/corporations/{corporation_id}/icons/": {
5804      "get": {
5805        "description": "Get the icon urls for a corporation\n\n---\n\nAlternate route: `/v1/corporations/{corporation_id}/icons/`\n\nAlternate route: `/legacy/corporations/{corporation_id}/icons/`\n\nAlternate route: `/dev/corporations/{corporation_id}/icons/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
5806        "operationId": "get_corporations_corporation_id_icons",
5807        "parameters": [{
5808          "description": "An EVE corporation ID",
5809          "format": "int32",
5810          "in": "path",
5811          "name": "corporation_id",
5812          "required": true,
5813          "type": "integer"
5814        }, {
5815          "default": "tranquility",
5816          "description": "The server name you would like data from",
5817          "enum": ["tranquility", "singularity"],
5818          "in": "query",
5819          "name": "datasource",
5820          "type": "string"
5821        }],
5822        "responses": {
5823          "200": {
5824            "description": "Urls for icons for the given corporation id and server",
5825            "examples": {
5826              "application/json": {
5827                "px128x128": "https://imageserver.eveonline.com/Corporation/1000010_128.png",
5828                "px256x256": "https://imageserver.eveonline.com/Corporation/1000010_256.png",
5829                "px64x64": "https://imageserver.eveonline.com/Corporation/1000010_64.png"
5830              }
5831            },
5832            "headers": {
5833              "Cache-Control": {
5834                "description": "The caching mechanism used",
5835                "type": "string"
5836              },
5837              "Expires": {
5838                "description": "RFC7231 formatted datetime string",
5839                "type": "string"
5840              },
5841              "Last-Modified": {
5842                "description": "RFC7231 formatted datetime string",
5843                "type": "string"
5844              }
5845            },
5846            "schema": {
5847              "description": "200 ok object",
5848              "properties": {
5849                "px128x128": {
5850                  "description": "px128x128 string",
5851                  "title": "get_corporations_corporation_id_icons_px128x128",
5852                  "type": "string"
5853                },
5854                "px256x256": {
5855                  "description": "px256x256 string",
5856                  "title": "get_corporations_corporation_id_icons_px256x256",
5857                  "type": "string"
5858                },
5859                "px64x64": {
5860                  "description": "px64x64 string",
5861                  "title": "get_corporations_corporation_id_icons_px64x64",
5862                  "type": "string"
5863                }
5864              },
5865              "title": "get_corporations_corporation_id_icons_ok",
5866              "type": "object"
5867            }
5868          },
5869          "404": {
5870            "description": "No image server for this datasource",
5871            "examples": {
5872              "application/json": {
5873                "error": "No image server for this datasource"
5874              }
5875            },
5876            "schema": {
5877              "description": "No image server for this datasource",
5878              "properties": {
5879                "error": {
5880                  "description": "error message",
5881                  "title": "get_corporations_corporation_id_icons_error",
5882                  "type": "string"
5883                }
5884              },
5885              "title": "get_corporations_corporation_id_icons_not_found",
5886              "type": "object"
5887            }
5888          },
5889          "500": {
5890            "description": "Internal server error",
5891            "examples": {
5892              "application/json": {
5893                "error": "uncaught exception: IOError('out of memory')"
5894              }
5895            },
5896            "schema": {
5897              "description": "Internal server error",
5898              "properties": {
5899                "error": {
5900                  "description": "Internal server error message",
5901                  "title": "get_corporations_corporation_id_icons_500_internal_server_error",
5902                  "type": "string"
5903                }
5904              },
5905              "title": "get_corporations_corporation_id_icons_internal_server_error",
5906              "type": "object"
5907            }
5908          }
5909        },
5910        "summary": "Get corporation icon",
5911        "tags": ["Corporation"]
5912      }
5913    },
5914    "/corporations/{corporation_id}/members/": {
5915      "get": {
5916        "description": "Read the current list of members if the calling character is a member.\n\n---\n\nAlternate route: `/v2/corporations/{corporation_id}/members/`\n\nAlternate route: `/legacy/corporations/{corporation_id}/members/`\n\nAlternate route: `/dev/corporations/{corporation_id}/members/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
5917        "operationId": "get_corporations_corporation_id_members",
5918        "parameters": [{
5919          "description": "A corporation ID",
5920          "format": "int32",
5921          "in": "path",
5922          "name": "corporation_id",
5923          "required": true,
5924          "type": "integer"
5925        }, {
5926          "default": "tranquility",
5927          "description": "The server name you would like data from",
5928          "enum": ["tranquility", "singularity"],
5929          "in": "query",
5930          "name": "datasource",
5931          "type": "string"
5932        }],
5933        "responses": {
5934          "200": {
5935            "description": "List of member character IDs",
5936            "examples": {
5937              "application/json": [{
5938                "character_id": 90000001
5939              }, {
5940                "character_id": 90000002
5941              }]
5942            },
5943            "headers": {
5944              "Cache-Control": {
5945                "description": "The caching mechanism used",
5946                "type": "string"
5947              },
5948              "Expires": {
5949                "description": "RFC7231 formatted datetime string",
5950                "type": "string"
5951              },
5952              "Last-Modified": {
5953                "description": "RFC7231 formatted datetime string",
5954                "type": "string"
5955              }
5956            },
5957            "schema": {
5958              "description": "200 ok array",
5959              "items": {
5960                "description": "200 ok object",
5961                "properties": {
5962                  "character_id": {
5963                    "description": "character_id integer",
5964                    "format": "int32",
5965                    "title": "get_corporations_corporation_id_members_character_id",
5966                    "type": "integer"
5967                  }
5968                },
5969                "required": ["character_id"],
5970                "title": "get_corporations_corporation_id_members_200_ok",
5971                "type": "object"
5972              },
5973              "title": "get_corporations_corporation_id_members_ok",
5974              "type": "array"
5975            }
5976          },
5977          "403": {
5978            "description": "Forbidden",
5979            "examples": {
5980              "application/json": {
5981                "error": "Token is not valid for scope(s): esi-corporations.read_corporation_membership.v1"
5982              }
5983            },
5984            "schema": {
5985              "description": "Forbidden",
5986              "properties": {
5987                "error": {
5988                  "description": "Forbidden message",
5989                  "title": "get_corporations_corporation_id_members_403_forbidden",
5990                  "type": "string"
5991                }
5992              },
5993              "title": "get_corporations_corporation_id_members_forbidden",
5994              "type": "object"
5995            }
5996          },
5997          "500": {
5998            "description": "Internal server error",
5999            "examples": {
6000              "application/json": {
6001                "error": "uncaught exception: IOError('out of memory')"
6002              }
6003            },
6004            "schema": {
6005              "description": "Internal server error",
6006              "properties": {
6007                "error": {
6008                  "description": "Internal server error message",
6009                  "title": "get_corporations_corporation_id_members_500_internal_server_error",
6010                  "type": "string"
6011                }
6012              },
6013              "title": "get_corporations_corporation_id_members_internal_server_error",
6014              "type": "object"
6015            }
6016          }
6017        },
6018        "security": [{
6019          "evesso": ["esi-corporations.read_corporation_membership.v1"]
6020        }],
6021        "summary": "Get corporation members",
6022        "tags": ["Corporation"]
6023      }
6024    },
6025    "/corporations/{corporation_id}/roles/": {
6026      "get": {
6027        "description": "Return the roles of all members if the character has the personnel manager role or any grantable role.\n\n---\n\nAlternate route: `/v1/corporations/{corporation_id}/roles/`\n\nAlternate route: `/legacy/corporations/{corporation_id}/roles/`\n\nAlternate route: `/dev/corporations/{corporation_id}/roles/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
6028        "operationId": "get_corporations_corporation_id_roles",
6029        "parameters": [{
6030          "description": "A corporation ID",
6031          "format": "int32",
6032          "in": "path",
6033          "name": "corporation_id",
6034          "required": true,
6035          "type": "integer"
6036        }, {
6037          "default": "tranquility",
6038          "description": "The server name you would like data from",
6039          "enum": ["tranquility", "singularity"],
6040          "in": "query",
6041          "name": "datasource",
6042          "type": "string"
6043        }],
6044        "responses": {
6045          "200": {
6046            "description": "List of member character ID's and roles",
6047            "examples": {
6048              "application/json": [{
6049                "character_id": 1000171,
6050                "roles": ["Director", "Station_Manager"]
6051              }]
6052            },
6053            "headers": {
6054              "Cache-Control": {
6055                "description": "The caching mechanism used",
6056                "type": "string"
6057              },
6058              "Expires": {
6059                "description": "RFC7231 formatted datetime string",
6060                "type": "string"
6061              },
6062              "Last-Modified": {
6063                "description": "RFC7231 formatted datetime string",
6064                "type": "string"
6065              }
6066            },
6067            "schema": {
6068              "description": "200 ok array",
6069              "items": {
6070                "description": "200 ok object",
6071                "properties": {
6072                  "character_id": {
6073                    "description": "character_id integer",
6074                    "format": "int32",
6075                    "title": "get_corporations_corporation_id_roles_character_id",
6076                    "type": "integer"
6077                  },
6078                  "grantable_roles": {
6079                    "description": "grantable_roles array",
6080                    "items": {
6081                      "description": "grantable_role string",
6082                      "enum": ["Director", "Personnel_Manager", "Accountant", "Security_Officer", "Factory_Manager", "Station_Manager", "Auditor", "Hangar_Take_1", "Hangar_Take_2", "Hangar_Take_3", "Hangar_Take_4", "Hangar_Take_5", "Hangar_Take_6", "Hangar_Take_7", "Hangar_Query_1", "Hangar_Query_2", "Hangar_Query_3", "Hangar_Query_4", "Hangar_Query_5", "Hangar_Query_6", "Hangar_Query_7", "Account_Take_1", "Account_Take_2", "Account_Take_3", "Account_Take_4", "Account_Take_5", "Account_Take_6", "Account_Take_7", "Diplomat", "Config_Equipment", "Container_Take_1", "Container_Take_2", "Container_Take_3", "Container_Take_4", "Container_Take_5", "Container_Take_6", "Container_Take_7", "Rent_Office", "Rent_Factory_Facility", "Rent_Research_Facility", "Junior_Accountant", "Config_Starbase_Equipment", "Trader", "Communications_Officer", "Contract_Manager", "Starbase_Defense_Operator", "Starbase_Fuel_Technician", "Fitting_Manager", "Terrestrial_Combat_Officer", "Terrestrial_Logistics_Officer"],
6083                      "title": "get_corporations_corporation_id_roles_grantable_role",
6084                      "type": "string",
6085                      "uniqueItems": true
6086                    },
6087                    "title": "get_corporations_corporation_id_roles_grantable_roles",
6088                    "type": "array"
6089                  },
6090                  "grantable_roles_at_base": {
6091                    "description": "grantable_roles_at_base array",
6092                    "items": {
6093                      "description": "grantable_roles_at_base string",
6094                      "enum": ["Director", "Personnel_Manager", "Accountant", "Security_Officer", "Factory_Manager", "Station_Manager", "Auditor", "Hangar_Take_1", "Hangar_Take_2", "Hangar_Take_3", "Hangar_Take_4", "Hangar_Take_5", "Hangar_Take_6", "Hangar_Take_7", "Hangar_Query_1", "Hangar_Query_2", "Hangar_Query_3", "Hangar_Query_4", "Hangar_Query_5", "Hangar_Query_6", "Hangar_Query_7", "Account_Take_1", "Account_Take_2", "Account_Take_3", "Account_Take_4", "Account_Take_5", "Account_Take_6", "Account_Take_7", "Diplomat", "Config_Equipment", "Container_Take_1", "Container_Take_2", "Container_Take_3", "Container_Take_4", "Container_Take_5", "Container_Take_6", "Container_Take_7", "Rent_Office", "Rent_Factory_Facility", "Rent_Research_Facility", "Junior_Accountant", "Config_Starbase_Equipment", "Trader", "Communications_Officer", "Contract_Manager", "Starbase_Defense_Operator", "Starbase_Fuel_Technician", "Fitting_Manager", "Terrestrial_Combat_Officer", "Terrestrial_Logistics_Officer"],
6095                      "title": "get_corporations_corporation_id_roles_grantable_roles_at_base",
6096                      "type": "string",
6097                      "uniqueItems": true
6098                    },
6099                    "title": "get_corporations_corporation_id_roles_grantable_roles_at_base",
6100                    "type": "array"
6101                  },
6102                  "grantable_roles_at_hq": {
6103                    "description": "grantable_roles_at_hq array",
6104                    "items": {
6105                      "description": "grantable_roles_at_hq string",
6106                      "enum": ["Director", "Personnel_Manager", "Accountant", "Security_Officer", "Factory_Manager", "Station_Manager", "Auditor", "Hangar_Take_1", "Hangar_Take_2", "Hangar_Take_3", "Hangar_Take_4", "Hangar_Take_5", "Hangar_Take_6", "Hangar_Take_7", "Hangar_Query_1", "Hangar_Query_2", "Hangar_Query_3", "Hangar_Query_4", "Hangar_Query_5", "Hangar_Query_6", "Hangar_Query_7", "Account_Take_1", "Account_Take_2", "Account_Take_3", "Account_Take_4", "Account_Take_5", "Account_Take_6", "Account_Take_7", "Diplomat", "Config_Equipment", "Container_Take_1", "Container_Take_2", "Container_Take_3", "Container_Take_4", "Container_Take_5", "Container_Take_6", "Container_Take_7", "Rent_Office", "Rent_Factory_Facility", "Rent_Research_Facility", "Junior_Accountant", "Config_Starbase_Equipment", "Trader", "Communications_Officer", "Contract_Manager", "Starbase_Defense_Operator", "Starbase_Fuel_Technician", "Fitting_Manager", "Terrestrial_Combat_Officer", "Terrestrial_Logistics_Officer"],
6107                      "title": "get_corporations_corporation_id_roles_grantable_roles_at_hq",
6108                      "type": "string",
6109                      "uniqueItems": true
6110                    },
6111                    "title": "get_corporations_corporation_id_roles_grantable_roles_at_hq",
6112                    "type": "array"
6113                  },
6114                  "grantable_roles_at_other": {
6115                    "description": "grantable_roles_at_other array",
6116                    "items": {
6117                      "description": "grantable_roles_at_other string",
6118                      "enum": ["Director", "Personnel_Manager", "Accountant", "Security_Officer", "Factory_Manager", "Station_Manager", "Auditor", "Hangar_Take_1", "Hangar_Take_2", "Hangar_Take_3", "Hangar_Take_4", "Hangar_Take_5", "Hangar_Take_6", "Hangar_Take_7", "Hangar_Query_1", "Hangar_Query_2", "Hangar_Query_3", "Hangar_Query_4", "Hangar_Query_5", "Hangar_Query_6", "Hangar_Query_7", "Account_Take_1", "Account_Take_2", "Account_Take_3", "Account_Take_4", "Account_Take_5", "Account_Take_6", "Account_Take_7", "Diplomat", "Config_Equipment", "Container_Take_1", "Container_Take_2", "Container_Take_3", "Container_Take_4", "Container_Take_5", "Container_Take_6", "Container_Take_7", "Rent_Office", "Rent_Factory_Facility", "Rent_Research_Facility", "Junior_Accountant", "Config_Starbase_Equipment", "Trader", "Communications_Officer", "Contract_Manager", "Starbase_Defense_Operator", "Starbase_Fuel_Technician", "Fitting_Manager", "Terrestrial_Combat_Officer", "Terrestrial_Logistics_Officer"],
6119                      "title": "get_corporations_corporation_id_roles_grantable_roles_at_other",
6120                      "type": "string",
6121                      "uniqueItems": true
6122                    },
6123                    "title": "get_corporations_corporation_id_roles_grantable_roles_at_other",
6124                    "type": "array"
6125                  },
6126                  "roles": {
6127                    "description": "roles array",
6128                    "items": {
6129                      "description": "role string",
6130                      "enum": ["Director", "Personnel_Manager", "Accountant", "Security_Officer", "Factory_Manager", "Station_Manager", "Auditor", "Hangar_Take_1", "Hangar_Take_2", "Hangar_Take_3", "Hangar_Take_4", "Hangar_Take_5", "Hangar_Take_6", "Hangar_Take_7", "Hangar_Query_1", "Hangar_Query_2", "Hangar_Query_3", "Hangar_Query_4", "Hangar_Query_5", "Hangar_Query_6", "Hangar_Query_7", "Account_Take_1", "Account_Take_2", "Account_Take_3", "Account_Take_4", "Account_Take_5", "Account_Take_6", "Account_Take_7", "Diplomat", "Config_Equipment", "Container_Take_1", "Container_Take_2", "Container_Take_3", "Container_Take_4", "Container_Take_5", "Container_Take_6", "Container_Take_7", "Rent_Office", "Rent_Factory_Facility", "Rent_Research_Facility", "Junior_Accountant", "Config_Starbase_Equipment", "Trader", "Communications_Officer", "Contract_Manager", "Starbase_Defense_Operator", "Starbase_Fuel_Technician", "Fitting_Manager", "Terrestrial_Combat_Officer", "Terrestrial_Logistics_Officer"],
6131                      "title": "get_corporations_corporation_id_roles_role",
6132                      "type": "string",
6133                      "uniqueItems": true
6134                    },
6135                    "title": "get_corporations_corporation_id_roles_roles",
6136                    "type": "array"
6137                  },
6138                  "roles_at_base": {
6139                    "description": "roles_at_base array",
6140                    "items": {
6141                      "description": "roles_at_base string",
6142                      "enum": ["Director", "Personnel_Manager", "Accountant", "Security_Officer", "Factory_Manager", "Station_Manager", "Auditor", "Hangar_Take_1", "Hangar_Take_2", "Hangar_Take_3", "Hangar_Take_4", "Hangar_Take_5", "Hangar_Take_6", "Hangar_Take_7", "Hangar_Query_1", "Hangar_Query_2", "Hangar_Query_3", "Hangar_Query_4", "Hangar_Query_5", "Hangar_Query_6", "Hangar_Query_7", "Account_Take_1", "Account_Take_2", "Account_Take_3", "Account_Take_4", "Account_Take_5", "Account_Take_6", "Account_Take_7", "Diplomat", "Config_Equipment", "Container_Take_1", "Container_Take_2", "Container_Take_3", "Container_Take_4", "Container_Take_5", "Container_Take_6", "Container_Take_7", "Rent_Office", "Rent_Factory_Facility", "Rent_Research_Facility", "Junior_Accountant", "Config_Starbase_Equipment", "Trader", "Communications_Officer", "Contract_Manager", "Starbase_Defense_Operator", "Starbase_Fuel_Technician", "Fitting_Manager", "Terrestrial_Combat_Officer", "Terrestrial_Logistics_Officer"],
6143                      "title": "get_corporations_corporation_id_roles_roles_at_base",
6144                      "type": "string",
6145                      "uniqueItems": true
6146                    },
6147                    "title": "get_corporations_corporation_id_roles_roles_at_base",
6148                    "type": "array"
6149                  },
6150                  "roles_at_hq": {
6151                    "description": "roles_at_hq array",
6152                    "items": {
6153                      "description": "roles_at_hq string",
6154                      "enum": ["Director", "Personnel_Manager", "Accountant", "Security_Officer", "Factory_Manager", "Station_Manager", "Auditor", "Hangar_Take_1", "Hangar_Take_2", "Hangar_Take_3", "Hangar_Take_4", "Hangar_Take_5", "Hangar_Take_6", "Hangar_Take_7", "Hangar_Query_1", "Hangar_Query_2", "Hangar_Query_3", "Hangar_Query_4", "Hangar_Query_5", "Hangar_Query_6", "Hangar_Query_7", "Account_Take_1", "Account_Take_2", "Account_Take_3", "Account_Take_4", "Account_Take_5", "Account_Take_6", "Account_Take_7", "Diplomat", "Config_Equipment", "Container_Take_1", "Container_Take_2", "Container_Take_3", "Container_Take_4", "Container_Take_5", "Container_Take_6", "Container_Take_7", "Rent_Office", "Rent_Factory_Facility", "Rent_Research_Facility", "Junior_Accountant", "Config_Starbase_Equipment", "Trader", "Communications_Officer", "Contract_Manager", "Starbase_Defense_Operator", "Starbase_Fuel_Technician", "Fitting_Manager", "Terrestrial_Combat_Officer", "Terrestrial_Logistics_Officer"],
6155                      "title": "get_corporations_corporation_id_roles_roles_at_hq",
6156                      "type": "string",
6157                      "uniqueItems": true
6158                    },
6159                    "title": "get_corporations_corporation_id_roles_roles_at_hq",
6160                    "type": "array"
6161                  },
6162                  "roles_at_other": {
6163                    "description": "roles_at_other array",
6164                    "items": {
6165                      "description": "roles_at_other string",
6166                      "enum": ["Director", "Personnel_Manager", "Accountant", "Security_Officer", "Factory_Manager", "Station_Manager", "Auditor", "Hangar_Take_1", "Hangar_Take_2", "Hangar_Take_3", "Hangar_Take_4", "Hangar_Take_5", "Hangar_Take_6", "Hangar_Take_7", "Hangar_Query_1", "Hangar_Query_2", "Hangar_Query_3", "Hangar_Query_4", "Hangar_Query_5", "Hangar_Query_6", "Hangar_Query_7", "Account_Take_1", "Account_Take_2", "Account_Take_3", "Account_Take_4", "Account_Take_5", "Account_Take_6", "Account_Take_7", "Diplomat", "Config_Equipment", "Container_Take_1", "Container_Take_2", "Container_Take_3", "Container_Take_4", "Container_Take_5", "Container_Take_6", "Container_Take_7", "Rent_Office", "Rent_Factory_Facility", "Rent_Research_Facility", "Junior_Accountant", "Config_Starbase_Equipment", "Trader", "Communications_Officer", "Contract_Manager", "Starbase_Defense_Operator", "Starbase_Fuel_Technician", "Fitting_Manager", "Terrestrial_Combat_Officer", "Terrestrial_Logistics_Officer"],
6167                      "title": "get_corporations_corporation_id_roles_roles_at_other",
6168                      "type": "string",
6169                      "uniqueItems": true
6170                    },
6171                    "title": "get_corporations_corporation_id_roles_roles_at_other",
6172                    "type": "array"
6173                  }
6174                },
6175                "required": ["character_id"],
6176                "title": "get_corporations_corporation_id_roles_200_ok",
6177                "type": "object"
6178              },
6179              "title": "get_corporations_corporation_id_roles_ok",
6180              "type": "array"
6181            }
6182          },
6183          "403": {
6184            "description": "Forbidden",
6185            "examples": {
6186              "application/json": {
6187                "error": "Token is not valid for scope(s): esi-corporations.read_corporation_membership.v1"
6188              }
6189            },
6190            "schema": {
6191              "description": "Forbidden",
6192              "properties": {
6193                "error": {
6194                  "description": "Forbidden message",
6195                  "title": "get_corporations_corporation_id_roles_403_forbidden",
6196                  "type": "string"
6197                }
6198              },
6199              "title": "get_corporations_corporation_id_roles_forbidden",
6200              "type": "object"
6201            }
6202          },
6203          "500": {
6204            "description": "Internal server error",
6205            "examples": {
6206              "application/json": {
6207                "error": "uncaught exception: IOError('out of memory')"
6208              }
6209            },
6210            "schema": {
6211              "description": "Internal server error",
6212              "properties": {
6213                "error": {
6214                  "description": "Internal server error message",
6215                  "title": "get_corporations_corporation_id_roles_500_internal_server_error",
6216                  "type": "string"
6217                }
6218              },
6219              "title": "get_corporations_corporation_id_roles_internal_server_error",
6220              "type": "object"
6221            }
6222          }
6223        },
6224        "security": [{
6225          "evesso": ["esi-corporations.read_corporation_membership.v1"]
6226        }],
6227        "summary": "Get corporation member roles",
6228        "tags": ["Corporation"]
6229      }
6230    },
6231    "/fleets/{fleet_id}/": {
6232      "get": {
6233        "description": "Return details about a fleet\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/`\n\nAlternate route: `/dev/fleets/{fleet_id}/`\n\n\n---\n\nThis route is cached for up to 5 seconds",
6234        "operationId": "get_fleets_fleet_id",
6235        "parameters": [{
6236          "description": "ID for a fleet",
6237          "format": "int64",
6238          "in": "path",
6239          "name": "fleet_id",
6240          "required": true,
6241          "type": "integer"
6242        }, {
6243          "default": "tranquility",
6244          "description": "The server name you would like data from",
6245          "enum": ["tranquility", "singularity"],
6246          "in": "query",
6247          "name": "datasource",
6248          "type": "string"
6249        }],
6250        "responses": {
6251          "200": {
6252            "description": "Details about a fleet",
6253            "examples": {
6254              "application/json": {
6255                "is_free_move": false,
6256                "is_registered": false,
6257                "is_voice_enabled": false,
6258                "motd": "This is an <b>awesome</b> fleet!"
6259              }
6260            },
6261            "headers": {
6262              "Cache-Control": {
6263                "description": "The caching mechanism used",
6264                "type": "string"
6265              },
6266              "Expires": {
6267                "description": "RFC7231 formatted datetime string",
6268                "type": "string"
6269              },
6270              "Last-Modified": {
6271                "description": "RFC7231 formatted datetime string",
6272                "type": "string"
6273              }
6274            },
6275            "schema": {
6276              "description": "200 ok object",
6277              "properties": {
6278                "is_free_move": {
6279                  "description": "Is free-move enabled",
6280                  "title": "get_fleets_fleet_id_is_free_move",
6281                  "type": "boolean"
6282                },
6283                "is_registered": {
6284                  "description": "Does the fleet have an active fleet advertisement",
6285                  "title": "get_fleets_fleet_id_is_registered",
6286                  "type": "boolean"
6287                },
6288                "is_voice_enabled": {
6289                  "description": "Is EVE Voice enabled",
6290                  "title": "get_fleets_fleet_id_is_voice_enabled",
6291                  "type": "boolean"
6292                },
6293                "motd": {
6294                  "description": "Fleet MOTD in CCP flavoured HTML",
6295                  "title": "get_fleets_fleet_id_motd",
6296                  "type": "string"
6297                }
6298              },
6299              "required": ["motd", "is_free_move", "is_registered", "is_voice_enabled"],
6300              "title": "get_fleets_fleet_id_ok",
6301              "type": "object"
6302            }
6303          },
6304          "403": {
6305            "description": "Forbidden",
6306            "examples": {
6307              "application/json": {
6308                "error": "Token is not valid for scope(s): esi-fleets.read_fleet.v1"
6309              }
6310            },
6311            "schema": {
6312              "description": "Forbidden",
6313              "properties": {
6314                "error": {
6315                  "description": "Forbidden message",
6316                  "title": "get_fleets_fleet_id_403_forbidden",
6317                  "type": "string"
6318                }
6319              },
6320              "title": "get_fleets_fleet_id_forbidden",
6321              "type": "object"
6322            }
6323          },
6324          "404": {
6325            "description": "The fleet does not exist or you don't have access to it",
6326            "examples": {
6327              "application/json": {
6328                "error": "fleet 123 not found"
6329              }
6330            },
6331            "schema": {
6332              "description": "404 not found object",
6333              "properties": {
6334                "error": {
6335                  "description": "error message",
6336                  "title": "get_fleets_fleet_id_error",
6337                  "type": "string"
6338                }
6339              },
6340              "title": "get_fleets_fleet_id_not_found",
6341              "type": "object"
6342            }
6343          },
6344          "500": {
6345            "description": "Internal server error",
6346            "examples": {
6347              "application/json": {
6348                "error": "uncaught exception: IOError('out of memory')"
6349              }
6350            },
6351            "schema": {
6352              "description": "Internal server error",
6353              "properties": {
6354                "error": {
6355                  "description": "Internal server error message",
6356                  "title": "get_fleets_fleet_id_500_internal_server_error",
6357                  "type": "string"
6358                }
6359              },
6360              "title": "get_fleets_fleet_id_internal_server_error",
6361              "type": "object"
6362            }
6363          }
6364        },
6365        "security": [{
6366          "evesso": ["esi-fleets.read_fleet.v1"]
6367        }],
6368        "summary": "Get fleet information",
6369        "tags": ["Fleets"]
6370      },
6371      "put": {
6372        "description": "Update settings about a fleet\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/`\n\nAlternate route: `/dev/fleets/{fleet_id}/`\n",
6373        "operationId": "put_fleets_fleet_id",
6374        "parameters": [{
6375          "description": "ID for a fleet",
6376          "format": "int64",
6377          "in": "path",
6378          "name": "fleet_id",
6379          "required": true,
6380          "type": "integer"
6381        }, {
6382          "description": "What to update for this fleet",
6383          "in": "body",
6384          "name": "new_settings",
6385          "required": true,
6386          "schema": {
6387            "description": "new_settings object",
6388            "properties": {
6389              "is_free_move": {
6390                "description": "Should free-move be enabled in the fleet",
6391                "title": "put_fleets_fleet_id_is_free_move",
6392                "type": "boolean"
6393              },
6394              "motd": {
6395                "description": "New fleet MOTD in CCP flavoured HTML",
6396                "title": "put_fleets_fleet_id_motd",
6397                "type": "string"
6398              }
6399            },
6400            "title": "put_fleets_fleet_id_new_settings",
6401            "type": "object"
6402          }
6403        }, {
6404          "default": "tranquility",
6405          "description": "The server name you would like data from",
6406          "enum": ["tranquility", "singularity"],
6407          "in": "query",
6408          "name": "datasource",
6409          "type": "string"
6410        }],
6411        "responses": {
6412          "204": {
6413            "description": "Fleet updated"
6414          },
6415          "400": {
6416            "description": "Invalid request body",
6417            "examples": {
6418              "application/json": {
6419                "error": "Bad request message"
6420              }
6421            },
6422            "schema": {
6423              "description": "Bad request",
6424              "properties": {
6425                "error": {
6426                  "description": "Bad request message",
6427                  "title": "put_fleets_fleet_id_400_bad_request",
6428                  "type": "string"
6429                }
6430              },
6431              "title": "put_fleets_fleet_id_bad_request",
6432              "type": "object"
6433            }
6434          },
6435          "403": {
6436            "description": "Forbidden",
6437            "examples": {
6438              "application/json": {
6439                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
6440              }
6441            },
6442            "schema": {
6443              "description": "Forbidden",
6444              "properties": {
6445                "error": {
6446                  "description": "Forbidden message",
6447                  "title": "put_fleets_fleet_id_403_forbidden",
6448                  "type": "string"
6449                }
6450              },
6451              "title": "put_fleets_fleet_id_forbidden",
6452              "type": "object"
6453            }
6454          },
6455          "404": {
6456            "description": "The fleet does not exist or you don't have access to it",
6457            "examples": {
6458              "application/json": {
6459                "error": "fleet 123 not found"
6460              }
6461            },
6462            "schema": {
6463              "description": "404 not found object",
6464              "properties": {
6465                "error": {
6466                  "description": "Error message",
6467                  "title": "put_fleets_fleet_id_error",
6468                  "type": "string"
6469                }
6470              },
6471              "title": "put_fleets_fleet_id_not_found",
6472              "type": "object"
6473            }
6474          },
6475          "500": {
6476            "description": "Internal server error",
6477            "examples": {
6478              "application/json": {
6479                "error": "uncaught exception: IOError('out of memory')"
6480              }
6481            },
6482            "schema": {
6483              "description": "Internal server error",
6484              "properties": {
6485                "error": {
6486                  "description": "Internal server error message",
6487                  "title": "put_fleets_fleet_id_500_internal_server_error",
6488                  "type": "string"
6489                }
6490              },
6491              "title": "put_fleets_fleet_id_internal_server_error",
6492              "type": "object"
6493            }
6494          }
6495        },
6496        "security": [{
6497          "evesso": ["esi-fleets.write_fleet.v1"]
6498        }],
6499        "summary": "Update fleet",
6500        "tags": ["Fleets"]
6501      }
6502    },
6503    "/fleets/{fleet_id}/members/": {
6504      "get": {
6505        "description": "Return information about fleet members\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/members/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/members/`\n\nAlternate route: `/dev/fleets/{fleet_id}/members/`\n\n\n---\n\nThis route is cached for up to 5 seconds",
6506        "operationId": "get_fleets_fleet_id_members",
6507        "parameters": [{
6508          "description": "ID for a fleet",
6509          "format": "int64",
6510          "in": "path",
6511          "name": "fleet_id",
6512          "required": true,
6513          "type": "integer"
6514        }, {
6515          "default": "en",
6516          "description": "Language to use in the response",
6517          "enum": ["de", "en", "fr", "ja", "ru", "zh"],
6518          "in": "header",
6519          "name": "Accept-Language",
6520          "type": "string"
6521        }, {
6522          "default": "tranquility",
6523          "description": "The server name you would like data from",
6524          "enum": ["tranquility", "singularity"],
6525          "in": "query",
6526          "name": "datasource",
6527          "type": "string"
6528        }],
6529        "responses": {
6530          "200": {
6531            "description": "A list of fleet members",
6532            "examples": {
6533              "application/json": [{
6534                "character_id": 93265215,
6535                "join_time": "2016-04-29T12:34:56Z",
6536                "role": "squad_commander",
6537                "role_name": "Squad Commander (Boss)",
6538                "ship_type_id": 33328,
6539                "solar_system_id": 30003729,
6540                "squad_id": 3129411261968,
6541                "station_id": 61000180,
6542                "takes_fleet_warp": true,
6543                "wing_id": 2073711261968
6544              }]
6545            },
6546            "headers": {
6547              "Cache-Control": {
6548                "description": "The caching mechanism used",
6549                "type": "string"
6550              },
6551              "Content-Language": {
6552                "description": "The language used in the response",
6553                "enum": ["de", "en", "fr", "ja", "ru", "zh"],
6554                "type": "string"
6555              },
6556              "Expires": {
6557                "description": "RFC7231 formatted datetime string",
6558                "type": "string"
6559              },
6560              "Last-Modified": {
6561                "description": "RFC7231 formatted datetime string",
6562                "type": "string"
6563              }
6564            },
6565            "schema": {
6566              "description": "200 ok array",
6567              "items": {
6568                "description": "200 ok object",
6569                "properties": {
6570                  "character_id": {
6571                    "description": "character_id integer",
6572                    "format": "int32",
6573                    "title": "get_fleets_fleet_id_members_character_id",
6574                    "type": "integer"
6575                  },
6576                  "join_time": {
6577                    "description": "join_time string",
6578                    "format": "date-time",
6579                    "title": "get_fleets_fleet_id_members_join_time",
6580                    "type": "string"
6581                  },
6582                  "role": {
6583                    "description": "Member\u2019s role in fleet",
6584                    "enum": ["fleet_commander", "wing_commander", "squad_commander", "squad_member"],
6585                    "title": "get_fleets_fleet_id_members_role",
6586                    "type": "string"
6587                  },
6588                  "role_name": {
6589                    "description": "Localized role names",
6590                    "title": "get_fleets_fleet_id_members_role_name",
6591                    "type": "string"
6592                  },
6593                  "ship_type_id": {
6594                    "description": "ship_type_id integer",
6595                    "format": "int32",
6596                    "title": "get_fleets_fleet_id_members_ship_type_id",
6597                    "type": "integer"
6598                  },
6599                  "solar_system_id": {
6600                    "description": "Solar system the member is located in",
6601                    "format": "int32",
6602                    "title": "get_fleets_fleet_id_members_solar_system_id",
6603                    "type": "integer"
6604                  },
6605                  "squad_id": {
6606                    "description": "ID of the squad the member is in. If not applicable, will be set to -1",
6607                    "format": "int64",
6608                    "title": "get_fleets_fleet_id_members_squad_id",
6609                    "type": "integer"
6610                  },
6611                  "station_id": {
6612                    "description": "Station in which the member is docked in, if applicable",
6613                    "format": "int64",
6614                    "title": "get_fleets_fleet_id_members_station_id",
6615                    "type": "integer"
6616                  },
6617                  "takes_fleet_warp": {
6618                    "description": "Whether the member take fleet warps",
6619                    "title": "get_fleets_fleet_id_members_takes_fleet_warp",
6620                    "type": "boolean"
6621                  },
6622                  "wing_id": {
6623                    "description": "ID of the wing the member is in. If not applicable, will be set to -1",
6624                    "format": "int64",
6625                    "title": "get_fleets_fleet_id_members_wing_id",
6626                    "type": "integer"
6627                  }
6628                },
6629                "required": ["character_id", "ship_type_id", "wing_id", "squad_id", "role", "role_name", "join_time", "takes_fleet_warp", "solar_system_id"],
6630                "title": "get_fleets_fleet_id_members_200_ok",
6631                "type": "object"
6632              },
6633              "title": "get_fleets_fleet_id_members_ok",
6634              "type": "array"
6635            }
6636          },
6637          "403": {
6638            "description": "Forbidden",
6639            "examples": {
6640              "application/json": {
6641                "error": "Token is not valid for scope(s): esi-fleets.read_fleet.v1"
6642              }
6643            },
6644            "schema": {
6645              "description": "Forbidden",
6646              "properties": {
6647                "error": {
6648                  "description": "Forbidden message",
6649                  "title": "get_fleets_fleet_id_members_403_forbidden",
6650                  "type": "string"
6651                }
6652              },
6653              "title": "get_fleets_fleet_id_members_forbidden",
6654              "type": "object"
6655            }
6656          },
6657          "404": {
6658            "description": "The fleet does not exist or you don't have access to it",
6659            "examples": {
6660              "application/json": {
6661                "error": "fleet 123 not found"
6662              }
6663            },
6664            "schema": {
6665              "description": "404 not found object",
6666              "properties": {
6667                "error": {
6668                  "description": "error message",
6669                  "title": "get_fleets_fleet_id_members_error",
6670                  "type": "string"
6671                }
6672              },
6673              "title": "get_fleets_fleet_id_members_not_found",
6674              "type": "object"
6675            }
6676          },
6677          "500": {
6678            "description": "Internal server error",
6679            "examples": {
6680              "application/json": {
6681                "error": "uncaught exception: IOError('out of memory')"
6682              }
6683            },
6684            "schema": {
6685              "description": "Internal server error",
6686              "properties": {
6687                "error": {
6688                  "description": "Internal server error message",
6689                  "title": "get_fleets_fleet_id_members_500_internal_server_error",
6690                  "type": "string"
6691                }
6692              },
6693              "title": "get_fleets_fleet_id_members_internal_server_error",
6694              "type": "object"
6695            }
6696          }
6697        },
6698        "security": [{
6699          "evesso": ["esi-fleets.read_fleet.v1"]
6700        }],
6701        "summary": "Get fleet members",
6702        "tags": ["Fleets"]
6703      },
6704      "post": {
6705        "description": "Invite a character into the fleet, if a character has a CSPA charge set, it is not possible to invite them to the fleet using ESI\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/members/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/members/`\n\nAlternate route: `/dev/fleets/{fleet_id}/members/`\n",
6706        "operationId": "post_fleets_fleet_id_members",
6707        "parameters": [{
6708          "description": "ID for a fleet",
6709          "format": "int64",
6710          "in": "path",
6711          "name": "fleet_id",
6712          "required": true,
6713          "type": "integer"
6714        }, {
6715          "description": "Details of the invitation",
6716          "in": "body",
6717          "name": "invitation",
6718          "required": true,
6719          "schema": {
6720            "description": "invitation object",
6721            "properties": {
6722              "character_id": {
6723                "description": "The character you want to invite",
6724                "format": "int32",
6725                "title": "post_fleets_fleet_id_members_character_id",
6726                "type": "integer"
6727              },
6728              "role": {
6729                "description": "- If a character is invited with the `fleet_commander` role, neither `wing_id` or `squad_id` should be specified - If a character is invited with the `wing_commander` role, only `wing_id` should be specified - If a character is invited with the `squad_commander` role, both `wing_id` and `squad_id` should be specified - If a character is invited with the `squad_member` role, `wing_id` and `squad_id` should either both be specified or not specified at all. If they aren\u2019t specified, the invited character will join any squad with available positions\n",
6730                "enum": ["fleet_commander", "wing_commander", "squad_commander", "squad_member"],
6731                "title": "post_fleets_fleet_id_members_role",
6732                "type": "string"
6733              },
6734              "squad_id": {
6735                "description": "squad_id integer",
6736                "format": "int64",
6737                "minimum": 0,
6738                "title": "post_fleets_fleet_id_members_squad_id",
6739                "type": "integer"
6740              },
6741              "wing_id": {
6742                "description": "wing_id integer",
6743                "format": "int64",
6744                "minimum": 0,
6745                "title": "post_fleets_fleet_id_members_wing_id",
6746                "type": "integer"
6747              }
6748            },
6749            "required": ["character_id", "role"],
6750            "title": "post_fleets_fleet_id_members_invitation",
6751            "type": "object"
6752          }
6753        }, {
6754          "default": "tranquility",
6755          "description": "The server name you would like data from",
6756          "enum": ["tranquility", "singularity"],
6757          "in": "query",
6758          "name": "datasource",
6759          "type": "string"
6760        }],
6761        "responses": {
6762          "204": {
6763            "description": "Fleet invitation sent"
6764          },
6765          "403": {
6766            "description": "Forbidden",
6767            "examples": {
6768              "application/json": {
6769                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
6770              }
6771            },
6772            "schema": {
6773              "description": "Forbidden",
6774              "properties": {
6775                "error": {
6776                  "description": "Forbidden message",
6777                  "title": "post_fleets_fleet_id_members_403_forbidden",
6778                  "type": "string"
6779                }
6780              },
6781              "title": "post_fleets_fleet_id_members_forbidden",
6782              "type": "object"
6783            }
6784          },
6785          "404": {
6786            "description": "The fleet does not exist or you don't have access to it",
6787            "examples": {
6788              "application/json": {
6789                "error": "fleet 123 not found"
6790              }
6791            },
6792            "schema": {
6793              "description": "404 not found object",
6794              "properties": {
6795                "error": {
6796                  "description": "Error message",
6797                  "title": "post_fleets_fleet_id_members_error",
6798                  "type": "string"
6799                }
6800              },
6801              "title": "post_fleets_fleet_id_members_not_found",
6802              "type": "object"
6803            }
6804          },
6805          "422": {
6806            "description": "Errors in invitation",
6807            "examples": {
6808              "application/json": {
6809                "error": "missing wing_id"
6810              }
6811            },
6812            "schema": {
6813              "description": "422 unprocessable entity object",
6814              "properties": {
6815                "error": {
6816                  "description": "error message",
6817                  "title": "post_fleets_fleet_id_members_error",
6818                  "type": "string"
6819                }
6820              },
6821              "title": "post_fleets_fleet_id_members_unprocessable_entity",
6822              "type": "object"
6823            }
6824          },
6825          "500": {
6826            "description": "Internal server error",
6827            "examples": {
6828              "application/json": {
6829                "error": "uncaught exception: IOError('out of memory')"
6830              }
6831            },
6832            "schema": {
6833              "description": "Internal server error",
6834              "properties": {
6835                "error": {
6836                  "description": "Internal server error message",
6837                  "title": "post_fleets_fleet_id_members_500_internal_server_error",
6838                  "type": "string"
6839                }
6840              },
6841              "title": "post_fleets_fleet_id_members_internal_server_error",
6842              "type": "object"
6843            }
6844          }
6845        },
6846        "security": [{
6847          "evesso": ["esi-fleets.write_fleet.v1"]
6848        }],
6849        "summary": "Create fleet invitation",
6850        "tags": ["Fleets"]
6851      }
6852    },
6853    "/fleets/{fleet_id}/members/{member_id}/": {
6854      "delete": {
6855        "description": "Kick a fleet member\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/members/{member_id}/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/members/{member_id}/`\n\nAlternate route: `/dev/fleets/{fleet_id}/members/{member_id}/`\n",
6856        "operationId": "delete_fleets_fleet_id_members_member_id",
6857        "parameters": [{
6858          "description": "ID for a fleet",
6859          "format": "int64",
6860          "in": "path",
6861          "name": "fleet_id",
6862          "required": true,
6863          "type": "integer"
6864        }, {
6865          "description": "The character ID of a member in this fleet",
6866          "format": "int32",
6867          "in": "path",
6868          "name": "member_id",
6869          "required": true,
6870          "type": "integer"
6871        }, {
6872          "default": "tranquility",
6873          "description": "The server name you would like data from",
6874          "enum": ["tranquility", "singularity"],
6875          "in": "query",
6876          "name": "datasource",
6877          "type": "string"
6878        }],
6879        "responses": {
6880          "204": {
6881            "description": "Fleet member kicked"
6882          },
6883          "403": {
6884            "description": "Forbidden",
6885            "examples": {
6886              "application/json": {
6887                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
6888              }
6889            },
6890            "schema": {
6891              "description": "Forbidden",
6892              "properties": {
6893                "error": {
6894                  "description": "Forbidden message",
6895                  "title": "delete_fleets_fleet_id_members_member_id_403_forbidden",
6896                  "type": "string"
6897                }
6898              },
6899              "title": "delete_fleets_fleet_id_members_member_id_forbidden",
6900              "type": "object"
6901            }
6902          },
6903          "404": {
6904            "description": "The fleet does not exist or you don't have access to it",
6905            "examples": {
6906              "application/json": {
6907                "error": "fleet 123 not found"
6908              }
6909            },
6910            "schema": {
6911              "description": "404 not found object",
6912              "properties": {
6913                "error": {
6914                  "description": "Error message",
6915                  "title": "delete_fleets_fleet_id_members_member_id_error",
6916                  "type": "string"
6917                }
6918              },
6919              "title": "delete_fleets_fleet_id_members_member_id_not_found",
6920              "type": "object"
6921            }
6922          },
6923          "500": {
6924            "description": "Internal server error",
6925            "examples": {
6926              "application/json": {
6927                "error": "uncaught exception: IOError('out of memory')"
6928              }
6929            },
6930            "schema": {
6931              "description": "Internal server error",
6932              "properties": {
6933                "error": {
6934                  "description": "Internal server error message",
6935                  "title": "delete_fleets_fleet_id_members_member_id_500_internal_server_error",
6936                  "type": "string"
6937                }
6938              },
6939              "title": "delete_fleets_fleet_id_members_member_id_internal_server_error",
6940              "type": "object"
6941            }
6942          }
6943        },
6944        "security": [{
6945          "evesso": ["esi-fleets.write_fleet.v1"]
6946        }],
6947        "summary": "Kick fleet member",
6948        "tags": ["Fleets"]
6949      },
6950      "put": {
6951        "description": "Move a fleet member around\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/members/{member_id}/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/members/{member_id}/`\n\nAlternate route: `/dev/fleets/{fleet_id}/members/{member_id}/`\n",
6952        "operationId": "put_fleets_fleet_id_members_member_id",
6953        "parameters": [{
6954          "description": "ID for a fleet",
6955          "format": "int64",
6956          "in": "path",
6957          "name": "fleet_id",
6958          "required": true,
6959          "type": "integer"
6960        }, {
6961          "description": "The character ID of a member in this fleet",
6962          "format": "int32",
6963          "in": "path",
6964          "name": "member_id",
6965          "required": true,
6966          "type": "integer"
6967        }, {
6968          "description": "Details of the invitation",
6969          "in": "body",
6970          "name": "movement",
6971          "required": true,
6972          "schema": {
6973            "description": "movement object",
6974            "properties": {
6975              "role": {
6976                "description": "- If a character is moved to the `fleet_commander` role, neither `wing_id` or `squad_id` should be specified - If a character is moved to the `wing_commander` role, only `wing_id` should be specified - If a character is moved to the `squad_commander` role, both `wing_id` and `squad_id` should be specified - If a character is moved to the `squad_member` role, both `wing_id` and `squad_id` should be specified\n",
6977                "enum": ["fleet_commander", "wing_commander", "squad_commander", "squad_member"],
6978                "title": "put_fleets_fleet_id_members_member_id_role",
6979                "type": "string"
6980              },
6981              "squad_id": {
6982                "description": "squad_id integer",
6983                "format": "int64",
6984                "minimum": 0,
6985                "title": "put_fleets_fleet_id_members_member_id_squad_id",
6986                "type": "integer"
6987              },
6988              "wing_id": {
6989                "description": "wing_id integer",
6990                "format": "int64",
6991                "minimum": 0,
6992                "title": "put_fleets_fleet_id_members_member_id_wing_id",
6993                "type": "integer"
6994              }
6995            },
6996            "required": ["role"],
6997            "title": "put_fleets_fleet_id_members_member_id_movement",
6998            "type": "object"
6999          }
7000        }, {
7001          "default": "tranquility",
7002          "description": "The server name you would like data from",
7003          "enum": ["tranquility", "singularity"],
7004          "in": "query",
7005          "name": "datasource",
7006          "type": "string"
7007        }],
7008        "responses": {
7009          "204": {
7010            "description": "Fleet invitation sent"
7011          },
7012          "403": {
7013            "description": "Forbidden",
7014            "examples": {
7015              "application/json": {
7016                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
7017              }
7018            },
7019            "schema": {
7020              "description": "Forbidden",
7021              "properties": {
7022                "error": {
7023                  "description": "Forbidden message",
7024                  "title": "put_fleets_fleet_id_members_member_id_403_forbidden",
7025                  "type": "string"
7026                }
7027              },
7028              "title": "put_fleets_fleet_id_members_member_id_forbidden",
7029              "type": "object"
7030            }
7031          },
7032          "404": {
7033            "description": "The fleet does not exist or you don't have access to it",
7034            "examples": {
7035              "application/json": {
7036                "error": "fleet 123 not found"
7037              }
7038            },
7039            "schema": {
7040              "description": "404 not found object",
7041              "properties": {
7042                "error": {
7043                  "description": "Error message",
7044                  "title": "put_fleets_fleet_id_members_member_id_error",
7045                  "type": "string"
7046                }
7047              },
7048              "title": "put_fleets_fleet_id_members_member_id_not_found",
7049              "type": "object"
7050            }
7051          },
7052          "422": {
7053            "description": "Errors in invitation",
7054            "examples": {
7055              "application/json": {
7056                "error": "missing wing_id"
7057              }
7058            },
7059            "schema": {
7060              "description": "422 unprocessable entity object",
7061              "properties": {
7062                "error": {
7063                  "description": "error message",
7064                  "title": "put_fleets_fleet_id_members_member_id_error",
7065                  "type": "string"
7066                }
7067              },
7068              "title": "put_fleets_fleet_id_members_member_id_unprocessable_entity",
7069              "type": "object"
7070            }
7071          },
7072          "500": {
7073            "description": "Internal server error",
7074            "examples": {
7075              "application/json": {
7076                "error": "uncaught exception: IOError('out of memory')"
7077              }
7078            },
7079            "schema": {
7080              "description": "Internal server error",
7081              "properties": {
7082                "error": {
7083                  "description": "Internal server error message",
7084                  "title": "put_fleets_fleet_id_members_member_id_500_internal_server_error",
7085                  "type": "string"
7086                }
7087              },
7088              "title": "put_fleets_fleet_id_members_member_id_internal_server_error",
7089              "type": "object"
7090            }
7091          }
7092        },
7093        "security": [{
7094          "evesso": ["esi-fleets.write_fleet.v1"]
7095        }],
7096        "summary": "Move fleet member",
7097        "tags": ["Fleets"]
7098      }
7099    },
7100    "/fleets/{fleet_id}/squads/{squad_id}/": {
7101      "delete": {
7102        "description": "Delete a fleet squad, only empty squads can be deleted\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/squads/{squad_id}/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/squads/{squad_id}/`\n\nAlternate route: `/dev/fleets/{fleet_id}/squads/{squad_id}/`\n",
7103        "operationId": "delete_fleets_fleet_id_squads_squad_id",
7104        "parameters": [{
7105          "description": "ID for a fleet",
7106          "format": "int64",
7107          "in": "path",
7108          "name": "fleet_id",
7109          "required": true,
7110          "type": "integer"
7111        }, {
7112          "description": "The squad to delete",
7113          "format": "int64",
7114          "in": "path",
7115          "name": "squad_id",
7116          "required": true,
7117          "type": "integer"
7118        }, {
7119          "default": "tranquility",
7120          "description": "The server name you would like data from",
7121          "enum": ["tranquility", "singularity"],
7122          "in": "query",
7123          "name": "datasource",
7124          "type": "string"
7125        }],
7126        "responses": {
7127          "204": {
7128            "description": "Squad deleted"
7129          },
7130          "403": {
7131            "description": "Forbidden",
7132            "examples": {
7133              "application/json": {
7134                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
7135              }
7136            },
7137            "schema": {
7138              "description": "Forbidden",
7139              "properties": {
7140                "error": {
7141                  "description": "Forbidden message",
7142                  "title": "delete_fleets_fleet_id_squads_squad_id_403_forbidden",
7143                  "type": "string"
7144                }
7145              },
7146              "title": "delete_fleets_fleet_id_squads_squad_id_forbidden",
7147              "type": "object"
7148            }
7149          },
7150          "404": {
7151            "description": "The fleet does not exist or you don't have access to it",
7152            "examples": {
7153              "application/json": {
7154                "error": "fleet 123 not found"
7155              }
7156            },
7157            "schema": {
7158              "description": "404 not found object",
7159              "properties": {
7160                "error": {
7161                  "description": "Error message",
7162                  "title": "delete_fleets_fleet_id_squads_squad_id_error",
7163                  "type": "string"
7164                }
7165              },
7166              "title": "delete_fleets_fleet_id_squads_squad_id_not_found",
7167              "type": "object"
7168            }
7169          },
7170          "500": {
7171            "description": "Internal server error",
7172            "examples": {
7173              "application/json": {
7174                "error": "uncaught exception: IOError('out of memory')"
7175              }
7176            },
7177            "schema": {
7178              "description": "Internal server error",
7179              "properties": {
7180                "error": {
7181                  "description": "Internal server error message",
7182                  "title": "delete_fleets_fleet_id_squads_squad_id_500_internal_server_error",
7183                  "type": "string"
7184                }
7185              },
7186              "title": "delete_fleets_fleet_id_squads_squad_id_internal_server_error",
7187              "type": "object"
7188            }
7189          }
7190        },
7191        "security": [{
7192          "evesso": ["esi-fleets.write_fleet.v1"]
7193        }],
7194        "summary": "Delete fleet squad",
7195        "tags": ["Fleets"]
7196      },
7197      "put": {
7198        "description": "Rename a fleet squad\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/squads/{squad_id}/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/squads/{squad_id}/`\n\nAlternate route: `/dev/fleets/{fleet_id}/squads/{squad_id}/`\n",
7199        "operationId": "put_fleets_fleet_id_squads_squad_id",
7200        "parameters": [{
7201          "description": "ID for a fleet",
7202          "format": "int64",
7203          "in": "path",
7204          "name": "fleet_id",
7205          "required": true,
7206          "type": "integer"
7207        }, {
7208          "description": "The squad to rename",
7209          "format": "int64",
7210          "in": "path",
7211          "name": "squad_id",
7212          "required": true,
7213          "type": "integer"
7214        }, {
7215          "description": "New name of the squad",
7216          "in": "body",
7217          "name": "naming",
7218          "required": true,
7219          "schema": {
7220            "description": "naming object",
7221            "properties": {
7222              "name": {
7223                "description": "name string",
7224                "maxLength": 10,
7225                "title": "put_fleets_fleet_id_squads_squad_id_name",
7226                "type": "string"
7227              }
7228            },
7229            "required": ["name"],
7230            "title": "put_fleets_fleet_id_squads_squad_id_naming",
7231            "type": "object"
7232          }
7233        }, {
7234          "default": "tranquility",
7235          "description": "The server name you would like data from",
7236          "enum": ["tranquility", "singularity"],
7237          "in": "query",
7238          "name": "datasource",
7239          "type": "string"
7240        }],
7241        "responses": {
7242          "204": {
7243            "description": "Squad renamed"
7244          },
7245          "403": {
7246            "description": "Forbidden",
7247            "examples": {
7248              "application/json": {
7249                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
7250              }
7251            },
7252            "schema": {
7253              "description": "Forbidden",
7254              "properties": {
7255                "error": {
7256                  "description": "Forbidden message",
7257                  "title": "put_fleets_fleet_id_squads_squad_id_403_forbidden",
7258                  "type": "string"
7259                }
7260              },
7261              "title": "put_fleets_fleet_id_squads_squad_id_forbidden",
7262              "type": "object"
7263            }
7264          },
7265          "404": {
7266            "description": "The fleet does not exist or you don't have access to it",
7267            "examples": {
7268              "application/json": {
7269                "error": "fleet 123 not found"
7270              }
7271            },
7272            "schema": {
7273              "description": "404 not found object",
7274              "properties": {
7275                "error": {
7276                  "description": "Error message",
7277                  "title": "put_fleets_fleet_id_squads_squad_id_error",
7278                  "type": "string"
7279                }
7280              },
7281              "title": "put_fleets_fleet_id_squads_squad_id_not_found",
7282              "type": "object"
7283            }
7284          },
7285          "500": {
7286            "description": "Internal server error",
7287            "examples": {
7288              "application/json": {
7289                "error": "uncaught exception: IOError('out of memory')"
7290              }
7291            },
7292            "schema": {
7293              "description": "Internal server error",
7294              "properties": {
7295                "error": {
7296                  "description": "Internal server error message",
7297                  "title": "put_fleets_fleet_id_squads_squad_id_500_internal_server_error",
7298                  "type": "string"
7299                }
7300              },
7301              "title": "put_fleets_fleet_id_squads_squad_id_internal_server_error",
7302              "type": "object"
7303            }
7304          }
7305        },
7306        "security": [{
7307          "evesso": ["esi-fleets.write_fleet.v1"]
7308        }],
7309        "summary": "Rename fleet squad",
7310        "tags": ["Fleets"]
7311      }
7312    },
7313    "/fleets/{fleet_id}/wings/": {
7314      "get": {
7315        "description": "Return information about wings in a fleet\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/wings/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/wings/`\n\nAlternate route: `/dev/fleets/{fleet_id}/wings/`\n\n\n---\n\nThis route is cached for up to 5 seconds",
7316        "operationId": "get_fleets_fleet_id_wings",
7317        "parameters": [{
7318          "description": "ID for a fleet",
7319          "format": "int64",
7320          "in": "path",
7321          "name": "fleet_id",
7322          "required": true,
7323          "type": "integer"
7324        }, {
7325          "default": "en",
7326          "description": "Language to use in the response",
7327          "enum": ["de", "en", "fr", "ja", "ru", "zh"],
7328          "in": "header",
7329          "name": "Accept-Language",
7330          "type": "string"
7331        }, {
7332          "default": "tranquility",
7333          "description": "The server name you would like data from",
7334          "enum": ["tranquility", "singularity"],
7335          "in": "query",
7336          "name": "datasource",
7337          "type": "string"
7338        }],
7339        "responses": {
7340          "200": {
7341            "description": "A list of fleet wings",
7342            "examples": {
7343              "application/json": [{
7344                "id": 2073711261968,
7345                "name": "Wing 1",
7346                "squads": [{
7347                  "id": 3129411261968,
7348                  "name": "Squad 1"
7349                }]
7350              }]
7351            },
7352            "headers": {
7353              "Cache-Control": {
7354                "description": "The caching mechanism used",
7355                "type": "string"
7356              },
7357              "Content-Language": {
7358                "description": "The language used in the response",
7359                "enum": ["de", "en", "fr", "ja", "ru", "zh"],
7360                "type": "string"
7361              },
7362              "Expires": {
7363                "description": "RFC7231 formatted datetime string",
7364                "type": "string"
7365              },
7366              "Last-Modified": {
7367                "description": "RFC7231 formatted datetime string",
7368                "type": "string"
7369              }
7370            },
7371            "schema": {
7372              "description": "200 ok array",
7373              "items": {
7374                "description": "200 ok object",
7375                "properties": {
7376                  "id": {
7377                    "description": "id integer",
7378                    "format": "int64",
7379                    "title": "get_fleets_fleet_id_wings_id",
7380                    "type": "integer"
7381                  },
7382                  "name": {
7383                    "description": "name string",
7384                    "title": "get_fleets_fleet_id_wings_name",
7385                    "type": "string"
7386                  },
7387                  "squads": {
7388                    "description": "squads array",
7389                    "items": {
7390                      "description": "squad object",
7391                      "properties": {
7392                        "id": {
7393                          "description": "id integer",
7394                          "format": "int64",
7395                          "title": "get_fleets_fleet_id_wings_id",
7396                          "type": "integer"
7397                        },
7398                        "name": {
7399                          "description": "name string",
7400                          "title": "get_fleets_fleet_id_wings_name",
7401                          "type": "string"
7402                        }
7403                      },
7404                      "required": ["name", "id"],
7405                      "title": "get_fleets_fleet_id_wings_squad",
7406                      "type": "object"
7407                    },
7408                    "title": "get_fleets_fleet_id_wings_squads",
7409                    "type": "array"
7410                  }
7411                },
7412                "required": ["name", "id", "squads"],
7413                "title": "get_fleets_fleet_id_wings_200_ok",
7414                "type": "object"
7415              },
7416              "title": "get_fleets_fleet_id_wings_ok",
7417              "type": "array"
7418            }
7419          },
7420          "403": {
7421            "description": "Forbidden",
7422            "examples": {
7423              "application/json": {
7424                "error": "Token is not valid for scope(s): esi-fleets.read_fleet.v1"
7425              }
7426            },
7427            "schema": {
7428              "description": "Forbidden",
7429              "properties": {
7430                "error": {
7431                  "description": "Forbidden message",
7432                  "title": "get_fleets_fleet_id_wings_403_forbidden",
7433                  "type": "string"
7434                }
7435              },
7436              "title": "get_fleets_fleet_id_wings_forbidden",
7437              "type": "object"
7438            }
7439          },
7440          "404": {
7441            "description": "The fleet does not exist or you don't have access to it",
7442            "examples": {
7443              "application/json": {
7444                "error": "fleet 123 not found"
7445              }
7446            },
7447            "schema": {
7448              "description": "404 not found object",
7449              "properties": {
7450                "error": {
7451                  "description": "error message",
7452                  "title": "get_fleets_fleet_id_wings_error",
7453                  "type": "string"
7454                }
7455              },
7456              "title": "get_fleets_fleet_id_wings_not_found",
7457              "type": "object"
7458            }
7459          },
7460          "500": {
7461            "description": "Internal server error",
7462            "examples": {
7463              "application/json": {
7464                "error": "uncaught exception: IOError('out of memory')"
7465              }
7466            },
7467            "schema": {
7468              "description": "Internal server error",
7469              "properties": {
7470                "error": {
7471                  "description": "Internal server error message",
7472                  "title": "get_fleets_fleet_id_wings_500_internal_server_error",
7473                  "type": "string"
7474                }
7475              },
7476              "title": "get_fleets_fleet_id_wings_internal_server_error",
7477              "type": "object"
7478            }
7479          }
7480        },
7481        "security": [{
7482          "evesso": ["esi-fleets.read_fleet.v1"]
7483        }],
7484        "summary": "Get fleet wings",
7485        "tags": ["Fleets"]
7486      },
7487      "post": {
7488        "description": "Create a new wing in a fleet\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/wings/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/wings/`\n\nAlternate route: `/dev/fleets/{fleet_id}/wings/`\n",
7489        "operationId": "post_fleets_fleet_id_wings",
7490        "parameters": [{
7491          "description": "ID for a fleet",
7492          "format": "int64",
7493          "in": "path",
7494          "name": "fleet_id",
7495          "required": true,
7496          "type": "integer"
7497        }, {
7498          "default": "tranquility",
7499          "description": "The server name you would like data from",
7500          "enum": ["tranquility", "singularity"],
7501          "in": "query",
7502          "name": "datasource",
7503          "type": "string"
7504        }],
7505        "responses": {
7506          "201": {
7507            "description": "Wing created",
7508            "examples": {
7509              "application/json": {
7510                "wing_id": 123
7511              }
7512            },
7513            "schema": {
7514              "description": "201 created object",
7515              "properties": {
7516                "wing_id": {
7517                  "description": "The wing_id of the newly created wing",
7518                  "format": "int64",
7519                  "title": "post_fleets_fleet_id_wings_wing_id",
7520                  "type": "integer"
7521                }
7522              },
7523              "required": ["wing_id"],
7524              "title": "post_fleets_fleet_id_wings_created",
7525              "type": "object"
7526            }
7527          },
7528          "403": {
7529            "description": "Forbidden",
7530            "examples": {
7531              "application/json": {
7532                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
7533              }
7534            },
7535            "schema": {
7536              "description": "Forbidden",
7537              "properties": {
7538                "error": {
7539                  "description": "Forbidden message",
7540                  "title": "post_fleets_fleet_id_wings_403_forbidden",
7541                  "type": "string"
7542                }
7543              },
7544              "title": "post_fleets_fleet_id_wings_forbidden",
7545              "type": "object"
7546            }
7547          },
7548          "404": {
7549            "description": "The fleet does not exist or you don't have access to it",
7550            "examples": {
7551              "application/json": {
7552                "error": "fleet 123 not found"
7553              }
7554            },
7555            "schema": {
7556              "description": "404 not found object",
7557              "properties": {
7558                "error": {
7559                  "description": "Error message",
7560                  "title": "post_fleets_fleet_id_wings_error",
7561                  "type": "string"
7562                }
7563              },
7564              "title": "post_fleets_fleet_id_wings_not_found",
7565              "type": "object"
7566            }
7567          },
7568          "500": {
7569            "description": "Internal server error",
7570            "examples": {
7571              "application/json": {
7572                "error": "uncaught exception: IOError('out of memory')"
7573              }
7574            },
7575            "schema": {
7576              "description": "Internal server error",
7577              "properties": {
7578                "error": {
7579                  "description": "Internal server error message",
7580                  "title": "post_fleets_fleet_id_wings_500_internal_server_error",
7581                  "type": "string"
7582                }
7583              },
7584              "title": "post_fleets_fleet_id_wings_internal_server_error",
7585              "type": "object"
7586            }
7587          }
7588        },
7589        "security": [{
7590          "evesso": ["esi-fleets.write_fleet.v1"]
7591        }],
7592        "summary": "Create fleet wing",
7593        "tags": ["Fleets"]
7594      }
7595    },
7596    "/fleets/{fleet_id}/wings/{wing_id}/": {
7597      "delete": {
7598        "description": "Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/`\n\nAlternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/`\n",
7599        "operationId": "delete_fleets_fleet_id_wings_wing_id",
7600        "parameters": [{
7601          "description": "ID for a fleet",
7602          "format": "int64",
7603          "in": "path",
7604          "name": "fleet_id",
7605          "required": true,
7606          "type": "integer"
7607        }, {
7608          "description": "The wing to delete",
7609          "format": "int64",
7610          "in": "path",
7611          "name": "wing_id",
7612          "required": true,
7613          "type": "integer"
7614        }, {
7615          "default": "tranquility",
7616          "description": "The server name you would like data from",
7617          "enum": ["tranquility", "singularity"],
7618          "in": "query",
7619          "name": "datasource",
7620          "type": "string"
7621        }],
7622        "responses": {
7623          "204": {
7624            "description": "Wing deleted"
7625          },
7626          "403": {
7627            "description": "Forbidden",
7628            "examples": {
7629              "application/json": {
7630                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
7631              }
7632            },
7633            "schema": {
7634              "description": "Forbidden",
7635              "properties": {
7636                "error": {
7637                  "description": "Forbidden message",
7638                  "title": "delete_fleets_fleet_id_wings_wing_id_403_forbidden",
7639                  "type": "string"
7640                }
7641              },
7642              "title": "delete_fleets_fleet_id_wings_wing_id_forbidden",
7643              "type": "object"
7644            }
7645          },
7646          "404": {
7647            "description": "The fleet does not exist or you don't have access to it",
7648            "examples": {
7649              "application/json": {
7650                "error": "fleet 123 not found"
7651              }
7652            },
7653            "schema": {
7654              "description": "404 not found object",
7655              "properties": {
7656                "error": {
7657                  "description": "Error message",
7658                  "title": "delete_fleets_fleet_id_wings_wing_id_error",
7659                  "type": "string"
7660                }
7661              },
7662              "title": "delete_fleets_fleet_id_wings_wing_id_not_found",
7663              "type": "object"
7664            }
7665          },
7666          "500": {
7667            "description": "Internal server error",
7668            "examples": {
7669              "application/json": {
7670                "error": "uncaught exception: IOError('out of memory')"
7671              }
7672            },
7673            "schema": {
7674              "description": "Internal server error",
7675              "properties": {
7676                "error": {
7677                  "description": "Internal server error message",
7678                  "title": "delete_fleets_fleet_id_wings_wing_id_500_internal_server_error",
7679                  "type": "string"
7680                }
7681              },
7682              "title": "delete_fleets_fleet_id_wings_wing_id_internal_server_error",
7683              "type": "object"
7684            }
7685          }
7686        },
7687        "security": [{
7688          "evesso": ["esi-fleets.write_fleet.v1"]
7689        }],
7690        "summary": "Delete fleet wing",
7691        "tags": ["Fleets"]
7692      },
7693      "put": {
7694        "description": "Rename a fleet wing\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/`\n\nAlternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/`\n",
7695        "operationId": "put_fleets_fleet_id_wings_wing_id",
7696        "parameters": [{
7697          "description": "ID for a fleet",
7698          "format": "int64",
7699          "in": "path",
7700          "name": "fleet_id",
7701          "required": true,
7702          "type": "integer"
7703        }, {
7704          "description": "The wing to rename",
7705          "format": "int64",
7706          "in": "path",
7707          "name": "wing_id",
7708          "required": true,
7709          "type": "integer"
7710        }, {
7711          "description": "New name of the wing",
7712          "in": "body",
7713          "name": "naming",
7714          "required": true,
7715          "schema": {
7716            "description": "naming object",
7717            "properties": {
7718              "name": {
7719                "description": "name string",
7720                "maxLength": 10,
7721                "title": "put_fleets_fleet_id_wings_wing_id_name",
7722                "type": "string"
7723              }
7724            },
7725            "required": ["name"],
7726            "title": "put_fleets_fleet_id_wings_wing_id_naming",
7727            "type": "object"
7728          }
7729        }, {
7730          "default": "tranquility",
7731          "description": "The server name you would like data from",
7732          "enum": ["tranquility", "singularity"],
7733          "in": "query",
7734          "name": "datasource",
7735          "type": "string"
7736        }],
7737        "responses": {
7738          "204": {
7739            "description": "Wing renamed"
7740          },
7741          "403": {
7742            "description": "Forbidden",
7743            "examples": {
7744              "application/json": {
7745                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
7746              }
7747            },
7748            "schema": {
7749              "description": "Forbidden",
7750              "properties": {
7751                "error": {
7752                  "description": "Forbidden message",
7753                  "title": "put_fleets_fleet_id_wings_wing_id_403_forbidden",
7754                  "type": "string"
7755                }
7756              },
7757              "title": "put_fleets_fleet_id_wings_wing_id_forbidden",
7758              "type": "object"
7759            }
7760          },
7761          "404": {
7762            "description": "The fleet does not exist or you don't have access to it",
7763            "examples": {
7764              "application/json": {
7765                "error": "fleet 123 not found"
7766              }
7767            },
7768            "schema": {
7769              "description": "404 not found object",
7770              "properties": {
7771                "error": {
7772                  "description": "Error message",
7773                  "title": "put_fleets_fleet_id_wings_wing_id_error",
7774                  "type": "string"
7775                }
7776              },
7777              "title": "put_fleets_fleet_id_wings_wing_id_not_found",
7778              "type": "object"
7779            }
7780          },
7781          "500": {
7782            "description": "Internal server error",
7783            "examples": {
7784              "application/json": {
7785                "error": "uncaught exception: IOError('out of memory')"
7786              }
7787            },
7788            "schema": {
7789              "description": "Internal server error",
7790              "properties": {
7791                "error": {
7792                  "description": "Internal server error message",
7793                  "title": "put_fleets_fleet_id_wings_wing_id_500_internal_server_error",
7794                  "type": "string"
7795                }
7796              },
7797              "title": "put_fleets_fleet_id_wings_wing_id_internal_server_error",
7798              "type": "object"
7799            }
7800          }
7801        },
7802        "security": [{
7803          "evesso": ["esi-fleets.write_fleet.v1"]
7804        }],
7805        "summary": "Rename fleet wing",
7806        "tags": ["Fleets"]
7807      }
7808    },
7809    "/fleets/{fleet_id}/wings/{wing_id}/squads/": {
7810      "post": {
7811        "description": "Create a new squad in a fleet\n\n---\n\nAlternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/squads/`\n\nAlternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/squads/`\n\nAlternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/squads/`\n",
7812        "operationId": "post_fleets_fleet_id_wings_wing_id_squads",
7813        "parameters": [{
7814          "description": "ID for a fleet",
7815          "format": "int64",
7816          "in": "path",
7817          "name": "fleet_id",
7818          "required": true,
7819          "type": "integer"
7820        }, {
7821          "description": "The wing_id to create squad in",
7822          "format": "int64",
7823          "in": "path",
7824          "name": "wing_id",
7825          "required": true,
7826          "type": "integer"
7827        }, {
7828          "default": "tranquility",
7829          "description": "The server name you would like data from",
7830          "enum": ["tranquility", "singularity"],
7831          "in": "query",
7832          "name": "datasource",
7833          "type": "string"
7834        }],
7835        "responses": {
7836          "201": {
7837            "description": "Squad created",
7838            "examples": {
7839              "application/json": {
7840                "squad_id": 123
7841              }
7842            },
7843            "schema": {
7844              "description": "201 created object",
7845              "properties": {
7846                "squad_id": {
7847                  "description": "The squad_id of the newly created squad",
7848                  "format": "int64",
7849                  "title": "post_fleets_fleet_id_wings_wing_id_squads_squad_id",
7850                  "type": "integer"
7851                }
7852              },
7853              "required": ["squad_id"],
7854              "title": "post_fleets_fleet_id_wings_wing_id_squads_created",
7855              "type": "object"
7856            }
7857          },
7858          "403": {
7859            "description": "Forbidden",
7860            "examples": {
7861              "application/json": {
7862                "error": "Token is not valid for scope(s): esi-fleets.write_fleet.v1"
7863              }
7864            },
7865            "schema": {
7866              "description": "Forbidden",
7867              "properties": {
7868                "error": {
7869                  "description": "Forbidden message",
7870                  "title": "post_fleets_fleet_id_wings_wing_id_squads_403_forbidden",
7871                  "type": "string"
7872                }
7873              },
7874              "title": "post_fleets_fleet_id_wings_wing_id_squads_forbidden",
7875              "type": "object"
7876            }
7877          },
7878          "404": {
7879            "description": "The fleet does not exist or you don't have access to it",
7880            "examples": {
7881              "application/json": {
7882                "error": "fleet 123 not found"
7883              }
7884            },
7885            "schema": {
7886              "description": "404 not found object",
7887              "properties": {
7888                "error": {
7889                  "description": "Error message",
7890                  "title": "post_fleets_fleet_id_wings_wing_id_squads_error",
7891                  "type": "string"
7892                }
7893              },
7894              "title": "post_fleets_fleet_id_wings_wing_id_squads_not_found",
7895              "type": "object"
7896            }
7897          },
7898          "500": {
7899            "description": "Internal server error",
7900            "examples": {
7901              "application/json": {
7902                "error": "uncaught exception: IOError('out of memory')"
7903              }
7904            },
7905            "schema": {
7906              "description": "Internal server error",
7907              "properties": {
7908                "error": {
7909                  "description": "Internal server error message",
7910                  "title": "post_fleets_fleet_id_wings_wing_id_squads_500_internal_server_error",
7911                  "type": "string"
7912                }
7913              },
7914              "title": "post_fleets_fleet_id_wings_wing_id_squads_internal_server_error",
7915              "type": "object"
7916            }
7917          }
7918        },
7919        "security": [{
7920          "evesso": ["esi-fleets.write_fleet.v1"]
7921        }],
7922        "summary": "Create fleet squad",
7923        "tags": ["Fleets"]
7924      }
7925    },
7926    "/incursions/": {
7927      "get": {
7928        "description": "Return a list of current incursions\n\n---\n\nAlternate route: `/v1/incursions/`\n\nAlternate route: `/legacy/incursions/`\n\nAlternate route: `/dev/incursions/`\n\n\n---\n\nThis route is cached for up to 300 seconds",
7929        "operationId": "get_incursions",
7930        "parameters": [{
7931          "default": "tranquility",
7932          "description": "The server name you would like data from",
7933          "enum": ["tranquility", "singularity"],
7934          "in": "query",
7935          "name": "datasource",
7936          "type": "string"
7937        }],
7938        "responses": {
7939          "200": {
7940            "description": "A list of incursions",
7941            "examples": {
7942              "application/json": [{
7943                "constellation_id": 20000607,
7944                "faction_id": 500019,
7945                "has_boss": true,
7946                "infested_solar_systems": [30004148, 30004149, 30004150, 30004151, 30004152, 30004153, 30004154],
7947                "influence": 1.0,
7948                "staging_solar_system_id": 30004154,
7949                "state": "mobilizing",
7950                "type": "Incursion"
7951              }]
7952            },
7953            "headers": {
7954              "Cache-Control": {
7955                "description": "The caching mechanism used",
7956                "type": "string"
7957              },
7958              "Expires": {
7959                "description": "RFC7231 formatted datetime string",
7960                "type": "string"
7961              },
7962              "Last-Modified": {
7963                "description": "RFC7231 formatted datetime string",
7964                "type": "string"
7965              }
7966            },
7967            "schema": {
7968              "description": "200 ok array",
7969              "items": {
7970                "description": "200 ok object",
7971                "properties": {
7972                  "constellation_id": {
7973                    "description": "The constellation id in which this incursion takes place",
7974                    "format": "int32",
7975                    "title": "get_incursions_constellation_id",
7976                    "type": "integer"
7977                  },
7978                  "faction_id": {
7979                    "description": "The attacking faction's id",
7980                    "format": "int32",
7981                    "title": "get_incursions_faction_id",
7982                    "type": "integer"
7983                  },
7984                  "has_boss": {
7985                    "description": "Whether the final encounter has boss or not",
7986                    "title": "get_incursions_has_boss",
7987                    "type": "boolean"
7988                  },
7989                  "infested_solar_systems": {
7990                    "description": "A list of infested solar system ids that are a part of this incursion",
7991                    "items": {
7992                      "description": "infested_solar_system integer",
7993                      "format": "int32",
7994                      "title": "get_incursions_infested_solar_system",
7995                      "type": "integer"
7996                    },
7997                    "title": "get_incursions_infested_solar_systems",
7998                    "type": "array"
7999                  },
8000                  "influence": {
8001                    "description": "Influence of this incursion as a float from 0 to 1",
8002                    "format": "float",
8003                    "title": "get_incursions_influence",
8004                    "type": "number"
8005                  },
8006                  "staging_solar_system_id": {
8007                    "description": "Staging solar system for this incursion",
8008                    "format": "int32",
8009                    "title": "get_incursions_staging_solar_system_id",
8010                    "type": "integer"
8011                  },
8012                  "state": {
8013                    "description": "The state of this incursion",
8014                    "enum": ["withdrawing", "mobilizing", "established"],
8015                    "title": "get_incursions_state",
8016                    "type": "string"
8017                  },
8018                  "type": {
8019                    "description": "The type of this incursion",
8020                    "title": "get_incursions_type",
8021                    "type": "string"
8022                  }
8023                },
8024                "required": ["type", "state", "influence", "has_boss", "faction_id", "constellation_id", "staging_solar_system_id", "infested_solar_systems"],
8025                "title": "get_incursions_200_ok",
8026                "type": "object"
8027              },
8028              "title": "get_incursions_ok",
8029              "type": "array"
8030            }
8031          },
8032          "500": {
8033            "description": "Internal server error",
8034            "examples": {
8035              "application/json": {
8036                "error": "uncaught exception: IOError('out of memory')"
8037              }
8038            },
8039            "schema": {
8040              "description": "Internal server error",
8041              "properties": {
8042                "error": {
8043                  "description": "Internal server error message",
8044                  "title": "get_incursions_500_internal_server_error",
8045                  "type": "string"
8046                }
8047              },
8048              "title": "get_incursions_internal_server_error",
8049              "type": "object"
8050            }
8051          }
8052        },
8053        "summary": "List incursions",
8054        "tags": ["Incursions"]
8055      }
8056    },
8057    "/industry/facilities/": {
8058      "get": {
8059        "description": "Return a list of industry facilities\n\n---\n\nAlternate route: `/v1/industry/facilities/`\n\nAlternate route: `/legacy/industry/facilities/`\n\nAlternate route: `/dev/industry/facilities/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
8060        "operationId": "get_industry_facilities",
8061        "parameters": [{
8062          "default": "tranquility",
8063          "description": "The server name you would like data from",
8064          "enum": ["tranquility", "singularity"],
8065          "in": "query",
8066          "name": "datasource",
8067          "type": "string"
8068        }],
8069        "responses": {
8070          "200": {
8071            "description": "A list of prices",
8072            "examples": {
8073              "application/json": [{
8074                "facility_id": 60012544,
8075                "owner_id": 1000126,
8076                "region_id": 10000001,
8077                "solar_system_id": 30000032,
8078                "tax": 0.1,
8079                "type_id": 2502
8080              }]
8081            },
8082            "headers": {
8083              "Cache-Control": {
8084                "description": "The caching mechanism used",
8085                "type": "string"
8086              },
8087              "Expires": {
8088                "description": "RFC7231 formatted datetime string",
8089                "type": "string"
8090              },
8091              "Last-Modified": {
8092                "description": "RFC7231 formatted datetime string",
8093                "type": "string"
8094              }
8095            },
8096            "schema": {
8097              "description": "200 ok array",
8098              "items": {
8099                "description": "200 ok object",
8100                "properties": {
8101                  "facility_id": {
8102                    "description": "ID of the facility",
8103                    "format": "int64",
8104                    "title": "get_industry_facilities_facility_id",
8105                    "type": "integer"
8106                  },
8107                  "owner_id": {
8108                    "description": "Owner of the facility",
8109                    "format": "int32",
8110                    "title": "get_industry_facilities_owner_id",
8111                    "type": "integer"
8112                  },
8113                  "region_id": {
8114                    "description": "Region ID where the facility is",
8115                    "format": "int32",
8116                    "title": "get_industry_facilities_region_id",
8117                    "type": "integer"
8118                  },
8119                  "solar_system_id": {
8120                    "description": "Solar system ID where the facility is",
8121                    "format": "int32",
8122                    "title": "get_industry_facilities_solar_system_id",
8123                    "type": "integer"
8124                  },
8125                  "tax": {
8126                    "description": "Tax imposed by the facility",
8127                    "format": "float",
8128                    "title": "get_industry_facilities_tax",
8129                    "type": "number"
8130                  },
8131                  "type_id": {
8132                    "description": "Type ID of the facility",
8133                    "format": "int32",
8134                    "title": "get_industry_facilities_type_id",
8135                    "type": "integer"
8136                  }
8137                },
8138                "required": ["facility_id", "owner_id", "type_id", "solar_system_id", "region_id"],
8139                "title": "get_industry_facilities_200_ok",
8140                "type": "object"
8141              },
8142              "title": "get_industry_facilities_ok",
8143              "type": "array"
8144            }
8145          },
8146          "500": {
8147            "description": "Internal server error",
8148            "examples": {
8149              "application/json": {
8150                "error": "uncaught exception: IOError('out of memory')"
8151              }
8152            },
8153            "schema": {
8154              "description": "Internal server error",
8155              "properties": {
8156                "error": {
8157                  "description": "Internal server error message",
8158                  "title": "get_industry_facilities_500_internal_server_error",
8159                  "type": "string"
8160                }
8161              },
8162              "title": "get_industry_facilities_internal_server_error",
8163              "type": "object"
8164            }
8165          }
8166        },
8167        "summary": "List industry facilities",
8168        "tags": ["Industry"]
8169      }
8170    },
8171    "/industry/systems/": {
8172      "get": {
8173        "description": "Return cost indices for solar systems\n\n---\n\nAlternate route: `/v1/industry/systems/`\n\nAlternate route: `/legacy/industry/systems/`\n\nAlternate route: `/dev/industry/systems/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
8174        "operationId": "get_industry_systems",
8175        "parameters": [{
8176          "default": "tranquility",
8177          "description": "The server name you would like data from",
8178          "enum": ["tranquility", "singularity"],
8179          "in": "query",
8180          "name": "datasource",
8181          "type": "string"
8182        }],
8183        "responses": {
8184          "200": {
8185            "description": "A list of cost indicies",
8186            "examples": {
8187              "application/json": [{
8188                "cost_indices": [{
8189                  "activity": "invention",
8190                  "cost_index": 0.00480411064973412
8191                }],
8192                "solar_system_id": 30011392
8193              }]
8194            },
8195            "headers": {
8196              "Cache-Control": {
8197                "description": "The caching mechanism used",
8198                "type": "string"
8199              },
8200              "Expires": {
8201                "description": "RFC7231 formatted datetime string",
8202                "type": "string"
8203              },
8204              "Last-Modified": {
8205                "description": "RFC7231 formatted datetime string",
8206                "type": "string"
8207              }
8208            },
8209            "schema": {
8210              "description": "200 ok array",
8211              "items": {
8212                "description": "200 ok object",
8213                "properties": {
8214                  "cost_indices": {
8215                    "description": "cost_indices array",
8216                    "items": {
8217                      "description": "cost_indice object",
8218                      "properties": {
8219                        "activity": {
8220                          "description": "activity string",
8221                          "enum": ["none", "manufacturing", "researching_technology", "researching_time_efficiency", "researching_material_efficiency", "copying", "duplicating", "invention", "reverse_engineering"],
8222                          "title": "get_industry_systems_activity",
8223                          "type": "string"
8224                        },
8225                        "cost_index": {
8226                          "description": "cost_index number",
8227                          "format": "float",
8228                          "title": "get_industry_systems_cost_index",
8229                          "type": "number"
8230                        }
8231                      },
8232                      "required": ["activity", "cost_index"],
8233                      "title": "get_industry_systems_cost_indice",
8234                      "type": "object"
8235                    },
8236                    "title": "get_industry_systems_cost_indices",
8237                    "type": "array"
8238                  },
8239                  "solar_system_id": {
8240                    "description": "solar_system_id integer",
8241                    "format": "int32",
8242                    "title": "get_industry_systems_solar_system_id",
8243                    "type": "integer"
8244                  }
8245                },
8246                "required": ["solar_system_id", "cost_indices"],
8247                "title": "get_industry_systems_200_ok",
8248                "type": "object"
8249              },
8250              "title": "get_industry_systems_ok",
8251              "type": "array"
8252            }
8253          },
8254          "500": {
8255            "description": "Internal server error",
8256            "examples": {
8257              "application/json": {
8258                "error": "uncaught exception: IOError('out of memory')"
8259              }
8260            },
8261            "schema": {
8262              "description": "Internal server error",
8263              "properties": {
8264                "error": {
8265                  "description": "Internal server error message",
8266                  "title": "get_industry_systems_500_internal_server_error",
8267                  "type": "string"
8268                }
8269              },
8270              "title": "get_industry_systems_internal_server_error",
8271              "type": "object"
8272            }
8273          }
8274        },
8275        "summary": "List solar system cost indices",
8276        "tags": ["Industry"]
8277      }
8278    },
8279    "/insurance/prices/": {
8280      "get": {
8281        "description": "Return available insurance levels for all ship types\n\n---\n\nAlternate route: `/v1/insurance/prices/`\n\nAlternate route: `/legacy/insurance/prices/`\n\nAlternate route: `/dev/insurance/prices/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
8282        "operationId": "get_insurance_prices",
8283        "parameters": [{
8284          "default": "en",
8285          "description": "Language to use in the response",
8286          "enum": ["de", "en", "fr", "ja", "ru", "zh"],
8287          "in": "header",
8288          "name": "Accept-Language",
8289          "type": "string"
8290        }, {
8291          "default": "tranquility",
8292          "description": "The server name you would like data from",
8293          "enum": ["tranquility", "singularity"],
8294          "in": "query",
8295          "name": "datasource",
8296          "type": "string"
8297        }],
8298        "responses": {
8299          "200": {
8300            "description": "A list of insurance levels for all ship types",
8301            "examples": {
8302              "application/json": [{
8303                "levels": [{
8304                  "cost": 10.0,
8305                  "name": "Basic",
8306                  "payout": 20.0
8307                }],
8308                "type_id": 1
8309              }]
8310            },
8311            "headers": {
8312              "Cache-Control": {
8313                "description": "The caching mechanism used",
8314                "type": "string"
8315              },
8316              "Content-Language": {
8317                "description": "The language used in the response",
8318                "enum": ["de", "en", "fr", "ja", "ru", "zh"],
8319                "type": "string"
8320              },
8321              "Expires": {
8322                "description": "RFC7231 formatted datetime string",
8323                "type": "string"
8324              },
8325              "Last-Modified": {
8326                "description": "RFC7231 formatted datetime string",
8327                "type": "string"
8328              }
8329            },
8330            "schema": {
8331              "description": "200 ok array",
8332              "items": {
8333                "description": "200 ok object",
8334                "properties": {
8335                  "levels": {
8336                    "description": "A list of a available insurance levels for this ship type",
8337                    "items": {
8338                      "description": "level object",
8339                      "properties": {
8340                        "cost": {
8341                          "description": "cost number",
8342                          "format": "float",
8343                          "title": "get_insurance_prices_cost",
8344                          "type": "number"
8345                        },
8346                        "name": {
8347                          "description": "Localized insurance level",
8348                          "title": "get_insurance_prices_name",
8349                          "type": "string"
8350                        },
8351                        "payout": {
8352                          "description": "payout number",
8353                          "format": "float",
8354                          "title": "get_insurance_prices_payout",
8355                          "type": "number"
8356                        }
8357                      },
8358                      "required": ["cost", "payout", "name"],
8359                      "title": "get_insurance_prices_level",
8360                      "type": "object"
8361                    },
8362                    "title": "get_insurance_prices_levels",
8363                    "type": "array"
8364                  },
8365                  "type_id": {
8366                    "description": "type_id integer",
8367                    "format": "int32",
8368                    "title": "get_insurance_prices_type_id",
8369                    "type": "integer"
8370                  }
8371                },
8372                "required": ["type_id", "levels"],
8373                "title": "get_insurance_prices_200_ok",
8374                "type": "object"
8375              },
8376              "title": "get_insurance_prices_ok",
8377              "type": "array"
8378            }
8379          },
8380          "500": {
8381            "description": "Internal server error",
8382            "examples": {
8383              "application/json": {
8384                "error": "uncaught exception: IOError('out of memory')"
8385              }
8386            },
8387            "schema": {
8388              "description": "Internal server error",
8389              "properties": {
8390                "error": {
8391                  "description": "Internal server error message",
8392                  "title": "get_insurance_prices_500_internal_server_error",
8393                  "type": "string"
8394                }
8395              },
8396              "title": "get_insurance_prices_internal_server_error",
8397              "type": "object"
8398            }
8399          }
8400        },
8401        "summary": "List insurance levels",
8402        "tags": ["Insurance"]
8403      }
8404    },
8405    "/killmails/{killmail_id}/{killmail_hash}/": {
8406      "get": {
8407        "description": "Return a single killmail from its ID and hash\n\n---\n\nAlternate route: `/v1/killmails/{killmail_id}/{killmail_hash}/`\n\nAlternate route: `/legacy/killmails/{killmail_id}/{killmail_hash}/`\n\nAlternate route: `/dev/killmails/{killmail_id}/{killmail_hash}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
8408        "operationId": "get_killmails_killmail_id_killmail_hash",
8409        "parameters": [{
8410          "description": "The killmail ID to be queried",
8411          "format": "int32",
8412          "in": "path",
8413          "name": "killmail_id",
8414          "required": true,
8415          "type": "integer"
8416        }, {
8417          "description": "The killmail hash for verification",
8418          "in": "path",
8419          "name": "killmail_hash",
8420          "required": true,
8421          "type": "string"
8422        }, {
8423          "default": "tranquility",
8424          "description": "The server name you would like data from",
8425          "enum": ["tranquility", "singularity"],
8426          "in": "query",
8427          "name": "datasource",
8428          "type": "string"
8429        }],
8430        "responses": {
8431          "200": {
8432            "description": "A killmail",
8433            "examples": {
8434              "application/json": {
8435                "attackers": [{
8436                  "character_id": 95810944,
8437                  "corporation_id": 1000179,
8438                  "damage_done": 5745,
8439                  "faction_id": 500003,
8440                  "final_blow": true,
8441                  "security_status": -0.3,
8442                  "ship_type_id": 17841,
8443                  "weapon_type_id": 3074
8444                }],
8445                "killmail_id": 56733821,
8446                "killmail_time": "2016-10-22T17:13:36Z",
8447                "solar_system_id": 30002976,
8448                "victim": {
8449                  "alliance_id": 621338554,
8450                  "character_id": 92796241,
8451                  "corporation_id": 841363671,
8452                  "damage_taken": 5745,
8453                  "items": [{
8454                    "flag": 20,
8455                    "item_type_id": 5973,
8456                    "quantity_dropped": 1,
8457                    "singleton": 0
8458                  }],
8459                  "position": {
8460                    "x": 452186600569.4748,
8461                    "y": 146704961490.90222,
8462                    "z": 109514596532.54477
8463                  },
8464                  "ship_type_id": 17812
8465                }
8466              }
8467            },
8468            "headers": {
8469              "Cache-Control": {
8470                "description": "The caching mechanism used",
8471                "type": "string"
8472              },
8473              "Expires": {
8474                "description": "RFC7231 formatted datetime string",
8475                "type": "string"
8476              },
8477              "Last-Modified": {
8478                "description": "RFC7231 formatted datetime string",
8479                "type": "string"
8480              }
8481            },
8482            "schema": {
8483              "description": "200 ok object",
8484              "properties": {
8485                "attackers": {
8486                  "description": "attackers array",
8487                  "items": {
8488                    "description": "attacker object",
8489                    "properties": {
8490                      "alliance_id": {
8491                        "description": "alliance_id integer",
8492                        "format": "int32",
8493                        "title": "get_killmails_killmail_id_killmail_hash_alliance_id",
8494                        "type": "integer"
8495                      },
8496                      "character_id": {
8497                        "description": "character_id integer",
8498                        "format": "int32",
8499                        "title": "get_killmails_killmail_id_killmail_hash_character_id",
8500                        "type": "integer"
8501                      },
8502                      "corporation_id": {
8503                        "description": "corporation_id integer",
8504                        "format": "int32",
8505                        "title": "get_killmails_killmail_id_killmail_hash_corporation_id",
8506                        "type": "integer"
8507                      },
8508                      "damage_done": {
8509                        "description": "damage_done integer",
8510                        "format": "int32",
8511                        "title": "get_killmails_killmail_id_killmail_hash_damage_done",
8512                        "type": "integer"
8513                      },
8514                      "faction_id": {
8515                        "description": "faction_id integer",
8516                        "format": "int32",
8517                        "title": "get_killmails_killmail_id_killmail_hash_faction_id",
8518                        "type": "integer"
8519                      },
8520                      "final_blow": {
8521                        "description": "Was the attacker the one to achieve the final blow\n",
8522                        "title": "get_killmails_killmail_id_killmail_hash_final_blow",
8523                        "type": "boolean"
8524                      },
8525                      "security_status": {
8526                        "description": "Security status for the attacker\n",
8527                        "format": "float",
8528                        "title": "get_killmails_killmail_id_killmail_hash_security_status",
8529                        "type": "number"
8530                      },
8531                      "ship_type_id": {
8532                        "description": "What ship was the attacker flying\n",
8533                        "format": "int32",
8534                        "title": "get_killmails_killmail_id_killmail_hash_ship_type_id",
8535                        "type": "integer"
8536                      },
8537                      "weapon_type_id": {
8538                        "description": "What weapon was used by the attacker for the kill\n",
8539                        "format": "int32",
8540                        "title": "get_killmails_killmail_id_killmail_hash_weapon_type_id",
8541                        "type": "integer"
8542                      }
8543                    },
8544                    "required": ["security_status", "final_blow", "damage_done"],
8545                    "title": "get_killmails_killmail_id_killmail_hash_attacker",
8546                    "type": "object"
8547                  },
8548                  "title": "get_killmails_killmail_id_killmail_hash_attackers",
8549                  "type": "array"
8550                },
8551                "killmail_id": {
8552                  "description": "ID of the killmail",
8553                  "format": "int32",
8554                  "title": "get_killmails_killmail_id_killmail_hash_killmail_id",
8555                  "type": "integer"
8556                },
8557                "killmail_time": {
8558                  "description": "Time that the victim was killed and the killmail generated\n",
8559                  "format": "date-time",
8560                  "title": "get_killmails_killmail_id_killmail_hash_killmail_time",
8561                  "type": "string"
8562                },
8563                "moon_id": {
8564                  "description": "Moon if the kill took place at one",
8565                  "format": "int32",
8566                  "title": "get_killmails_killmail_id_killmail_hash_moon_id",
8567                  "type": "integer"
8568                },
8569                "solar_system_id": {
8570                  "description": "Solar system that the kill took place in\n",
8571                  "format": "int32",
8572                  "title": "get_killmails_killmail_id_killmail_hash_solar_system_id",
8573                  "type": "integer"
8574                },
8575                "victim": {
8576                  "description": "victim object",
8577                  "properties": {
8578                    "alliance_id": {
8579                      "description": "alliance_id integer",
8580                      "format": "int32",
8581                      "title": "get_killmails_killmail_id_killmail_hash_alliance_id",
8582                      "type": "integer"
8583                    },
8584                    "character_id": {
8585                      "description": "character_id integer",
8586                      "format": "int32",
8587                      "title": "get_killmails_killmail_id_killmail_hash_character_id",
8588                      "type": "integer"
8589                    },
8590                    "corporation_id": {
8591                      "description": "corporation_id integer",
8592                      "format": "int32",
8593                      "title": "get_killmails_killmail_id_killmail_hash_corporation_id",
8594                      "type": "integer"
8595                    },
8596                    "damage_taken": {
8597                      "description": "How much total damage was taken by the victim\n",
8598                      "format": "int32",
8599                      "title": "get_killmails_killmail_id_killmail_hash_damage_taken",
8600                      "type": "integer"
8601                    },
8602                    "faction_id": {
8603                      "description": "faction_id integer",
8604                      "format": "int32",
8605                      "title": "get_killmails_killmail_id_killmail_hash_faction_id",
8606                      "type": "integer"
8607                    },
8608                    "items": {
8609                      "description": "items array",
8610                      "items": {
8611                        "description": "item object",
8612                        "properties": {
8613                          "flag": {
8614                            "description": "Flag for the location of the item\n",
8615                            "format": "int32",
8616                            "title": "get_killmails_killmail_id_killmail_hash_flag",
8617                            "type": "integer"
8618                          },
8619                          "item_type_id": {
8620                            "description": "item_type_id integer",
8621                            "format": "int32",
8622                            "title": "get_killmails_killmail_id_killmail_hash_item_type_id",
8623                            "type": "integer"
8624                          },
8625                          "items": {
8626                            "description": "items array",
8627                            "items": {
8628                              "description": "item object",
8629                              "properties": {
8630                                "flag": {
8631                                  "description": "flag integer",
8632                                  "format": "int32",
8633                                  "title": "get_killmails_killmail_id_killmail_hash_flag",
8634                                  "type": "integer"
8635                                },
8636                                "item_type_id": {
8637                                  "description": "item_type_id integer",
8638                                  "format": "int32",
8639                                  "title": "get_killmails_killmail_id_killmail_hash_item_type_id",
8640                                  "type": "integer"
8641                                },
8642                                "quantity_destroyed": {
8643                                  "description": "quantity_destroyed integer",
8644                                  "format": "int64",
8645                                  "title": "get_killmails_killmail_id_killmail_hash_quantity_destroyed",
8646                                  "type": "integer"
8647                                },
8648                                "quantity_dropped": {
8649                                  "description": "quantity_dropped integer",
8650                                  "format": "int64",
8651                                  "title": "get_killmails_killmail_id_killmail_hash_quantity_dropped",
8652                                  "type": "integer"
8653                                },
8654                                "singleton": {
8655                                  "description": "singleton integer",
8656                                  "format": "int32",
8657                                  "title": "get_killmails_killmail_id_killmail_hash_singleton",
8658                                  "type": "integer"
8659                                }
8660                              },
8661                              "required": ["item_type_id", "singleton", "flag"],
8662                              "title": "get_killmails_killmail_id_killmail_hash_item",
8663                              "type": "object"
8664                            },
8665                            "title": "get_killmails_killmail_id_killmail_hash_items",
8666                            "type": "array"
8667                          },
8668                          "quantity_destroyed": {
8669                            "description": "How many of the item were destroyed if any\n",
8670                            "format": "int64",
8671                            "title": "get_killmails_killmail_id_killmail_hash_quantity_destroyed",
8672                            "type": "integer"
8673                          },
8674                          "quantity_dropped": {
8675                            "description": "How many of the item were dropped if any\n",
8676                            "format": "int64",
8677                            "title": "get_killmails_killmail_id_killmail_hash_quantity_dropped",
8678                            "type": "integer"
8679                          },
8680                          "singleton": {
8681                            "description": "singleton integer",
8682                            "format": "int32",
8683                            "title": "get_killmails_killmail_id_killmail_hash_singleton",
8684                            "type": "integer"
8685                          }
8686                        },
8687                        "required": ["item_type_id", "singleton", "flag"],
8688                        "title": "get_killmails_killmail_id_killmail_hash_item",
8689                        "type": "object"
8690                      },
8691                      "title": "get_killmails_killmail_id_killmail_hash_items",
8692                      "type": "array"
8693                    },
8694                    "position": {
8695                      "description": "Coordinates of the victim in Cartesian space relative to the Sun\n",
8696                      "properties": {
8697                        "x": {
8698                          "description": "x number",
8699                          "format": "float",
8700                          "title": "get_killmails_killmail_id_killmail_hash_x",
8701                          "type": "number"
8702                        },
8703                        "y": {
8704                          "description": "y number",
8705                          "format": "float",
8706                          "title": "get_killmails_killmail_id_killmail_hash_y",
8707                          "type": "number"
8708                        },
8709                        "z": {
8710                          "description": "z number",
8711                          "format": "float",
8712                          "title": "get_killmails_killmail_id_killmail_hash_z",
8713                          "type": "number"
8714                        }
8715                      },
8716                      "required": ["x", "y", "z"],
8717                      "title": "get_killmails_killmail_id_killmail_hash_position",
8718                      "type": "object"
8719                    },
8720                    "ship_type_id": {
8721                      "description": "The ship that the victim was piloting and was destroyed\n",
8722                      "format": "int32",
8723                      "title": "get_killmails_killmail_id_killmail_hash_ship_type_id",
8724                      "type": "integer"
8725                    }
8726                  },
8727                  "required": ["damage_taken", "ship_type_id"],
8728                  "title": "get_killmails_killmail_id_killmail_hash_victim",
8729                  "type": "object"
8730                },
8731                "war_id": {
8732                  "description": "War if the killmail is generated in relation to an official war\n",
8733                  "format": "int32",
8734                  "title": "get_killmails_killmail_id_killmail_hash_war_id",
8735                  "type": "integer"
8736                }
8737              },
8738              "required": ["killmail_id", "killmail_time", "victim", "attackers", "solar_system_id"],
8739              "title": "get_killmails_killmail_id_killmail_hash_ok",
8740              "type": "object"
8741            }
8742          },
8743          "422": {
8744            "description": "Errors in query parameters",
8745            "examples": {
8746              "application/json": {
8747                "error": "56769403 and/or 2ec3ac328d4ac4769817285be884cc6c004efa0c is not valid\n"
8748              }
8749            },
8750            "schema": {
8751              "description": "killmail_id and/or killmail_hash is not valid",
8752              "properties": {
8753                "error": {
8754                  "description": "error message",
8755                  "title": "get_killmails_killmail_id_killmail_hash_error",
8756                  "type": "string"
8757                }
8758              },
8759              "title": "get_killmails_killmail_id_killmail_hash_unprocessable_entity",
8760              "type": "object"
8761            }
8762          },
8763          "500": {
8764            "description": "Internal server error",
8765            "examples": {
8766              "application/json": {
8767                "error": "uncaught exception: IOError('out of memory')"
8768              }
8769            },
8770            "schema": {
8771              "description": "Internal server error",
8772              "properties": {
8773                "error": {
8774                  "description": "Internal server error message",
8775                  "title": "get_killmails_killmail_id_killmail_hash_500_internal_server_error",
8776                  "type": "string"
8777                }
8778              },
8779              "title": "get_killmails_killmail_id_killmail_hash_internal_server_error",
8780              "type": "object"
8781            }
8782          }
8783        },
8784        "summary": "Get a single killmail",
8785        "tags": ["Killmails"]
8786      }
8787    },
8788    "/markets/prices/": {
8789      "get": {
8790        "description": "Return a list of prices\n\n---\n\nAlternate route: `/v1/markets/prices/`\n\nAlternate route: `/legacy/markets/prices/`\n\nAlternate route: `/dev/markets/prices/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
8791        "operationId": "get_markets_prices",
8792        "parameters": [{
8793          "default": "tranquility",
8794          "description": "The server name you would like data from",
8795          "enum": ["tranquility", "singularity"],
8796          "in": "query",
8797          "name": "datasource",
8798          "type": "string"
8799        }],
8800        "responses": {
8801          "200": {
8802            "description": "A list of prices",
8803            "examples": {
8804              "application/json": [{
8805                "adjusted_price": 306988.09,
8806                "average_price": 306292.67,
8807                "type_id": 32772
8808              }]
8809            },
8810            "headers": {
8811              "Cache-Control": {
8812                "description": "The caching mechanism used",
8813                "type": "string"
8814              },
8815              "Expires": {
8816                "description": "RFC7231 formatted datetime string",
8817                "type": "string"
8818              },
8819              "Last-Modified": {
8820                "description": "RFC7231 formatted datetime string",
8821                "type": "string"
8822              }
8823            },
8824            "schema": {
8825              "description": "200 ok array",
8826              "items": {
8827                "description": "200 ok object",
8828                "properties": {
8829                  "adjusted_price": {
8830                    "description": "adjusted_price number",
8831                    "format": "float",
8832                    "title": "get_markets_prices_adjusted_price",
8833                    "type": "number"
8834                  },
8835                  "average_price": {
8836                    "description": "average_price number",
8837                    "format": "float",
8838                    "title": "get_markets_prices_average_price",
8839                    "type": "number"
8840                  },
8841                  "type_id": {
8842                    "description": "type_id integer",
8843                    "format": "int32",
8844                    "title": "get_markets_prices_type_id",
8845                    "type": "integer"
8846                  }
8847                },
8848                "required": ["type_id"],
8849                "title": "get_markets_prices_200_ok",
8850                "type": "object"
8851              },
8852              "title": "get_markets_prices_ok",
8853              "type": "array"
8854            }
8855          },
8856          "500": {
8857            "description": "Internal server error",
8858            "examples": {
8859              "application/json": {
8860                "error": "uncaught exception: IOError('out of memory')"
8861              }
8862            },
8863            "schema": {
8864              "description": "Internal server error",
8865              "properties": {
8866                "error": {
8867                  "description": "Internal server error message",
8868                  "title": "get_markets_prices_500_internal_server_error",
8869                  "type": "string"
8870                }
8871              },
8872              "title": "get_markets_prices_internal_server_error",
8873              "type": "object"
8874            }
8875          }
8876        },
8877        "summary": "List market prices",
8878        "tags": ["Market"]
8879      }
8880    },
8881    "/markets/{region_id}/history/": {
8882      "get": {
8883        "description": "Return a list of historical market statistics for the specified type in a region\n\n---\n\nAlternate route: `/v1/markets/{region_id}/history/`\n\nAlternate route: `/legacy/markets/{region_id}/history/`\n\nAlternate route: `/dev/markets/{region_id}/history/`\n\n\n---\n\nThis route is cached for up to 300 seconds",
8884        "operationId": "get_markets_region_id_history",
8885        "parameters": [{
8886          "description": "Return statistics in this region",
8887          "format": "int32",
8888          "in": "path",
8889          "name": "region_id",
8890          "required": true,
8891          "type": "integer"
8892        }, {
8893          "description": "Return statistics for this type",
8894          "format": "int32",
8895          "in": "query",
8896          "name": "type_id",
8897          "required": true,
8898          "type": "integer"
8899        }, {
8900          "default": "tranquility",
8901          "description": "The server name you would like data from",
8902          "enum": ["tranquility", "singularity"],
8903          "in": "query",
8904          "name": "datasource",
8905          "type": "string"
8906        }],
8907        "responses": {
8908          "200": {
8909            "description": "A list of historical market statistics",
8910            "examples": {
8911              "application/json": [{
8912                "average": 5.25,
8913                "date": "2015-05-01",
8914                "highest": 5.27,
8915                "lowest": 5.11,
8916                "order_count": 2267,
8917                "volume": 16276782035
8918              }]
8919            },
8920            "headers": {
8921              "Cache-Control": {
8922                "description": "The caching mechanism used",
8923                "type": "string"
8924              },
8925              "Expires": {
8926                "description": "RFC7231 formatted datetime string",
8927                "type": "string"
8928              },
8929              "Last-Modified": {
8930                "description": "RFC7231 formatted datetime string",
8931                "type": "string"
8932              }
8933            },
8934            "schema": {
8935              "description": "200 ok array",
8936              "items": {
8937                "description": "200 ok object",
8938                "properties": {
8939                  "average": {
8940                    "description": "average number",
8941                    "format": "float",
8942                    "title": "get_markets_region_id_history_average",
8943                    "type": "number"
8944                  },
8945                  "date": {
8946                    "description": "The date of this historical statistic entry",
8947                    "format": "date",
8948                    "title": "get_markets_region_id_history_date",
8949                    "type": "string"
8950                  },
8951                  "highest": {
8952                    "description": "highest number",
8953                    "format": "float",
8954                    "title": "get_markets_region_id_history_highest",
8955                    "type": "number"
8956                  },
8957                  "lowest": {
8958                    "description": "lowest number",
8959                    "format": "float",
8960                    "title": "get_markets_region_id_history_lowest",
8961                    "type": "number"
8962                  },
8963                  "order_count": {
8964                    "description": "Total number of orders happened that day",
8965                    "format": "int64",
8966                    "title": "get_markets_region_id_history_order_count",
8967                    "type": "integer"
8968                  },
8969                  "volume": {
8970                    "description": "Total",
8971                    "format": "int64",
8972                    "title": "get_markets_region_id_history_volume",
8973                    "type": "integer"
8974                  }
8975                },
8976                "required": ["date", "order_count", "volume", "highest", "average", "lowest"],
8977                "title": "get_markets_region_id_history_200_ok",
8978                "type": "object"
8979              },
8980              "title": "get_markets_region_id_history_ok",
8981              "type": "array"
8982            }
8983          },
8984          "422": {
8985            "description": "Errors in query parameters",
8986            "examples": {
8987              "application/json": {
8988                "error": "123 is not a valid market region\n"
8989              }
8990            },
8991            "schema": {
8992              "description": "bad region_id",
8993              "properties": {
8994                "error": {
8995                  "description": "error message",
8996                  "title": "get_markets_region_id_history_error",
8997                  "type": "string"
8998                }
8999              },
9000              "title": "get_markets_region_id_history_unprocessable_entity",
9001              "type": "object"
9002            }
9003          },
9004          "500": {
9005            "description": "Internal server error",
9006            "examples": {
9007              "application/json": {
9008                "error": "uncaught exception: IOError('out of memory')"
9009              }
9010            },
9011            "schema": {
9012              "description": "Internal server error",
9013              "properties": {
9014                "error": {
9015                  "description": "Internal server error message",
9016                  "title": "get_markets_region_id_history_500_internal_server_error",
9017                  "type": "string"
9018                }
9019              },
9020              "title": "get_markets_region_id_history_internal_server_error",
9021              "type": "object"
9022            }
9023          }
9024        },
9025        "summary": "List historical market statistics in a region",
9026        "tags": ["Market"]
9027      }
9028    },
9029    "/markets/{region_id}/orders/": {
9030      "get": {
9031        "description": "Return a list of orders in a region\n\n---\n\nAlternate route: `/v1/markets/{region_id}/orders/`\n\nAlternate route: `/legacy/markets/{region_id}/orders/`\n\nAlternate route: `/dev/markets/{region_id}/orders/`\n\n\n---\n\nThis route is cached for up to 300 seconds",
9032        "operationId": "get_markets_region_id_orders",
9033        "parameters": [{
9034          "description": "Return orders in this region",
9035          "format": "int32",
9036          "in": "path",
9037          "name": "region_id",
9038          "required": true,
9039          "type": "integer"
9040        }, {
9041          "description": "Return orders only for this type",
9042          "format": "int32",
9043          "in": "query",
9044          "name": "type_id",
9045          "required": false,
9046          "type": "integer"
9047        }, {
9048          "default": "all",
9049          "description": "Filter buy/sell orders, return all orders by default. If you query without type_id, we always return both buy and sell orders.\n",
9050          "enum": ["buy", "sell", "all"],
9051          "in": "query",
9052          "name": "order_type",
9053          "required": true,
9054          "type": "string"
9055        }, {
9056          "default": 1,
9057          "description": "Which page to query, only used for querying without type_id. Starting at 1\n",
9058          "format": "int32",
9059          "in": "query",
9060          "name": "page",
9061          "required": false,
9062          "type": "integer"
9063        }, {
9064          "default": "tranquility",
9065          "description": "The server name you would like data from",
9066          "enum": ["tranquility", "singularity"],
9067          "in": "query",
9068          "name": "datasource",
9069          "type": "string"
9070        }],
9071        "responses": {
9072          "200": {
9073            "description": "A list of orders",
9074            "examples": {
9075              "application/json": [{
9076                "duration": 90,
9077                "is_buy_order": false,
9078                "issued": "2016-09-03T05:12:25Z",
9079                "location_id": 60005599,
9080                "min_volume": 1,
9081                "order_id": 4623824223,
9082                "price": 9.9,
9083                "range": "region",
9084                "type_id": 34,
9085                "volume_remain": 1296000,
9086                "volume_total": 2000000
9087              }]
9088            },
9089            "headers": {
9090              "Cache-Control": {
9091                "description": "The caching mechanism used",
9092                "type": "string"
9093              },
9094              "Expires": {
9095                "description": "RFC7231 formatted datetime string",
9096                "type": "string"
9097              },
9098              "Last-Modified": {
9099                "description": "RFC7231 formatted datetime string",
9100                "type": "string"
9101              }
9102            },
9103            "schema": {
9104              "description": "200 ok array",
9105              "items": {
9106                "description": "200 ok object",
9107                "properties": {
9108                  "duration": {
9109                    "description": "duration integer",
9110                    "format": "int32",
9111                    "title": "get_markets_region_id_orders_duration",
9112                    "type": "integer"
9113                  },
9114                  "is_buy_order": {
9115                    "description": "is_buy_order boolean",
9116                    "title": "get_markets_region_id_orders_is_buy_order",
9117                    "type": "boolean"
9118                  },
9119                  "issued": {
9120                    "description": "issued string",
9121                    "format": "date-time",
9122                    "title": "get_markets_region_id_orders_issued",
9123                    "type": "string"
9124                  },
9125                  "location_id": {
9126                    "description": "location_id integer",
9127                    "format": "int64",
9128                    "title": "get_markets_region_id_orders_location_id",
9129                    "type": "integer"
9130                  },
9131                  "min_volume": {
9132                    "description": "min_volume integer",
9133                    "format": "int32",
9134                    "title": "get_markets_region_id_orders_min_volume",
9135                    "type": "integer"
9136                  },
9137                  "order_id": {
9138                    "description": "order_id integer",
9139                    "format": "int64",
9140                    "title": "get_markets_region_id_orders_order_id",
9141                    "type": "integer"
9142                  },
9143                  "price": {
9144                    "description": "price number",
9145                    "format": "float",
9146                    "title": "get_markets_region_id_orders_price",
9147                    "type": "number"
9148                  },
9149                  "range": {
9150                    "description": "range string",
9151                    "enum": ["station", "region", "solarsystem", "1", "2", "3", "4", "5", "10", "20", "30", "40"],
9152                    "title": "get_markets_region_id_orders_range",
9153                    "type": "string"
9154                  },
9155                  "type_id": {
9156                    "description": "type_id integer",
9157                    "format": "int32",
9158                    "title": "get_markets_region_id_orders_type_id",
9159                    "type": "integer"
9160                  },
9161                  "volume_remain": {
9162                    "description": "volume_remain integer",
9163                    "format": "int32",
9164                    "title": "get_markets_region_id_orders_volume_remain",
9165                    "type": "integer"
9166                  },
9167                  "volume_total": {
9168                    "description": "volume_total integer",
9169                    "format": "int32",
9170                    "title": "get_markets_region_id_orders_volume_total",
9171                    "type": "integer"
9172                  }
9173                },
9174                "required": ["order_id", "type_id", "location_id", "volume_total", "volume_remain", "min_volume", "price", "is_buy_order", "duration", "issued", "range"],
9175                "title": "get_markets_region_id_orders_200_ok",
9176                "type": "object"
9177              },
9178              "title": "get_markets_region_id_orders_ok",
9179              "type": "array"
9180            }
9181          },
9182          "422": {
9183            "description": "Errors in query parameters",
9184            "examples": {
9185              "application/json": {
9186                "error": "123 is not a valid market region\n"
9187              }
9188            },
9189            "schema": {
9190              "description": "bad region_id",
9191              "properties": {
9192                "error": {
9193                  "description": "error message",
9194                  "title": "get_markets_region_id_orders_error",
9195                  "type": "string"
9196                }
9197              },
9198              "title": "get_markets_region_id_orders_unprocessable_entity",
9199              "type": "object"
9200            }
9201          },
9202          "500": {
9203            "description": "Internal server error",
9204            "examples": {
9205              "application/json": {
9206                "error": "uncaught exception: IOError('out of memory')"
9207              }
9208            },
9209            "schema": {
9210              "description": "Internal server error",
9211              "properties": {
9212                "error": {
9213                  "description": "Internal server error message",
9214                  "title": "get_markets_region_id_orders_500_internal_server_error",
9215                  "type": "string"
9216                }
9217              },
9218              "title": "get_markets_region_id_orders_internal_server_error",
9219              "type": "object"
9220            }
9221          }
9222        },
9223        "summary": "List orders in a region",
9224        "tags": ["Market"]
9225      }
9226    },
9227    "/search/": {
9228      "get": {
9229        "description": "Search for entities that match a given sub-string.\n\n---\n\nAlternate route: `/v1/search/`\n\nAlternate route: `/legacy/search/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
9230        "operationId": "get_search",
9231        "parameters": [{
9232          "description": "The string to search on",
9233          "in": "query",
9234          "minLength": 3,
9235          "name": "search",
9236          "required": true,
9237          "type": "string"
9238        }, {
9239          "description": "Type of entities to search for",
9240          "in": "query",
9241          "items": {
9242            "enum": ["agent", "alliance", "character", "constellation", "corporation", "faction", "inventorytype", "region", "solarsystem", "station", "wormhole"],
9243            "type": "string"
9244          },
9245          "minItems": 1,
9246          "name": "categories",
9247          "required": true,
9248          "type": "array",
9249          "uniqueItems": true
9250        }, {
9251          "default": "en-us",
9252          "description": "Search locale",
9253          "enum": ["en-us", "de", "fr", "ru", "ja", "zh"],
9254          "in": "query",
9255          "name": "language",
9256          "type": "string"
9257        }, {
9258          "default": false,
9259          "description": "Whether the search should be a strict match",
9260          "in": "query",
9261          "name": "strict",
9262          "type": "boolean"
9263        }, {
9264          "default": "tranquility",
9265          "description": "The server name you would like data from",
9266          "enum": ["tranquility", "singularity"],
9267          "in": "query",
9268          "name": "datasource",
9269          "type": "string"
9270        }],
9271        "responses": {
9272          "200": {
9273            "description": "A list of search results",
9274            "examples": {
9275              "application/json": {
9276                "solarsystem": [30002510],
9277                "station": [60004588, 60004594, 60005725, 60009106, 60012721, 60012724, 60012727]
9278              }
9279            },
9280            "headers": {
9281              "Cache-Control": {
9282                "description": "The caching mechanism used",
9283                "type": "string"
9284              },
9285              "Expires": {
9286                "description": "RFC7231 formatted datetime string",
9287                "type": "string"
9288              },
9289              "Last-Modified": {
9290                "description": "RFC7231 formatted datetime string",
9291                "type": "string"
9292              }
9293            },
9294            "schema": {
9295              "description": "200 ok object",
9296              "properties": {
9297                "agent": {
9298                  "description": "agent array",
9299                  "items": {
9300                    "description": "agent integer",
9301                    "format": "int32",
9302                    "title": "get_search_agent",
9303                    "type": "integer"
9304                  },
9305                  "title": "get_search_agent",
9306                  "type": "array"
9307                },
9308                "alliance": {
9309                  "description": "alliance array",
9310                  "items": {
9311                    "description": "alliance integer",
9312                    "format": "int32",
9313                    "title": "get_search_alliance",
9314                    "type": "integer"
9315                  },
9316                  "title": "get_search_alliance",
9317                  "type": "array"
9318                },
9319                "character": {
9320                  "description": "character array",
9321                  "items": {
9322                    "description": "character integer",
9323                    "format": "int32",
9324                    "title": "get_search_character",
9325                    "type": "integer"
9326                  },
9327                  "title": "get_search_character",
9328                  "type": "array"
9329                },
9330                "constellation": {
9331                  "description": "constellation array",
9332                  "items": {
9333                    "description": "constellation integer",
9334                    "format": "int32",
9335                    "title": "get_search_constellation",
9336                    "type": "integer"
9337                  },
9338                  "title": "get_search_constellation",
9339                  "type": "array"
9340                },
9341                "corporation": {
9342                  "description": "corporation array",
9343                  "items": {
9344                    "description": "corporation integer",
9345                    "format": "int32",
9346                    "title": "get_search_corporation",
9347                    "type": "integer"
9348                  },
9349                  "title": "get_search_corporation",
9350                  "type": "array"
9351                },
9352                "faction": {
9353                  "description": "faction array",
9354                  "items": {
9355                    "description": "faction integer",
9356                    "format": "int32",
9357                    "title": "get_search_faction",
9358                    "type": "integer"
9359                  },
9360                  "title": "get_search_faction",
9361                  "type": "array"
9362                },
9363                "inventorytype": {
9364                  "description": "inventorytype array",
9365                  "items": {
9366                    "description": "inventorytype integer",
9367                    "format": "int32",
9368                    "title": "get_search_inventorytype",
9369                    "type": "integer"
9370                  },
9371                  "title": "get_search_inventorytype",
9372                  "type": "array"
9373                },
9374                "region": {
9375                  "description": "region array",
9376                  "items": {
9377                    "description": "region integer",
9378                    "format": "int32",
9379                    "title": "get_search_region",
9380                    "type": "integer"
9381                  },
9382                  "title": "get_search_region",
9383                  "type": "array"
9384                },
9385                "solarsystem": {
9386                  "description": "solarsystem array",
9387                  "items": {
9388                    "description": "solarsystem integer",
9389                    "format": "int32",
9390                    "title": "get_search_solarsystem",
9391                    "type": "integer"
9392                  },
9393                  "title": "get_search_solarsystem",
9394                  "type": "array"
9395                },
9396                "station": {
9397                  "description": "station array",
9398                  "items": {
9399                    "description": "station integer",
9400                    "format": "int32",
9401                    "title": "get_search_station",
9402                    "type": "integer"
9403                  },
9404                  "title": "get_search_station",
9405                  "type": "array"
9406                },
9407                "wormhole": {
9408                  "description": "wormhole array",
9409                  "items": {
9410                    "description": "wormhole integer",
9411                    "format": "int32",
9412                    "title": "get_search_wormhole",
9413                    "type": "integer"
9414                  },
9415                  "title": "get_search_wormhole",
9416                  "type": "array"
9417                }
9418              },
9419              "title": "get_search_ok",
9420              "type": "object"
9421            }
9422          },
9423          "500": {
9424            "description": "Internal server error",
9425            "examples": {
9426              "application/json": {
9427                "error": "uncaught exception: IOError('out of memory')"
9428              }
9429            },
9430            "schema": {
9431              "description": "Internal server error",
9432              "properties": {
9433                "error": {
9434                  "description": "Internal server error message",
9435                  "title": "get_search_500_internal_server_error",
9436                  "type": "string"
9437                }
9438              },
9439              "title": "get_search_internal_server_error",
9440              "type": "object"
9441            }
9442          }
9443        },
9444        "summary": "Search on a string",
9445        "tags": ["Search"]
9446      }
9447    },
9448    "/sovereignty/campaigns/": {
9449      "get": {
9450        "description": "Shows sovereignty data for campaigns.\n\n---\n\nAlternate route: `/v1/sovereignty/campaigns/`\n\nAlternate route: `/legacy/sovereignty/campaigns/`\n\nAlternate route: `/dev/sovereignty/campaigns/`\n\n\n---\n\nThis route is cached for up to 5 seconds",
9451        "operationId": "get_sovereignty_campaigns",
9452        "parameters": [{
9453          "default": "tranquility",
9454          "description": "The server name you would like data from",
9455          "enum": ["tranquility", "singularity"],
9456          "in": "query",
9457          "name": "datasource",
9458          "type": "string"
9459        }],
9460        "responses": {
9461          "200": {
9462            "description": "A list of sovereignty campaigns",
9463            "examples": {
9464              "application/json": [{
9465                "attackers_score": 0.4,
9466                "campaign_id": 32833,
9467                "constellation_id": 20000125,
9468                "defender_id": 1695357456,
9469                "defender_score": 0.6,
9470                "event_type": "station_defense",
9471                "solar_system_id": 30000856,
9472                "start_time": "2016-10-29T14:34:40Z",
9473                "structure_id": 61001096
9474              }]
9475            },
9476            "headers": {
9477              "Cache-Control": {
9478                "description": "The caching mechanism used",
9479                "type": "string"
9480              },
9481              "Expires": {
9482                "description": "RFC7231 formatted datetime string",
9483                "type": "string"
9484              },
9485              "Last-Modified": {
9486                "description": "RFC7231 formatted datetime string",
9487                "type": "string"
9488              }
9489            },
9490            "schema": {
9491              "description": "200 ok array",
9492              "items": {
9493                "description": "200 ok object",
9494                "properties": {
9495                  "attackers_score": {
9496                    "description": "Score for all attacking parties, only present in Defense Events.\n",
9497                    "format": "float",
9498                    "title": "get_sovereignty_campaigns_attackers_score",
9499                    "type": "number"
9500                  },
9501                  "campaign_id": {
9502                    "description": "Unique ID for this campaign.",
9503                    "format": "int32",
9504                    "title": "get_sovereignty_campaigns_campaign_id",
9505                    "type": "integer"
9506                  },
9507                  "constellation_id": {
9508                    "description": "The constellation in which the campaign will take place.\n",
9509                    "format": "int32",
9510                    "title": "get_sovereignty_campaigns_constellation_id",
9511                    "type": "integer"
9512                  },
9513                  "defender_id": {
9514                    "description": "Defending alliance, only present in Defense Events\n",
9515                    "format": "int32",
9516                    "title": "get_sovereignty_campaigns_defender_id",
9517                    "type": "integer"
9518                  },
9519                  "defender_score": {
9520                    "description": "Score for the defending alliance, only present in Defense Events.\n",
9521                    "format": "float",
9522                    "title": "get_sovereignty_campaigns_defender_score",
9523                    "type": "number"
9524                  },
9525                  "event_type": {
9526                    "description": "Type of event this campaign is for. tcu_defense, ihub_defense and station_defense are referred to as \"Defense Events\", station_freeport as \"Freeport Events\".\n",
9527                    "enum": ["tcu_defense", "ihub_defense", "station_defense", "station_freeport"],
9528                    "title": "get_sovereignty_campaigns_event_type",
9529                    "type": "string"
9530                  },
9531                  "participants": {
9532                    "description": "Alliance participating and their respective scores, only present in Freeport Events.\n",
9533                    "items": {
9534                      "description": "participant object",
9535                      "properties": {
9536                        "alliance_id": {
9537                          "description": "alliance_id integer",
9538                          "format": "int32",
9539                          "title": "get_sovereignty_campaigns_alliance_id",
9540                          "type": "integer"
9541                        },
9542                        "score": {
9543                          "description": "score number",
9544                          "format": "float",
9545                          "title": "get_sovereignty_campaigns_score",
9546                          "type": "number"
9547                        }
9548                      },
9549                      "required": ["alliance_id", "score"],
9550                      "title": "get_sovereignty_campaigns_participant",
9551                      "type": "object"
9552                    },
9553                    "title": "get_sovereignty_campaigns_participants",
9554                    "type": "array"
9555                  },
9556                  "solar_system_id": {
9557                    "description": "The solar system the structure is located in.\n",
9558                    "format": "int32",
9559                    "title": "get_sovereignty_campaigns_solar_system_id",
9560                    "type": "integer"
9561                  },
9562                  "start_time": {
9563                    "description": "Time the event is scheduled to start.\n",
9564                    "format": "date-time",
9565                    "title": "get_sovereignty_campaigns_start_time",
9566                    "type": "string"
9567                  },
9568                  "structure_id": {
9569                    "description": "The structure item ID that is related to this campaign.\n",
9570                    "format": "int64",
9571                    "title": "get_sovereignty_campaigns_structure_id",
9572                    "type": "integer"
9573                  }
9574                },
9575                "required": ["campaign_id", "structure_id", "solar_system_id", "constellation_id", "event_type", "start_time"],
9576                "title": "get_sovereignty_campaigns_200_ok",
9577                "type": "object"
9578              },
9579              "title": "get_sovereignty_campaigns_ok",
9580              "type": "array"
9581            }
9582          },
9583          "500": {
9584            "description": "Internal server error",
9585            "examples": {
9586              "application/json": {
9587                "error": "uncaught exception: IOError('out of memory')"
9588              }
9589            },
9590            "schema": {
9591              "description": "Internal server error",
9592              "properties": {
9593                "error": {
9594                  "description": "Internal server error message",
9595                  "title": "get_sovereignty_campaigns_500_internal_server_error",
9596                  "type": "string"
9597                }
9598              },
9599              "title": "get_sovereignty_campaigns_internal_server_error",
9600              "type": "object"
9601            }
9602          }
9603        },
9604        "summary": "List sovereignty campaigns",
9605        "tags": ["Sovereignty"]
9606      }
9607    },
9608    "/sovereignty/structures/": {
9609      "get": {
9610        "description": "Shows sovereignty data for structures.\n\n---\n\nAlternate route: `/v1/sovereignty/structures/`\n\nAlternate route: `/legacy/sovereignty/structures/`\n\nAlternate route: `/dev/sovereignty/structures/`\n\n\n---\n\nThis route is cached for up to 120 seconds",
9611        "operationId": "get_sovereignty_structures",
9612        "parameters": [{
9613          "default": "tranquility",
9614          "description": "The server name you would like data from",
9615          "enum": ["tranquility", "singularity"],
9616          "in": "query",
9617          "name": "datasource",
9618          "type": "string"
9619        }],
9620        "responses": {
9621          "200": {
9622            "description": "A list of sovereignty structures",
9623            "examples": {
9624              "application/json": [{
9625                "alliance_id": 498125261,
9626                "solar_system_id": 30000570,
9627                "structure_id": 1018253388776,
9628                "structure_type_id": 32226,
9629                "vulnerability_occupancy_level": 2,
9630                "vulnerable_end_time": "2016-10-29T05:30:00Z",
9631                "vulnerable_start_time": "2016-10-28T20:30:00Z"
9632              }]
9633            },
9634            "headers": {
9635              "Cache-Control": {
9636                "description": "The caching mechanism used",
9637                "type": "string"
9638              },
9639              "Expires": {
9640                "description": "RFC7231 formatted datetime string",
9641                "type": "string"
9642              },
9643              "Last-Modified": {
9644                "description": "RFC7231 formatted datetime string",
9645                "type": "string"
9646              }
9647            },
9648            "schema": {
9649              "description": "200 ok array",
9650              "items": {
9651                "description": "200 ok object",
9652                "properties": {
9653                  "alliance_id": {
9654                    "description": "The alliance that owns the structure.\n",
9655                    "format": "int32",
9656                    "title": "get_sovereignty_structures_alliance_id",
9657                    "type": "integer"
9658                  },
9659                  "solar_system_id": {
9660                    "description": "Solar system in which the structure is located.\n",
9661                    "format": "int32",
9662                    "title": "get_sovereignty_structures_solar_system_id",
9663                    "type": "integer"
9664                  },
9665                  "structure_id": {
9666                    "description": "Unique item ID for this structure.",
9667                    "format": "int64",
9668                    "title": "get_sovereignty_structures_structure_id",
9669                    "type": "integer"
9670                  },
9671                  "structure_type_id": {
9672                    "description": "A reference to the type of structure this is.\n",
9673                    "format": "int32",
9674                    "title": "get_sovereignty_structures_structure_type_id",
9675                    "type": "integer"
9676                  },
9677                  "vulnerability_occupancy_level": {
9678                    "description": "The occupancy level for the next or current vulnerability window. This takes into account all development indexes and capital system bonuses. Also known as Activity Defense Multiplier from in the client. It increases the time that attackers must spend using their entosis links on the structure.\n",
9679                    "format": "float",
9680                    "title": "get_sovereignty_structures_vulnerability_occupancy_level",
9681                    "type": "number"
9682                  },
9683                  "vulnerable_end_time": {
9684                    "description": "The time at which the next or current vulnerability window ends. At the end of a vulnerability window the next window is recalculated and locked in along with the vulnerabilityOccupancyLevel. If the structure is not in 100% entosis control of the defender, it will go in to 'overtime' and stay vulnerable for as long as that situation persists. Only once the defenders have 100% entosis control and has the vulnerableEndTime passed does the vulnerability interval expire and a new one is calculated.\n",
9685                    "format": "date-time",
9686                    "title": "get_sovereignty_structures_vulnerable_end_time",
9687                    "type": "string"
9688                  },
9689                  "vulnerable_start_time": {
9690                    "description": "The next time at which the structure will become vulnerable. Or the start time of the current window if current time is between this and vulnerableEndTime.\n",
9691                    "format": "date-time",
9692                    "title": "get_sovereignty_structures_vulnerable_start_time",
9693                    "type": "string"
9694                  }
9695                },
9696                "required": ["alliance_id", "solar_system_id", "structure_id", "structure_type_id"],
9697                "title": "get_sovereignty_structures_200_ok",
9698                "type": "object"
9699              },
9700              "title": "get_sovereignty_structures_ok",
9701              "type": "array"
9702            }
9703          },
9704          "500": {
9705            "description": "Internal server error",
9706            "examples": {
9707              "application/json": {
9708                "error": "uncaught exception: IOError('out of memory')"
9709              }
9710            },
9711            "schema": {
9712              "description": "Internal server error",
9713              "properties": {
9714                "error": {
9715                  "description": "Internal server error message",
9716                  "title": "get_sovereignty_structures_500_internal_server_error",
9717                  "type": "string"
9718                }
9719              },
9720              "title": "get_sovereignty_structures_internal_server_error",
9721              "type": "object"
9722            }
9723          }
9724        },
9725        "summary": "List sovereignty structures",
9726        "tags": ["Sovereignty"]
9727      }
9728    },
9729    "/ui/autopilot/waypoint/": {
9730      "post": {
9731        "description": "Set a solar system as autopilot waypoint\n\n---\n\nAlternate route: `/v2/ui/autopilot/waypoint/`\n\nAlternate route: `/dev/ui/autopilot/waypoint/`\n",
9732        "operationId": "post_ui_autopilot_waypoint",
9733        "parameters": [{
9734          "description": "The destination to travel to, can be solar system, station or structure's id",
9735          "format": "int64",
9736          "in": "query",
9737          "name": "destination_id",
9738          "required": true,
9739          "type": "integer"
9740        }, {
9741          "default": false,
9742          "description": "Whether clean other waypoints beforing adding this one",
9743          "in": "query",
9744          "name": "clear_other_waypoints",
9745          "required": true,
9746          "type": "boolean"
9747        }, {
9748          "default": false,
9749          "description": "Whether this solar system should be added to the beginning of all waypoints",
9750          "in": "query",
9751          "name": "add_to_beginning",
9752          "required": true,
9753          "type": "boolean"
9754        }, {
9755          "default": "tranquility",
9756          "description": "The server name you would like data from",
9757          "enum": ["tranquility", "singularity"],
9758          "in": "query",
9759          "name": "datasource",
9760          "type": "string"
9761        }],
9762        "responses": {
9763          "204": {
9764            "description": "Open window request received"
9765          },
9766          "403": {
9767            "description": "Forbidden",
9768            "examples": {
9769              "application/json": {
9770                "error": "Token is not valid for scope(s): esi-ui.write_waypoint.v1"
9771              }
9772            },
9773            "schema": {
9774              "description": "Forbidden",
9775              "properties": {
9776                "error": {
9777                  "description": "Forbidden message",
9778                  "title": "post_ui_autopilot_waypoint_403_forbidden",
9779                  "type": "string"
9780                }
9781              },
9782              "title": "post_ui_autopilot_waypoint_forbidden",
9783              "type": "object"
9784            }
9785          },
9786          "500": {
9787            "description": "Internal server error",
9788            "examples": {
9789              "application/json": {
9790                "error": "uncaught exception: IOError('out of memory')"
9791              }
9792            },
9793            "schema": {
9794              "description": "Internal server error",
9795              "properties": {
9796                "error": {
9797                  "description": "Internal server error message",
9798                  "title": "post_ui_autopilot_waypoint_500_internal_server_error",
9799                  "type": "string"
9800                }
9801              },
9802              "title": "post_ui_autopilot_waypoint_internal_server_error",
9803              "type": "object"
9804            }
9805          }
9806        },
9807        "security": [{
9808          "evesso": ["esi-ui.write_waypoint.v1"]
9809        }],
9810        "summary": "Set Autopilot Waypoint",
9811        "tags": ["User Interface"]
9812      }
9813    },
9814    "/ui/openwindow/contract/": {
9815      "post": {
9816        "description": "Open the contract window inside the client\n\n---\n\nAlternate route: `/v1/ui/openwindow/contract/`\n\nAlternate route: `/legacy/ui/openwindow/contract/`\n\nAlternate route: `/dev/ui/openwindow/contract/`\n",
9817        "operationId": "post_ui_openwindow_contract",
9818        "parameters": [{
9819          "description": "The contract to open",
9820          "format": "int32",
9821          "in": "query",
9822          "name": "contract_id",
9823          "required": true,
9824          "type": "integer"
9825        }, {
9826          "default": "tranquility",
9827          "description": "The server name you would like data from",
9828          "enum": ["tranquility", "singularity"],
9829          "in": "query",
9830          "name": "datasource",
9831          "type": "string"
9832        }],
9833        "responses": {
9834          "204": {
9835            "description": "Open window request received"
9836          },
9837          "403": {
9838            "description": "Forbidden",
9839            "examples": {
9840              "application/json": {
9841                "error": "Token is not valid for scope(s): esi-ui.open_window.v1"
9842              }
9843            },
9844            "schema": {
9845              "description": "Forbidden",
9846              "properties": {
9847                "error": {
9848                  "description": "Forbidden message",
9849                  "title": "post_ui_openwindow_contract_403_forbidden",
9850                  "type": "string"
9851                }
9852              },
9853              "title": "post_ui_openwindow_contract_forbidden",
9854              "type": "object"
9855            }
9856          },
9857          "500": {
9858            "description": "Internal server error",
9859            "examples": {
9860              "application/json": {
9861                "error": "uncaught exception: IOError('out of memory')"
9862              }
9863            },
9864            "schema": {
9865              "description": "Internal server error",
9866              "properties": {
9867                "error": {
9868                  "description": "Internal server error message",
9869                  "title": "post_ui_openwindow_contract_500_internal_server_error",
9870                  "type": "string"
9871                }
9872              },
9873              "title": "post_ui_openwindow_contract_internal_server_error",
9874              "type": "object"
9875            }
9876          }
9877        },
9878        "security": [{
9879          "evesso": ["esi-ui.open_window.v1"]
9880        }],
9881        "summary": "Open Contract Window",
9882        "tags": ["User Interface"]
9883      }
9884    },
9885    "/ui/openwindow/information/": {
9886      "post": {
9887        "description": "Open the information window for a character, corporation or alliance inside the client\n\n---\n\nAlternate route: `/v1/ui/openwindow/information/`\n\nAlternate route: `/legacy/ui/openwindow/information/`\n\nAlternate route: `/dev/ui/openwindow/information/`\n",
9888        "operationId": "post_ui_openwindow_information",
9889        "parameters": [{
9890          "description": "The target to open",
9891          "format": "int32",
9892          "in": "query",
9893          "name": "target_id",
9894          "required": true,
9895          "type": "integer"
9896        }, {
9897          "default": "tranquility",
9898          "description": "The server name you would like data from",
9899          "enum": ["tranquility", "singularity"],
9900          "in": "query",
9901          "name": "datasource",
9902          "type": "string"
9903        }],
9904        "responses": {
9905          "204": {
9906            "description": "Open window request received"
9907          },
9908          "403": {
9909            "description": "Forbidden",
9910            "examples": {
9911              "application/json": {
9912                "error": "Token is not valid for scope(s): esi-ui.open_window.v1"
9913              }
9914            },
9915            "schema": {
9916              "description": "Forbidden",
9917              "properties": {
9918                "error": {
9919                  "description": "Forbidden message",
9920                  "title": "post_ui_openwindow_information_403_forbidden",
9921                  "type": "string"
9922                }
9923              },
9924              "title": "post_ui_openwindow_information_forbidden",
9925              "type": "object"
9926            }
9927          },
9928          "500": {
9929            "description": "Internal server error",
9930            "examples": {
9931              "application/json": {
9932                "error": "uncaught exception: IOError('out of memory')"
9933              }
9934            },
9935            "schema": {
9936              "description": "Internal server error",
9937              "properties": {
9938                "error": {
9939                  "description": "Internal server error message",
9940                  "title": "post_ui_openwindow_information_500_internal_server_error",
9941                  "type": "string"
9942                }
9943              },
9944              "title": "post_ui_openwindow_information_internal_server_error",
9945              "type": "object"
9946            }
9947          }
9948        },
9949        "security": [{
9950          "evesso": ["esi-ui.open_window.v1"]
9951        }],
9952        "summary": "Open Information Window",
9953        "tags": ["User Interface"]
9954      }
9955    },
9956    "/ui/openwindow/marketdetails/": {
9957      "post": {
9958        "description": "Open the market details window for a specific typeID inside the client\n\n---\n\nAlternate route: `/v1/ui/openwindow/marketdetails/`\n\nAlternate route: `/legacy/ui/openwindow/marketdetails/`\n\nAlternate route: `/dev/ui/openwindow/marketdetails/`\n",
9959        "operationId": "post_ui_openwindow_marketdetails",
9960        "parameters": [{
9961          "description": "The item type to open in market window",
9962          "format": "int32",
9963          "in": "query",
9964          "name": "type_id",
9965          "required": true,
9966          "type": "integer"
9967        }, {
9968          "default": "tranquility",
9969          "description": "The server name you would like data from",
9970          "enum": ["tranquility", "singularity"],
9971          "in": "query",
9972          "name": "datasource",
9973          "type": "string"
9974        }],
9975        "responses": {
9976          "204": {
9977            "description": "Open window request received"
9978          },
9979          "403": {
9980            "description": "Forbidden",
9981            "examples": {
9982              "application/json": {
9983                "error": "Token is not valid for scope(s): esi-ui.open_window.v1"
9984              }
9985            },
9986            "schema": {
9987              "description": "Forbidden",
9988              "properties": {
9989                "error": {
9990                  "description": "Forbidden message",
9991                  "title": "post_ui_openwindow_marketdetails_403_forbidden",
9992                  "type": "string"
9993                }
9994              },
9995              "title": "post_ui_openwindow_marketdetails_forbidden",
9996              "type": "object"
9997            }
9998          },
9999          "500": {
10000            "description": "Internal server error",
10001            "examples": {
10002              "application/json": {
10003                "error": "uncaught exception: IOError('out of memory')"
10004              }
10005            },
10006            "schema": {
10007              "description": "Internal server error",
10008              "properties": {
10009                "error": {
10010                  "description": "Internal server error message",
10011                  "title": "post_ui_openwindow_marketdetails_500_internal_server_error",
10012                  "type": "string"
10013                }
10014              },
10015              "title": "post_ui_openwindow_marketdetails_internal_server_error",
10016              "type": "object"
10017            }
10018          }
10019        },
10020        "security": [{
10021          "evesso": ["esi-ui.open_window.v1"]
10022        }],
10023        "summary": "Open Market Details",
10024        "tags": ["User Interface"]
10025      }
10026    },
10027    "/ui/openwindow/newmail/": {
10028      "post": {
10029        "description": "Open the New Mail window, according to settings from the request if applicable\n\n---\n\nAlternate route: `/v1/ui/openwindow/newmail/`\n\nAlternate route: `/legacy/ui/openwindow/newmail/`\n\nAlternate route: `/dev/ui/openwindow/newmail/`\n",
10030        "operationId": "post_ui_openwindow_newmail",
10031        "parameters": [{
10032          "description": "The item type to open in market window",
10033          "in": "body",
10034          "name": "new_mail",
10035          "required": true,
10036          "schema": {
10037            "description": "new_mail object",
10038            "properties": {
10039              "body": {
10040                "description": "body string",
10041                "maxLength": 10000,
10042                "title": "post_ui_openwindow_newmail_body",
10043                "type": "string"
10044              },
10045              "recipients": {
10046                "description": "recipients array",
10047                "items": {
10048                  "description": "recipient integer",
10049                  "format": "int32",
10050                  "title": "post_ui_openwindow_newmail_recipient",
10051                  "type": "integer"
10052                },
10053                "maxItems": 50,
10054                "minItems": 1,
10055                "title": "post_ui_openwindow_newmail_recipients",
10056                "type": "array"
10057              },
10058              "subject": {
10059                "description": "subject string",
10060                "maxLength": 1000,
10061                "title": "post_ui_openwindow_newmail_subject",
10062                "type": "string"
10063              },
10064              "to_corp_or_alliance_id": {
10065                "description": "to_corp_or_alliance_id integer",
10066                "format": "int32",
10067                "title": "post_ui_openwindow_newmail_to_corp_or_alliance_id",
10068                "type": "integer"
10069              },
10070              "to_mailing_list_id": {
10071                "description": "Corporations, alliances and mailing lists are all types of mailing groups. You may only send to one mailing group, at a time, so you may fill out either this field or the to_corp_or_alliance_ids field",
10072                "format": "int32",
10073                "title": "post_ui_openwindow_newmail_to_mailing_list_id",
10074                "type": "integer"
10075              }
10076            },
10077            "required": ["subject", "body", "recipients"],
10078            "title": "post_ui_openwindow_newmail_new_mail",
10079            "type": "object"
10080          }
10081        }, {
10082          "default": "tranquility",
10083          "description": "The server name you would like data from",
10084          "enum": ["tranquility", "singularity"],
10085          "in": "query",
10086          "name": "datasource",
10087          "type": "string"
10088        }],
10089        "responses": {
10090          "204": {
10091            "description": "Open window request received"
10092          },
10093          "403": {
10094            "description": "Forbidden",
10095            "examples": {
10096              "application/json": {
10097                "error": "Token is not valid for scope(s): esi-ui.open_window.v1"
10098              }
10099            },
10100            "schema": {
10101              "description": "Forbidden",
10102              "properties": {
10103                "error": {
10104                  "description": "Forbidden message",
10105                  "title": "post_ui_openwindow_newmail_403_forbidden",
10106                  "type": "string"
10107                }
10108              },
10109              "title": "post_ui_openwindow_newmail_forbidden",
10110              "type": "object"
10111            }
10112          },
10113          "422": {
10114            "description": "Errors in request body",
10115            "examples": {
10116              "application/json": {
10117                "error": "error in request body"
10118              }
10119            },
10120            "schema": {
10121              "description": "422 unprocessable entity object",
10122              "properties": {
10123                "error": {
10124                  "description": "error message",
10125                  "title": "post_ui_openwindow_newmail_error",
10126                  "type": "string"
10127                }
10128              },
10129              "title": "post_ui_openwindow_newmail_unprocessable_entity",
10130              "type": "object"
10131            }
10132          },
10133          "500": {
10134            "description": "Internal server error",
10135            "examples": {
10136              "application/json": {
10137                "error": "uncaught exception: IOError('out of memory')"
10138              }
10139            },
10140            "schema": {
10141              "description": "Internal server error",
10142              "properties": {
10143                "error": {
10144                  "description": "Internal server error message",
10145                  "title": "post_ui_openwindow_newmail_500_internal_server_error",
10146                  "type": "string"
10147                }
10148              },
10149              "title": "post_ui_openwindow_newmail_internal_server_error",
10150              "type": "object"
10151            }
10152          }
10153        },
10154        "security": [{
10155          "evesso": ["esi-ui.open_window.v1"]
10156        }],
10157        "summary": "Open New Mail Window",
10158        "tags": ["User Interface"]
10159      }
10160    },
10161    "/universe/names/": {
10162      "post": {
10163        "description": "Resolve a set of IDs to names and categories. Supported ID's for resolving are: Characters, Corporations, Alliances, Stations, Solar Systems, Constellations, Regions, Types.\n\n---\n\nAlternate route: `/v1/universe/names/`\n\nAlternate route: `/legacy/universe/names/`\n",
10164        "operationId": "post_universe_names",
10165        "parameters": [{
10166          "description": "The ids to resolve",
10167          "in": "body",
10168          "name": "ids",
10169          "required": true,
10170          "schema": {
10171            "description": "ids schema",
10172            "properties": {
10173              "ids": {
10174                "description": "ids array",
10175                "items": {
10176                  "description": "id integer",
10177                  "format": "int32",
10178                  "title": "post_universe_names_id",
10179                  "type": "integer"
10180                },
10181                "minItems": 1,
10182                "title": "post_universe_names_ids",
10183                "type": "array",
10184                "uniqueItems": true
10185              }
10186            },
10187            "required": ["ids"],
10188            "title": "post_universe_names_ids"
10189          }
10190        }, {
10191          "default": "tranquility",
10192          "description": "The server name you would like data from",
10193          "enum": ["tranquility", "singularity"],
10194          "in": "query",
10195          "name": "datasource",
10196          "type": "string"
10197        }],
10198        "responses": {
10199          "200": {
10200            "description": "List of id/name associations for a set of ID's. ID's that cannot be resolved are not returned.",
10201            "examples": {
10202              "application/json": [{
10203                "category": "character",
10204                "id": 95465499,
10205                "name": "CCP Bartender"
10206              }, {
10207                "category": "solar_system",
10208                "id": 30000142,
10209                "name": "Jita"
10210              }]
10211            },
10212            "schema": {
10213              "description": "200 ok array",
10214              "items": {
10215                "description": "200 ok object",
10216                "properties": {
10217                  "category": {
10218                    "description": "category string",
10219                    "enum": ["alliance", "character", "constellation", "corporation", "inventory_type", "region", "solar_system", "station"],
10220                    "title": "post_universe_names_category",
10221                    "type": "string"
10222                  },
10223                  "id": {
10224                    "description": "id integer",
10225                    "format": "int32",
10226                    "title": "post_universe_names_id",
10227                    "type": "integer"
10228                  },
10229                  "name": {
10230                    "description": "name string",
10231                    "title": "post_universe_names_name",
10232                    "type": "string"
10233                  }
10234                },
10235                "required": ["id", "name", "category"],
10236                "title": "post_universe_names_200_ok",
10237                "type": "object"
10238              },
10239              "title": "post_universe_names_ok",
10240              "type": "array"
10241            }
10242          },
10243          "404": {
10244            "description": "no valid IDs found",
10245            "examples": {
10246              "application/json": {
10247                "error": "Not found message"
10248              }
10249            },
10250            "schema": {
10251              "description": "Not found",
10252              "properties": {
10253                "error": {
10254                  "description": "Not found message",
10255                  "title": "post_universe_names_404_not_found",
10256                  "type": "string"
10257                }
10258              },
10259              "title": "post_universe_names_not_found",
10260              "type": "object"
10261            }
10262          },
10263          "500": {
10264            "description": "Internal server error",
10265            "examples": {
10266              "application/json": {
10267                "error": "uncaught exception: IOError('out of memory')"
10268              }
10269            },
10270            "schema": {
10271              "description": "Internal server error",
10272              "properties": {
10273                "error": {
10274                  "description": "Internal server error message",
10275                  "title": "post_universe_names_500_internal_server_error",
10276                  "type": "string"
10277                }
10278              },
10279              "title": "post_universe_names_internal_server_error",
10280              "type": "object"
10281            }
10282          }
10283        },
10284        "summary": "Get names and categories for a set of ID's",
10285        "tags": ["Universe"]
10286      }
10287    },
10288    "/universe/schematics/{schematic_id}/": {
10289      "get": {
10290        "description": "Get information on a planetary factory schematic\n\n---\n\nAlternate route: `/v1/universe/schematics/{schematic_id}/`\n\nAlternate route: `/legacy/universe/schematics/{schematic_id}/`\n\nAlternate route: `/dev/universe/schematics/{schematic_id}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
10291        "operationId": "get_universe_schematics_schematic_id",
10292        "parameters": [{
10293          "description": "A PI schematic ID",
10294          "format": "int32",
10295          "in": "path",
10296          "name": "schematic_id",
10297          "required": true,
10298          "type": "integer"
10299        }, {
10300          "default": "tranquility",
10301          "description": "The server name you would like data from",
10302          "enum": ["tranquility", "singularity"],
10303          "in": "query",
10304          "name": "datasource",
10305          "type": "string"
10306        }],
10307        "responses": {
10308          "200": {
10309            "description": "Public data about a schematic",
10310            "examples": {
10311              "application/json": {
10312                "cycle_time": 1800,
10313                "schematic_name": "Bacteria"
10314              }
10315            },
10316            "headers": {
10317              "Cache-Control": {
10318                "description": "The caching mechanism used",
10319                "type": "string"
10320              },
10321              "Expires": {
10322                "description": "RFC7231 formatted datetime string",
10323                "type": "string"
10324              },
10325              "Last-Modified": {
10326                "description": "RFC7231 formatted datetime string",
10327                "type": "string"
10328              }
10329            },
10330            "schema": {
10331              "description": "200 ok object",
10332              "properties": {
10333                "cycle_time": {
10334                  "description": "Time in seconds to process a run",
10335                  "format": "int32",
10336                  "title": "get_universe_schematics_schematic_id_cycle_time",
10337                  "type": "integer"
10338                },
10339                "schematic_name": {
10340                  "description": "schematic_name string",
10341                  "title": "get_universe_schematics_schematic_id_schematic_name",
10342                  "type": "string"
10343                }
10344              },
10345              "required": ["schematic_name", "cycle_time"],
10346              "title": "get_universe_schematics_schematic_id_ok",
10347              "type": "object"
10348            }
10349          },
10350          "404": {
10351            "description": "Schematic not found",
10352            "examples": {
10353              "application/json": {
10354                "error": "Schematic not found"
10355              }
10356            },
10357            "schema": {
10358              "description": "Schematic not found",
10359              "properties": {
10360                "error": {
10361                  "description": "error message",
10362                  "title": "get_universe_schematics_schematic_id_error",
10363                  "type": "string"
10364                }
10365              },
10366              "title": "get_universe_schematics_schematic_id_not_found",
10367              "type": "object"
10368            }
10369          },
10370          "500": {
10371            "description": "Internal server error",
10372            "examples": {
10373              "application/json": {
10374                "error": "uncaught exception: IOError('out of memory')"
10375              }
10376            },
10377            "schema": {
10378              "description": "Internal server error",
10379              "properties": {
10380                "error": {
10381                  "description": "Internal server error message",
10382                  "title": "get_universe_schematics_schematic_id_500_internal_server_error",
10383                  "type": "string"
10384                }
10385              },
10386              "title": "get_universe_schematics_schematic_id_internal_server_error",
10387              "type": "object"
10388            }
10389          }
10390        },
10391        "summary": "Get schematic information",
10392        "tags": ["Planetary Interaction"]
10393      }
10394    },
10395    "/universe/stations/{station_id}/": {
10396      "get": {
10397        "description": "Public information on stations\n\n---\n\nAlternate route: `/v1/universe/stations/{station_id}/`\n\nAlternate route: `/legacy/universe/stations/{station_id}/`\n\nAlternate route: `/dev/universe/stations/{station_id}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
10398        "operationId": "get_universe_stations_station_id",
10399        "parameters": [{
10400          "description": "An Eve station ID",
10401          "format": "int32",
10402          "in": "path",
10403          "name": "station_id",
10404          "required": true,
10405          "type": "integer"
10406        }, {
10407          "default": "tranquility",
10408          "description": "The server name you would like data from",
10409          "enum": ["tranquility", "singularity"],
10410          "in": "query",
10411          "name": "datasource",
10412          "type": "string"
10413        }],
10414        "responses": {
10415          "200": {
10416            "description": "Public data about a station",
10417            "examples": {
10418              "application/json": {
10419                "solar_system_id": 30000142,
10420                "station_name": "Jita IV Moon IV - Caldari Navy Assembly Plant"
10421              }
10422            },
10423            "headers": {
10424              "Cache-Control": {
10425                "description": "The caching mechanism used",
10426                "type": "string"
10427              },
10428              "Expires": {
10429                "description": "RFC7231 formatted datetime string",
10430                "type": "string"
10431              },
10432              "Last-Modified": {
10433                "description": "RFC7231 formatted datetime string",
10434                "type": "string"
10435              }
10436            },
10437            "schema": {
10438              "description": "200 ok object",
10439              "properties": {
10440                "solar_system_id": {
10441                  "description": "solar_system_id integer",
10442                  "format": "int32",
10443                  "title": "get_universe_stations_station_id_solar_system_id",
10444                  "type": "integer"
10445                },
10446                "station_name": {
10447                  "description": "the full name of the station",
10448                  "title": "get_universe_stations_station_id_station_name",
10449                  "type": "string"
10450                }
10451              },
10452              "title": "get_universe_stations_station_id_ok",
10453              "type": "object"
10454            }
10455          },
10456          "500": {
10457            "description": "Internal server error",
10458            "examples": {
10459              "application/json": {
10460                "error": "uncaught exception: IOError('out of memory')"
10461              }
10462            },
10463            "schema": {
10464              "description": "Internal server error",
10465              "properties": {
10466                "error": {
10467                  "description": "Internal server error message",
10468                  "title": "get_universe_stations_station_id_500_internal_server_error",
10469                  "type": "string"
10470                }
10471              },
10472              "title": "get_universe_stations_station_id_internal_server_error",
10473              "type": "object"
10474            }
10475          }
10476        },
10477        "summary": "Get station information",
10478        "tags": ["Universe"]
10479      }
10480    },
10481    "/universe/structures/": {
10482      "get": {
10483        "description": "List all public structures\n\n---\n\nAlternate route: `/v1/universe/structures/`\n\nAlternate route: `/legacy/universe/structures/`\n\nAlternate route: `/dev/universe/structures/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
10484        "operationId": "get_universe_structures",
10485        "parameters": [{
10486          "default": "tranquility",
10487          "description": "The server name you would like data from",
10488          "enum": ["tranquility", "singularity"],
10489          "in": "query",
10490          "name": "datasource",
10491          "type": "string"
10492        }],
10493        "responses": {
10494          "200": {
10495            "description": "List of public structure IDs",
10496            "examples": {
10497              "application/json": [1000000017013, 1000000025062]
10498            },
10499            "headers": {
10500              "Cache-Control": {
10501                "description": "The caching mechanism used",
10502                "type": "string"
10503              },
10504              "Expires": {
10505                "description": "RFC7231 formatted datetime string",
10506                "type": "string"
10507              },
10508              "Last-Modified": {
10509                "description": "RFC7231 formatted datetime string",
10510                "type": "string"
10511              }
10512            },
10513            "schema": {
10514              "description": "200 ok array",
10515              "items": {
10516                "description": "200 ok integer",
10517                "format": "int64",
10518                "minimum": 0,
10519                "title": "get_universe_structures_200_ok",
10520                "type": "integer",
10521                "uniqueItems": true
10522              },
10523              "title": "get_universe_structures_ok",
10524              "type": "array"
10525            }
10526          },
10527          "500": {
10528            "description": "Internal server error",
10529            "examples": {
10530              "application/json": {
10531                "error": "uncaught exception: IOError('out of memory')"
10532              }
10533            },
10534            "schema": {
10535              "description": "Internal server error",
10536              "properties": {
10537                "error": {
10538                  "description": "Internal server error message",
10539                  "title": "get_universe_structures_500_internal_server_error",
10540                  "type": "string"
10541                }
10542              },
10543              "title": "get_universe_structures_internal_server_error",
10544              "type": "object"
10545            }
10546          }
10547        },
10548        "summary": "List all public structures",
10549        "tags": ["Universe"]
10550      }
10551    },
10552    "/universe/structures/{structure_id}/": {
10553      "get": {
10554        "description": "Returns information on requested structure, if you are on the ACL. Otherwise, returns \"Forbidden\" for all inputs.\n\n---\n\nAlternate route: `/v1/universe/structures/{structure_id}/`\n\nAlternate route: `/legacy/universe/structures/{structure_id}/`\n\nAlternate route: `/dev/universe/structures/{structure_id}/`\n",
10555        "operationId": "get_universe_structures_structure_id",
10556        "parameters": [{
10557          "description": "An Eve structure ID",
10558          "format": "int64",
10559          "in": "path",
10560          "name": "structure_id",
10561          "required": true,
10562          "type": "integer"
10563        }, {
10564          "default": "tranquility",
10565          "description": "The server name you would like data from",
10566          "enum": ["tranquility", "singularity"],
10567          "in": "query",
10568          "name": "datasource",
10569          "type": "string"
10570        }],
10571        "responses": {
10572          "200": {
10573            "description": "Data about a structure",
10574            "examples": {
10575              "application/json": {
10576                "name": "V-3YG7 VI - The Capital",
10577                "solar_system_id": 30000142
10578              }
10579            },
10580            "schema": {
10581              "description": "200 ok object",
10582              "properties": {
10583                "name": {
10584                  "description": "The full name of the structure",
10585                  "title": "get_universe_structures_structure_id_name",
10586                  "type": "string"
10587                },
10588                "position": {
10589                  "description": "Coordinates of the structure in Cartesian space relative to the Sun, in metres.\n",
10590                  "properties": {
10591                    "x": {
10592                      "description": "x number",
10593                      "format": "float",
10594                      "title": "get_universe_structures_structure_id_x",
10595                      "type": "number"
10596                    },
10597                    "y": {
10598                      "description": "y number",
10599                      "format": "float",
10600                      "title": "get_universe_structures_structure_id_y",
10601                      "type": "number"
10602                    },
10603                    "z": {
10604                      "description": "z number",
10605                      "format": "float",
10606                      "title": "get_universe_structures_structure_id_z",
10607                      "type": "number"
10608                    }
10609                  },
10610                  "required": ["x", "y", "z"],
10611                  "title": "get_universe_structures_structure_id_position",
10612                  "type": "object"
10613                },
10614                "solar_system_id": {
10615                  "description": "solar_system_id integer",
10616                  "format": "int32",
10617                  "title": "get_universe_structures_structure_id_solar_system_id",
10618                  "type": "integer"
10619                },
10620                "type_id": {
10621                  "description": "type_id integer",
10622                  "format": "int32",
10623                  "title": "get_universe_structures_structure_id_type_id",
10624                  "type": "integer"
10625                }
10626              },
10627              "required": ["name", "solar_system_id"],
10628              "title": "get_universe_structures_structure_id_ok",
10629              "type": "object"
10630            }
10631          },
10632          "403": {
10633            "description": "Forbidden",
10634            "examples": {
10635              "application/json": {
10636                "error": "Token is not valid for scope(s): esi-universe.read_structures.v1"
10637              }
10638            },
10639            "schema": {
10640              "description": "Forbidden",
10641              "properties": {
10642                "error": {
10643                  "description": "Forbidden message",
10644                  "title": "get_universe_structures_structure_id_403_forbidden",
10645                  "type": "string"
10646                }
10647              },
10648              "title": "get_universe_structures_structure_id_forbidden",
10649              "type": "object"
10650            }
10651          },
10652          "404": {
10653            "description": "Structure not found",
10654            "examples": {
10655              "application/json": {
10656                "error": "Not found message"
10657              }
10658            },
10659            "schema": {
10660              "description": "Not found",
10661              "properties": {
10662                "error": {
10663                  "description": "Not found message",
10664                  "title": "get_universe_structures_structure_id_404_not_found",
10665                  "type": "string"
10666                }
10667              },
10668              "title": "get_universe_structures_structure_id_not_found",
10669              "type": "object"
10670            }
10671          },
10672          "500": {
10673            "description": "Internal server error",
10674            "examples": {
10675              "application/json": {
10676                "error": "uncaught exception: IOError('out of memory')"
10677              }
10678            },
10679            "schema": {
10680              "description": "Internal server error",
10681              "properties": {
10682                "error": {
10683                  "description": "Internal server error message",
10684                  "title": "get_universe_structures_structure_id_500_internal_server_error",
10685                  "type": "string"
10686                }
10687              },
10688              "title": "get_universe_structures_structure_id_internal_server_error",
10689              "type": "object"
10690            }
10691          }
10692        },
10693        "security": [{
10694          "evesso": ["esi-universe.read_structures.v1"]
10695        }],
10696        "summary": "Get structure information",
10697        "tags": ["Universe"]
10698      }
10699    },
10700    "/universe/systems/{system_id}/": {
10701      "get": {
10702        "description": "Information on solar systems\n\n---\n\nAlternate route: `/v1/universe/systems/{system_id}/`\n\nAlternate route: `/legacy/universe/systems/{system_id}/`\n\nAlternate route: `/dev/universe/systems/{system_id}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
10703        "operationId": "get_universe_systems_system_id",
10704        "parameters": [{
10705          "description": "An Eve solar system ID",
10706          "format": "int32",
10707          "in": "path",
10708          "name": "system_id",
10709          "required": true,
10710          "type": "integer"
10711        }, {
10712          "default": "tranquility",
10713          "description": "The server name you would like data from",
10714          "enum": ["tranquility", "singularity"],
10715          "in": "query",
10716          "name": "datasource",
10717          "type": "string"
10718        }],
10719        "responses": {
10720          "200": {
10721            "description": "Data about a solar system",
10722            "examples": {
10723              "application/json": {
10724                "solar_system_name": "Jita"
10725              }
10726            },
10727            "headers": {
10728              "Cache-Control": {
10729                "description": "The caching mechanism used",
10730                "type": "string"
10731              },
10732              "Expires": {
10733                "description": "RFC7231 formatted datetime string",
10734                "type": "string"
10735              },
10736              "Last-Modified": {
10737                "description": "RFC7231 formatted datetime string",
10738                "type": "string"
10739              }
10740            },
10741            "schema": {
10742              "description": "200 ok object",
10743              "properties": {
10744                "solar_system_name": {
10745                  "description": "the full name of the system",
10746                  "title": "get_universe_systems_system_id_solar_system_name",
10747                  "type": "string"
10748                }
10749              },
10750              "title": "get_universe_systems_system_id_ok",
10751              "type": "object"
10752            }
10753          },
10754          "404": {
10755            "description": "System not found",
10756            "examples": {
10757              "application/json": {
10758                "error": "System not found"
10759              }
10760            },
10761            "schema": {
10762              "description": "System not found",
10763              "properties": {
10764                "error": {
10765                  "description": "error message",
10766                  "title": "get_universe_systems_system_id_error",
10767                  "type": "string"
10768                }
10769              },
10770              "title": "get_universe_systems_system_id_not_found",
10771              "type": "object"
10772            }
10773          },
10774          "500": {
10775            "description": "Internal server error",
10776            "examples": {
10777              "application/json": {
10778                "error": "uncaught exception: IOError('out of memory')"
10779              }
10780            },
10781            "schema": {
10782              "description": "Internal server error",
10783              "properties": {
10784                "error": {
10785                  "description": "Internal server error message",
10786                  "title": "get_universe_systems_system_id_500_internal_server_error",
10787                  "type": "string"
10788                }
10789              },
10790              "title": "get_universe_systems_system_id_internal_server_error",
10791              "type": "object"
10792            }
10793          }
10794        },
10795        "summary": "Get solar system information",
10796        "tags": ["Universe"]
10797      }
10798    },
10799    "/universe/types/{type_id}/": {
10800      "get": {
10801        "description": "Get information on a type\n\n---\n\nAlternate route: `/v1/universe/types/{type_id}/`\n\nAlternate route: `/legacy/universe/types/{type_id}/`\n\nAlternate route: `/dev/universe/types/{type_id}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
10802        "operationId": "get_universe_types_type_id",
10803        "parameters": [{
10804          "description": "An Eve item type ID",
10805          "format": "int32",
10806          "in": "path",
10807          "name": "type_id",
10808          "required": true,
10809          "type": "integer"
10810        }, {
10811          "default": "tranquility",
10812          "description": "The server name you would like data from",
10813          "enum": ["tranquility", "singularity"],
10814          "in": "query",
10815          "name": "datasource",
10816          "type": "string"
10817        }],
10818        "responses": {
10819          "200": {
10820            "description": "Public data about a type",
10821            "examples": {
10822              "application/json": {
10823                "category_id": 6,
10824                "graphic_id": 46,
10825                "group_id": 25,
10826                "type_description": "The Rifter is a very powerful combat frigate and can easily tackle the best frigates out there. It has gone through many radical design phases since its inauguration during the Minmatar Rebellion. The Rifter has a wide variety of offensive capabilities, making it an unpredictable and deadly adversary.",
10827                "type_name": "Rifter"
10828              }
10829            },
10830            "headers": {
10831              "Cache-Control": {
10832                "description": "The caching mechanism used",
10833                "type": "string"
10834              },
10835              "Expires": {
10836                "description": "RFC7231 formatted datetime string",
10837                "type": "string"
10838              },
10839              "Last-Modified": {
10840                "description": "RFC7231 formatted datetime string",
10841                "type": "string"
10842              }
10843            },
10844            "schema": {
10845              "description": "200 ok object",
10846              "properties": {
10847                "category_id": {
10848                  "description": "category_id integer",
10849                  "format": "int32",
10850                  "title": "get_universe_types_type_id_category_id",
10851                  "type": "integer"
10852                },
10853                "graphic_id": {
10854                  "description": "graphic_id integer",
10855                  "format": "int32",
10856                  "title": "get_universe_types_type_id_graphic_id",
10857                  "type": "integer"
10858                },
10859                "group_id": {
10860                  "description": "group_id integer",
10861                  "format": "int32",
10862                  "title": "get_universe_types_type_id_group_id",
10863                  "type": "integer"
10864                },
10865                "icon_id": {
10866                  "description": "icon_id integer",
10867                  "format": "int32",
10868                  "title": "get_universe_types_type_id_icon_id",
10869                  "type": "integer"
10870                },
10871                "type_description": {
10872                  "description": "type_description string",
10873                  "title": "get_universe_types_type_id_type_description",
10874                  "type": "string"
10875                },
10876                "type_name": {
10877                  "description": "type_name string",
10878                  "title": "get_universe_types_type_id_type_name",
10879                  "type": "string"
10880                }
10881              },
10882              "required": ["type_name", "type_description", "group_id", "category_id"],
10883              "title": "get_universe_types_type_id_ok",
10884              "type": "object"
10885            }
10886          },
10887          "404": {
10888            "description": "Type not found",
10889            "examples": {
10890              "application/json": {
10891                "error": "Type not found"
10892              }
10893            },
10894            "schema": {
10895              "description": "Type not found",
10896              "properties": {
10897                "error": {
10898                  "description": "error message",
10899                  "title": "get_universe_types_type_id_error",
10900                  "type": "string"
10901                }
10902              },
10903              "title": "get_universe_types_type_id_not_found",
10904              "type": "object"
10905            }
10906          },
10907          "500": {
10908            "description": "Internal server error",
10909            "examples": {
10910              "application/json": {
10911                "error": "uncaught exception: IOError('out of memory')"
10912              }
10913            },
10914            "schema": {
10915              "description": "Internal server error",
10916              "properties": {
10917                "error": {
10918                  "description": "Internal server error message",
10919                  "title": "get_universe_types_type_id_500_internal_server_error",
10920                  "type": "string"
10921                }
10922              },
10923              "title": "get_universe_types_type_id_internal_server_error",
10924              "type": "object"
10925            }
10926          }
10927        },
10928        "summary": "Get type information",
10929        "tags": ["Universe"]
10930      }
10931    },
10932    "/wars/": {
10933      "get": {
10934        "description": "Return a list of wars\n\n---\n\nAlternate route: `/v1/wars/`\n\nAlternate route: `/legacy/wars/`\n\nAlternate route: `/dev/wars/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
10935        "operationId": "get_wars",
10936        "parameters": [{
10937          "default": 1,
10938          "description": "Which page to query, starting at 1, 2000 wars per page.",
10939          "format": "int32",
10940          "in": "query",
10941          "name": "page",
10942          "required": false,
10943          "type": "integer"
10944        }, {
10945          "default": "tranquility",
10946          "description": "The server name you would like data from",
10947          "enum": ["tranquility", "singularity"],
10948          "in": "query",
10949          "name": "datasource",
10950          "type": "string"
10951        }],
10952        "responses": {
10953          "200": {
10954            "description": "A list of war IDs",
10955            "examples": {
10956              "application/json": [3, 2, 1]
10957            },
10958            "headers": {
10959              "Cache-Control": {
10960                "description": "The caching mechanism used",
10961                "type": "string"
10962              },
10963              "Expires": {
10964                "description": "RFC7231 formatted datetime string",
10965                "type": "string"
10966              },
10967              "Last-Modified": {
10968                "description": "RFC7231 formatted datetime string",
10969                "type": "string"
10970              }
10971            },
10972            "schema": {
10973              "description": "200 ok array",
10974              "items": {
10975                "description": "200 ok integer",
10976                "format": "int32",
10977                "title": "get_wars_200_ok",
10978                "type": "integer"
10979              },
10980              "title": "get_wars_ok",
10981              "type": "array"
10982            }
10983          },
10984          "500": {
10985            "description": "Internal server error",
10986            "examples": {
10987              "application/json": {
10988                "error": "uncaught exception: IOError('out of memory')"
10989              }
10990            },
10991            "schema": {
10992              "description": "Internal server error",
10993              "properties": {
10994                "error": {
10995                  "description": "Internal server error message",
10996                  "title": "get_wars_500_internal_server_error",
10997                  "type": "string"
10998                }
10999              },
11000              "title": "get_wars_internal_server_error",
11001              "type": "object"
11002            }
11003          }
11004        },
11005        "summary": "List wars",
11006        "tags": ["Wars"]
11007      }
11008    },
11009    "/wars/{war_id}/": {
11010      "get": {
11011        "description": "Return details about a war\n\n---\n\nAlternate route: `/v1/wars/{war_id}/`\n\nAlternate route: `/legacy/wars/{war_id}/`\n\nAlternate route: `/dev/wars/{war_id}/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
11012        "operationId": "get_wars_war_id",
11013        "parameters": [{
11014          "description": "ID for a war",
11015          "format": "int32",
11016          "in": "path",
11017          "name": "war_id",
11018          "required": true,
11019          "type": "integer"
11020        }, {
11021          "default": "tranquility",
11022          "description": "The server name you would like data from",
11023          "enum": ["tranquility", "singularity"],
11024          "in": "query",
11025          "name": "datasource",
11026          "type": "string"
11027        }],
11028        "responses": {
11029          "200": {
11030            "description": "Details about a war",
11031            "examples": {
11032              "application/json": {
11033                "aggressor": {
11034                  "corporation_id": 986665792,
11035                  "isk_destroyed": 0,
11036                  "ships_killed": 0
11037                },
11038                "declared": "2004-05-22T05:20:00Z",
11039                "defender": {
11040                  "corporation_id": 1001562011,
11041                  "isk_destroyed": 0,
11042                  "ships_killed": 0
11043                },
11044                "id": 1941,
11045                "mutual": false,
11046                "open_for_allies": false
11047              }
11048            },
11049            "headers": {
11050              "Cache-Control": {
11051                "description": "The caching mechanism used",
11052                "type": "string"
11053              },
11054              "Expires": {
11055                "description": "RFC7231 formatted datetime string",
11056                "type": "string"
11057              },
11058              "Last-Modified": {
11059                "description": "RFC7231 formatted datetime string",
11060                "type": "string"
11061              }
11062            },
11063            "schema": {
11064              "description": "200 ok object",
11065              "properties": {
11066                "aggressor": {
11067                  "description": "The aggressor corporation or alliance that declared this war, only contains either corporation_id or alliance_id",
11068                  "properties": {
11069                    "alliance_id": {
11070                      "description": "Alliance ID if and only if the aggressor is an alliance",
11071                      "format": "int32",
11072                      "title": "get_wars_war_id_alliance_id",
11073                      "type": "integer"
11074                    },
11075                    "corporation_id": {
11076                      "description": "Corporation ID if and only if the aggressor is a corporation",
11077                      "format": "int32",
11078                      "title": "get_wars_war_id_corporation_id",
11079                      "type": "integer"
11080                    },
11081                    "isk_destroyed": {
11082                      "description": "ISK value of ships the aggressor has destroyed",
11083                      "format": "float",
11084                      "title": "get_wars_war_id_isk_destroyed",
11085                      "type": "number"
11086                    },
11087                    "ships_killed": {
11088                      "description": "The number of ships the aggressor has killed",
11089                      "format": "int32",
11090                      "title": "get_wars_war_id_ships_killed",
11091                      "type": "integer"
11092                    }
11093                  },
11094                  "required": ["ships_killed", "isk_destroyed"],
11095                  "title": "get_wars_war_id_aggressor",
11096                  "type": "object"
11097                },
11098                "allies": {
11099                  "description": "allied corporations or alliances, each object contains either corporation_id or alliance_id",
11100                  "items": {
11101                    "description": "ally object",
11102                    "properties": {
11103                      "alliance_id": {
11104                        "description": "Alliance ID if and only if this ally is an alliance",
11105                        "format": "int32",
11106                        "title": "get_wars_war_id_alliance_id",
11107                        "type": "integer"
11108                      },
11109                      "corporation_id": {
11110                        "description": "Corporation ID if and only if this ally is a corporation",
11111                        "format": "int32",
11112                        "title": "get_wars_war_id_corporation_id",
11113                        "type": "integer"
11114                      }
11115                    },
11116                    "title": "get_wars_war_id_ally",
11117                    "type": "object"
11118                  },
11119                  "title": "get_wars_war_id_allies",
11120                  "type": "array"
11121                },
11122                "declared": {
11123                  "description": "Time that the war was declared",
11124                  "format": "date-time",
11125                  "title": "get_wars_war_id_declared",
11126                  "type": "string"
11127                },
11128                "defender": {
11129                  "description": "The defending corporation or alliance that declared this war, only contains either corporation_id or alliance_id",
11130                  "properties": {
11131                    "alliance_id": {
11132                      "description": "Alliance ID if and only if the defender is an alliance",
11133                      "format": "int32",
11134                      "title": "get_wars_war_id_alliance_id",
11135                      "type": "integer"
11136                    },
11137                    "corporation_id": {
11138                      "description": "Corporation ID if and only if the defender is a corporation",
11139                      "format": "int32",
11140                      "title": "get_wars_war_id_corporation_id",
11141                      "type": "integer"
11142                    },
11143                    "isk_destroyed": {
11144                      "description": "ISK value of ships the defender has killed",
11145                      "format": "float",
11146                      "title": "get_wars_war_id_isk_destroyed",
11147                      "type": "number"
11148                    },
11149                    "ships_killed": {
11150                      "description": "The number of ships the defender has killed",
11151                      "format": "int32",
11152                      "title": "get_wars_war_id_ships_killed",
11153                      "type": "integer"
11154                    }
11155                  },
11156                  "required": ["ships_killed", "isk_destroyed"],
11157                  "title": "get_wars_war_id_defender",
11158                  "type": "object"
11159                },
11160                "finished": {
11161                  "description": "Time the war ended and shooting was no longer allowed",
11162                  "format": "date-time",
11163                  "title": "get_wars_war_id_finished",
11164                  "type": "string"
11165                },
11166                "id": {
11167                  "description": "ID of the specified war",
11168                  "format": "int32",
11169                  "title": "get_wars_war_id_id",
11170                  "type": "integer"
11171                },
11172                "mutual": {
11173                  "description": "Was the war declared mutual by both parties",
11174                  "title": "get_wars_war_id_mutual",
11175                  "type": "boolean"
11176                },
11177                "open_for_allies": {
11178                  "description": "Is the war currently open for allies or not",
11179                  "title": "get_wars_war_id_open_for_allies",
11180                  "type": "boolean"
11181                },
11182                "retracted": {
11183                  "description": "Time the war was retracted but both sides could still shoot each other",
11184                  "format": "date-time",
11185                  "title": "get_wars_war_id_retracted",
11186                  "type": "string"
11187                },
11188                "started": {
11189                  "description": "Time when the war started and both sides could shoot each other",
11190                  "format": "date-time",
11191                  "title": "get_wars_war_id_started",
11192                  "type": "string"
11193                }
11194              },
11195              "required": ["id", "declared", "mutual", "open_for_allies", "aggressor", "defender"],
11196              "title": "get_wars_war_id_ok",
11197              "type": "object"
11198            }
11199          },
11200          "422": {
11201            "description": "Errors in query parameters",
11202            "examples": {
11203              "application/json": {
11204                "error": "{} is not a valid war ID\n"
11205              }
11206            },
11207            "schema": {
11208              "description": "war_id is not valid",
11209              "properties": {
11210                "error": {
11211                  "description": "error message",
11212                  "title": "get_wars_war_id_error",
11213                  "type": "string"
11214                }
11215              },
11216              "title": "get_wars_war_id_unprocessable_entity",
11217              "type": "object"
11218            }
11219          },
11220          "500": {
11221            "description": "Internal server error",
11222            "examples": {
11223              "application/json": {
11224                "error": "uncaught exception: IOError('out of memory')"
11225              }
11226            },
11227            "schema": {
11228              "description": "Internal server error",
11229              "properties": {
11230                "error": {
11231                  "description": "Internal server error message",
11232                  "title": "get_wars_war_id_500_internal_server_error",
11233                  "type": "string"
11234                }
11235              },
11236              "title": "get_wars_war_id_internal_server_error",
11237              "type": "object"
11238            }
11239          }
11240        },
11241        "summary": "Get war information",
11242        "tags": ["Wars"]
11243      }
11244    },
11245    "/wars/{war_id}/killmails/": {
11246      "get": {
11247        "description": "Return a list of kills related to a war\n\n---\n\nAlternate route: `/v1/wars/{war_id}/killmails/`\n\nAlternate route: `/legacy/wars/{war_id}/killmails/`\n\nAlternate route: `/dev/wars/{war_id}/killmails/`\n\n\n---\n\nThis route is cached for up to 3600 seconds",
11248        "operationId": "get_wars_war_id_killmails",
11249        "parameters": [{
11250          "description": "A valid war ID",
11251          "format": "int32",
11252          "in": "path",
11253          "name": "war_id",
11254          "required": true,
11255          "type": "integer"
11256        }, {
11257          "default": 1,
11258          "description": "Which page to query, starting at 1, 2000 killmails per page.",
11259          "format": "int32",
11260          "in": "query",
11261          "name": "page",
11262          "required": false,
11263          "type": "integer"
11264        }, {
11265          "default": "tranquility",
11266          "description": "The server name you would like data from",
11267          "enum": ["tranquility", "singularity"],
11268          "in": "query",
11269          "name": "datasource",
11270          "type": "string"
11271        }],
11272        "responses": {
11273          "200": {
11274            "description": "A list of killmail IDs and hashes",
11275            "examples": {
11276              "application/json": [{
11277                "killmail_hash": "8eef5e8fb6b88fe3407c489df33822b2e3b57a5e",
11278                "killmail_id": 2
11279              }, {
11280                "killmail_hash": "b41ccb498ece33d64019f64c0db392aa3aa701fb",
11281                "killmail_id": 1
11282              }]
11283            },
11284            "headers": {
11285              "Cache-Control": {
11286                "description": "The caching mechanism used",
11287                "type": "string"
11288              },
11289              "Expires": {
11290                "description": "RFC7231 formatted datetime string",
11291                "type": "string"
11292              },
11293              "Last-Modified": {
11294                "description": "RFC7231 formatted datetime string",
11295                "type": "string"
11296              }
11297            },
11298            "schema": {
11299              "description": "200 ok array",
11300              "items": {
11301                "description": "200 ok object",
11302                "properties": {
11303                  "killmail_hash": {
11304                    "description": "A hash of this killmail",
11305                    "title": "get_wars_war_id_killmails_killmail_hash",
11306                    "type": "string"
11307                  },
11308                  "killmail_id": {
11309                    "description": "ID of this killmail",
11310                    "format": "int32",
11311                    "title": "get_wars_war_id_killmails_killmail_id",
11312                    "type": "integer"
11313                  }
11314                },
11315                "required": ["killmail_id", "killmail_hash"],
11316                "title": "get_wars_war_id_killmails_200_ok",
11317                "type": "object"
11318              },
11319              "title": "get_wars_war_id_killmails_ok",
11320              "type": "array"
11321            }
11322          },
11323          "422": {
11324            "description": "Errors in query parameters",
11325            "examples": {
11326              "application/json": {
11327                "error": "{} is not a valid war ID\n"
11328              }
11329            },
11330            "schema": {
11331              "description": "war_id is not valid",
11332              "properties": {
11333                "error": {
11334                  "description": "error message",
11335                  "title": "get_wars_war_id_killmails_error",
11336                  "type": "string"
11337                }
11338              },
11339              "title": "get_wars_war_id_killmails_unprocessable_entity",
11340              "type": "object"
11341            }
11342          },
11343          "500": {
11344            "description": "Internal server error",
11345            "examples": {
11346              "application/json": {
11347                "error": "uncaught exception: IOError('out of memory')"
11348              }
11349            },
11350            "schema": {
11351              "description": "Internal server error",
11352              "properties": {
11353                "error": {
11354                  "description": "Internal server error message",
11355                  "title": "get_wars_war_id_killmails_500_internal_server_error",
11356                  "type": "string"
11357                }
11358              },
11359              "title": "get_wars_war_id_killmails_internal_server_error",
11360              "type": "object"
11361            }
11362          }
11363        },
11364        "summary": "List kills for a war",
11365        "tags": ["Wars"]
11366      }
11367    }
11368  },
11369  "produces": ["application/json"],
11370  "schemes": ["https"],
11371  "securityDefinitions": {
11372    "evesso": {
11373      "authorizationUrl": "https://login.eveonline.com/oauth/authorize",
11374      "flow": "implicit",
11375      "scopes": {
11376        "esi-assets.read_assets.v1": "EVE SSO scope esi-assets.read_assets.v1",
11377        "esi-bookmarks.read_character_bookmarks.v1": "EVE SSO scope esi-bookmarks.read_character_bookmarks.v1",
11378        "esi-calendar.read_calendar_events.v1": "EVE SSO scope esi-calendar.read_calendar_events.v1",
11379        "esi-calendar.respond_calendar_events.v1": "EVE SSO scope esi-calendar.respond_calendar_events.v1",
11380        "esi-characters.read_contacts.v1": "EVE SSO scope esi-characters.read_contacts.v1",
11381        "esi-characters.write_contacts.v1": "EVE SSO scope esi-characters.write_contacts.v1",
11382        "esi-clones.read_clones.v1": "EVE SSO scope esi-clones.read_clones.v1",
11383        "esi-corporations.read_corporation_membership.v1": "EVE SSO scope esi-corporations.read_corporation_membership.v1",
11384        "esi-fleets.read_fleet.v1": "EVE SSO scope esi-fleets.read_fleet.v1",
11385        "esi-fleets.write_fleet.v1": "EVE SSO scope esi-fleets.write_fleet.v1",
11386        "esi-killmails.read_killmails.v1": "EVE SSO scope esi-killmails.read_killmails.v1",
11387        "esi-location.read_location.v1": "EVE SSO scope esi-location.read_location.v1",
11388        "esi-location.read_ship_type.v1": "EVE SSO scope esi-location.read_ship_type.v1",
11389        "esi-mail.organize_mail.v1": "EVE SSO scope esi-mail.organize_mail.v1",
11390        "esi-mail.read_mail.v1": "EVE SSO scope esi-mail.read_mail.v1",
11391        "esi-mail.send_mail.v1": "EVE SSO scope esi-mail.send_mail.v1",
11392        "esi-planets.manage_planets.v1": "EVE SSO scope esi-planets.manage_planets.v1",
11393        "esi-search.search_structures.v1": "EVE SSO scope esi-search.search_structures.v1",
11394        "esi-skills.read_skillqueue.v1": "EVE SSO scope esi-skills.read_skillqueue.v1",
11395        "esi-skills.read_skills.v1": "EVE SSO scope esi-skills.read_skills.v1",
11396        "esi-ui.open_window.v1": "EVE SSO scope esi-ui.open_window.v1",
11397        "esi-ui.write_waypoint.v1": "EVE SSO scope esi-ui.write_waypoint.v1",
11398        "esi-universe.read_structures.v1": "EVE SSO scope esi-universe.read_structures.v1",
11399        "esi-wallet.read_character_wallet.v1": "EVE SSO scope esi-wallet.read_character_wallet.v1"
11400      },
11401      "type": "oauth2"
11402    }
11403  },
11404  "swagger": "2.0"
11405}
11406