-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.yml
More file actions
44 lines (41 loc) · 876 Bytes
/
api.yml
File metadata and controls
44 lines (41 loc) · 876 Bytes
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
openapi: '3.0.2'
info:
title: Movies Api
version: '1.0'
servers:
- url: https://api.server.test/v1
components:
schemas:
movie:
type: object
properties:
id:
type: integer
title:
type: string
imageUrl:
type: string
description:
type: string
movies:
type: object
properties:
movies:
type: array
items:
$ref: '#/components/schemas/movie'
count:
type: integer
message:
type: string
description: explanation of response.
paths:
/movies:
get:
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/movies'