This repository was archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswagger.yaml
136 lines (134 loc) · 3.19 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
swagger: "2.0"
info:
title: dp-sessions-api
description: "API for Sessions"
version: 1.0.0
license:
name: "Open Government Licence v3.0"
url: "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"
basePath: "/v1"
schemes:
- http
tags:
- name: "session"
paths:
/sessions:
post:
security:
- ServiceToken: [ ]
tags:
- session
summary: Create a session endpoint
description: Creates a new session for the provided user email.
consumes:
- application/json
parameters:
- in: body
name: New session details
description: Creates a new session for the provided user email.
schema:
$ref: "#/definitions/New%20Session%20Request"
produces:
- application/json
responses:
201:
description: Created
schema:
$ref: "#/definitions/Session"
400:
description: Bad Request
401:
description: Unauthorized
500:
description: Internal Server Error
delete:
security:
- ServiceToken: [ ]
tags:
- session
summary: Delete all sessions
description: Deletes all sessions from the cache
produces:
- application/json
responses:
200:
description: OK
400:
description: Bad Request
401:
description: Unauthorized
404:
description: Not Found
/sessions/{ID}:
get:
tags:
- session
summary: Get a session by ID endpoint
description: Gets an existing session by the provided ID.
parameters:
- in: path
name: ID
type: string
required: true
description: ID of stored session
produces:
- application/json
responses:
200:
description: OK
schema:
$ref: "#/definitions/Session"
404:
description: Not Found
500:
description: Internal Server Error
/sessions/{Email}:
get:
tags:
- session
summary: Get a session by ID endpoint
description: Gets an existing session by the provided ID.
parameters:
- in: path
name: ID
type: string
required: true
description: ID of stored session
produces:
- application/json
responses:
200:
description: OK
schema:
$ref: "#/definitions/Session"
404:
description: Not Found
500:
description: Internal Server Error
securityDefinitions:
ServiceToken:
type: apiKey
in: header
name: service-token
definitions:
New Session Request:
type: object
properties:
email:
type: string
example: [email protected]
Session:
type: object
properties:
id:
type: string
example: 1234
email:
type: string
example: [email protected]
start:
type: string
example: "2006-01-02T15:04:05.000Z"
lastAccessed:
type: string
example: "2006-01-02T15:04:05.000Z"