-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenapi.yml
104 lines (100 loc) · 2.15 KB
/
openapi.yml
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
openapi: 3.0.3
info:
version: 1.0.0
title: DEMO
description: demo spec
license:
name: MIT
servers:
- url: "http://dev.api.test.domain/"
description: Development Environment
- url: "https://api.test.domain/"
description: Production Environment
components:
schemas:
Author:
type: object
required:
- id
- name
properties:
id:
type: string
name:
type: string
description: author name
Book:
type: object
description: Book Model
required:
- title
- author
- ISBN
- publishAt
- updatedAt
properties:
title:
type: string
author:
$ref: "#/components/schemas/Author"
ISBN:
type: string
publishAt:
type: string
format: date
updatedAt:
type: string
format: date
responses:
Books:
description: Get Books
content:
application/json:
schema:
type: object
required:
- books
properties:
books:
type: array
items:
$ref: "#/components/schemas/Book"
paths:
/get/books:
get:
operationId: getBooks
responses:
200:
$ref: "#/components/responses/Books"
/search/books:
get:
operationId: searchBooks
parameters:
- in: query
name: filter
explode: true
style: deepObject
schema:
type: object
required:
- title
- author
properties:
title:
type: string
author:
type: string
additionalProperties:
type: string
responses:
200:
description: Get Books
content:
application/json:
schema:
type: object
properties:
books:
type: array
items:
$ref: "#/components/schemas/Book"