-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
42 lines (42 loc) · 950 Bytes
/
swagger.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
openapi: 3.0.0
info:
title: "Azisaba API"
description: ""
version: "dev"
termsOfService: "https://azisaba.net/terms/"
servers:
- url: https://api-ktor.azisaba.net
description: Production server
paths:
/interchat/guilds/list:
get:
summary: Returns a list of joined guilds of authenticated user.
responses:
'200':
description: A JSON array of guilds
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Guild"
components:
schemas:
Guild:
type: object
properties:
id:
type: integer
format: int64
example: 100
name:
type: string
example: aaaaaa
format:
type: string
capacity:
type: integer
deleted:
type: boolean
open:
type: boolean