-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
60 lines (60 loc) · 1.61 KB
/
openapi.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
openapi: 3.0.2
info:
title: member-site
version: "1"
description: ""
servers:
- url: "http://localhost:8000/{api_version}"
description: local server
variables:
api_version:
default: v1
enum:
- v1
components:
schemas:
User:
type: object
description: user
required:
- id
- email
- first_name
- last_name
properties:
id:
type: integer
description: user id
email:
type: string
format: email
description: email address
first_name:
type: string
description: first name
last_name:
type: string
description: last name
securitySchemes: {}
paths:
"/users/{user_id}": {}
/auth/:
post:
summary: ""
operationId: post-auth
responses:
"200":
description: OK
description: ログイン用API
requestBody:
content:
application/json:
schema:
type: object
properties:
email:
type: string
password:
type: string
tags:
- auth