-
Notifications
You must be signed in to change notification settings - Fork 932
/
petstore.yaml
99 lines (99 loc) · 2.03 KB
/
petstore.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
openapi: 3.0.0
info:
title: 'Swagger Petstore'
license:
name: MIT
version: 1.0.0
servers:
-
url: petstore.swagger.io
description: 'Api server'
paths:
/pets:
get:
tags:
- pets
summary: 'List all pets'
operationId: listPets
parameters:
-
name: limit
in: query
description: 'How many items to return at one time (max 100)'
required: false
schema:
type: integer
format: int32
responses:
'200':
description: 'An paged array of pets'
headers:
x-next:
description: 'A link to the next page of responses'
schema:
type: string
default:
description: 'unexpected error'
post:
tags:
- pets
summary: 'Create a pet'
operationId: createPets
responses:
'201':
description: 'Null response'
default:
description: 'unexpected error'
'/pets/{petId}':
get:
tags:
- pets
summary: 'Info for a specific pet'
operationId: showPetById
parameters:
-
name: petId
in: path
description: 'The id of the pet to retrieve'
required: true
schema:
type: string
responses:
'200':
description: 'Expected response to a valid request'
default:
description: 'unexpected error'
components:
schemas:
Error:
required:
- code
- message
properties:
code:
type: integer
format: int32
message:
type: string
type: object
Pets:
type: array
items:
$ref: '#/components/schemas/Pet'
Pet:
required:
- id
- name
properties:
id:
type: integer
format: int64
name:
type: string
tag:
type: string
type: object
tags:
-
name: pets
description: pets