-
Notifications
You must be signed in to change notification settings - Fork 5
/
petstore-openapi-v1.yaml
185 lines (185 loc) · 4.39 KB
/
petstore-openapi-v1.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
openapi: 3.0.2
info:
title: Petstore REST v1
description: This is a sample Petstore Server.
version: 1.0.0
license:
name: Aklivity Community License
url: https://github.com/aklivity/zilla/blob/main/LICENSE
contact:
name: Aklivity Community
url: https://www.aklivity.io/slack
externalDocs:
description: Demo Repo
url: https://github.com/aklivity/zilla-demos/tree/main/petstore#readme
servers:
- url: http://localhost:7114
tags:
- name: pet
description: Everything about your Pets
paths:
/pet:
get:
tags:
- pet
summary: All Pets
operationId: listPets
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Pet"
"400":
description: Invalid output value
security:
- petstore_auth:
- "write:pets"
- "read:pets"
post:
tags:
- pet
summary: Add a new pet to the store
description: Add a new pet to the store
operationId: addPet
requestBody:
description: Create a new pet in the store
content:
application/json:
schema:
$ref: "#/components/schemas/Pet"
required: true
responses:
"201":
description: Successful operation
"400":
description: Invalid input
security:
- petstore_auth:
- "write:pets"
- "read:pets"
/pet/{petId}:
get:
tags:
- pet
summary: Find pet by ID
description: Returns a single pet
operationId: getPet
parameters:
- name: petId
in: path
description: ID of pet to return
required: true
schema:
type: string
responses:
"200":
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/Pet"
"400":
description: Invalid ID supplied
"404":
description: Pet not found
security:
- petstore_auth:
- "write:pets"
- "read:pets"
put:
tags:
- pet
summary: Update an existing pet
description: Update an existing pet by Id
operationId: updatePet
parameters:
- name: petId
in: path
description: ID of pet to return
required: true
schema:
type: string
requestBody:
description: Update an existent pet in the store
content:
application/json:
schema:
$ref: "#/components/schemas/Pet"
required: true
responses:
"200":
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/Pet"
"400":
description: Invalid ID supplied or invalid input
"404":
description: Pet not found
security:
- petstore_auth:
- "write:pets"
- "read:pets"
delete:
tags:
- pet
summary: Deletes a pet
description: ""
operationId: deletePet
parameters:
- name: api_key
in: header
description: ""
required: false
schema:
type: string
- name: petId
in: path
description: Pet id to delete
required: true
schema:
type: string
responses:
"400":
description: Invalid pet value
security:
- petstore_auth:
- "write:pets"
- "read:pets"
components:
schemas:
Pet:
type: object
required:
- id
- name
properties:
id:
type: integer
format: int64
name:
type: string
tag:
type: string
Pets:
type: array
maxItems: 100
items:
$ref: "#/components/schemas/Pet"
requestBodies:
Pet:
description: Pet object that needs to be added to the store
content:
application/json:
schema:
$ref: "#/components/schemas/Pet"
securitySchemes:
petstore_auth:
type: http
scheme: bearer
bearerFormat: JWT