-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlog schema file
80 lines (80 loc) · 1.48 KB
/
Blog schema file
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
swagger: '2.0'
info:
title: Snippets API
description: Test description
termsOfService: https://www.google.com/policies/terms/
contact:
email: contact@snippets.local
license:
name: BSD License
version: v1
host: 127.0.0.1:8000
schemes:
- http
basePath: /
consumes:
- application/json
produces:
- application/json
securityDefinitions:
Basic:
type: basic
security:
- Basic: []
paths:
/article/:
get:
operationId: article_list
description: ''
parameters: []
responses:
'200':
description: ''
tags:
- article
parameters: []
/article/all:
get:
operationId: article_all_list
description: all of atricles sort by time
parameters: []
responses:
'200':
description: ''
tags:
- article
parameters: []
/article/create/:
post:
operationId: article_create_create
description: ''
parameters: []
responses:
'201':
description: ''
tags:
- article
parameters: []
/article/delete/:
post:
operationId: article_delete_create
description: ''
parameters: []
responses:
'201':
description: ''
tags:
- article
parameters: []
/article/search/:
get:
operationId: article_search_list
description: ''
parameters: []
responses:
'200':
description: ''
tags:
- article
parameters: []
definitions: {}