-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcosmos.yaml
95 lines (95 loc) · 2.26 KB
/
cosmos.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
openapi: "3.0.0"
info:
version: 1.0.0
title: Cosmos
description: A sample API that retrieves constellations as an example to demonstrate features in the OpenAPI 3.0 specification
license:
name: MIT
servers:
- url: https://e8c086f7-a5c9-4752-b81f-bfac0d0dc5d2.mock.pstmn.io
paths:
/cosmos:
get:
description: Returns all constellations in this sample dataset
summary: List all cosmos
operationId: listCosmos
tags:
- cosmos
responses:
"200":
description: An array of constellations
content:
application/json:
schema:
$ref: "#/components/schemas/Cosmos"
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/cosmos/{cosmoId}:
get:
description: Returns a constellation based on a single ID
summary: Info for a specific constellation
operationId: showCosmoById
tags:
- cosmos
parameters:
- name: cosmoId
in: path
required: true
description: The id of the constellation to retrieve
schema:
type: string
responses:
"200":
description: Expected response to a valid request
content:
application/json:
schema:
$ref: "#/components/schemas/Cosmo"
default:
description: unexpected error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
components:
schemas:
Cosmos:
type: array
required:
- id
- name
properties:
id:
type: integer
format: int64
name:
type: string
tag:
type: string
Cosmo:
type: object
properties:
id:
type: integer
format: int64
name:
type: string
tag:
type: string
description:
type: string
Error:
type: object
required:
- code
- message
properties:
code:
type: integer
format: int32
message:
type: string