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
openapi: 3.0.1
info:
title: formats
version: 0.0.1
paths:
/event:
get:
operationId: getEvent
responses:
'200':
description: an event
content:
application/json:
schema:
$ref: '#/components/schemas/Event'
components:
schemas:
Event:
type: object
required:
- id
- createdAt
- birthDate
properties:
id:
type: string
format: uuid
createdAt:
type: string
format: date-time
birthDate:
type: string
format: date
email:
type: string
format: email
payload:
type: string
format: binary