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
openapi: 3.1.0
info:
title: Multi Content-Type API
version: "1.0.0"
paths:
/report:
get:
operationId: getReport
responses:
"200":
description: ok
content:
application/json:
schema:
type: object
required:
properties:
title:
type: string
minLength: 1
data:
type: array
items:
type: integer
example:
title: "Monthly Report"
data:
text/plain:
schema:
type: string
example: "Monthly Report: 10,20,30"
/health:
get:
operationId: healthCheck
responses:
"200":
description: ok
content:
application/json:
schema:
type: object
required:
properties:
status:
type: string
enum:
example:
status: ok