-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
247 lines (241 loc) · 6.23 KB
/
openapi.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
openapi: 3.0.2
info:
title: Catalog history service
description: desc
version: '1.0'
termsOfService: 'https://fellesdatakatalog.digdir.no/about'
contact:
name: Digitaliseringsdirektoratet
url: 'https://fellesdatakatalog.digdir.no'
email: [email protected]
license:
name: License of API
url: 'http://data.norge.no/nlod/no/2.0'
externalDocs:
description: Dokumentasjon på Informasjonsforvaltning GitHub
url: https://informasjonsforvaltning.github.io/
tags:
- name: catalog-history-service
description: Catalog history service
servers:
- url: 'https://catalog-history.fellesdatakatalog.digdir.no'
paths:
/{catalogId}/{resourceId}/updates:
post:
tags:
- catalog-history-service
summary: Add update to resource
description: Adds update to resource history
operationId: storeUpdate
parameters:
- name: catalogId
in: path
description: catalog id
required: true
schema:
type: string
- name: resourceId
in: path
description: resource id
required: true
schema:
type: string
responses:
'201':
description: No content
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdatePayload'
get:
tags:
- catalog-history-service
summary: Query for update history.
description: Returns a collection of updates
operationId: getUpdates
parameters:
- name: catalogId
in: path
description: catalog id
required: true
schema:
type: string
- name: resourceId
in: path
description: resource id
required: true
schema:
type: string
- name: page
in: query
description: page number
schema:
type: integer
default: 0
- name: size
in: query
description: page size
schema:
type: integer
default: 10
- name: sort_by
in: query
description: sort by column
schema:
type: string
enum:
- datetime
- email
- name
- name: sort_order
in: query
description: sort order
schema:
type: string
enum:
- asc
- desc
default: desc
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Updates'
/{catalogId}/{resourceId}/updates/{updateId}:
get:
tags:
- catalog-history-service
description: Get specific update
operationId: getUpdate
parameters:
- name: catalogId
in: path
description: catalog id
required: true
schema:
type: string
- name: resourceId
in: path
description: resource id
required: true
schema:
type: string
- name: updateId
in: path
description: update id
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Update'
components:
schemas:
UpdatePayload:
type: object
description: Json patch update and meta data regarding update
properties:
person:
$ref: "#/components/schemas/Person"
description: Person who updated the document
operations:
type: array
items:
$ref: '#/components/schemas/JsonPatchOperation'
description: List of operations defining the update
Update:
type: object
description: Complete data object regarding update
properties:
id:
type: string
description: update id
resourceId:
type: string
description: resource id
person:
$ref: "#/components/schemas/Person"
description: Person who updated the document
datetime:
type: string
format: date
description: date of update
operations:
type: array
items:
$ref: '#/components/schemas/JsonPatchOperation'
description: List of operations defining the update
Person:
type: object
description:
Person
properties:
id:
type: string
description: sso id
email:
type: string
description: email
name:
type: string
description: full name
JsonPatchOperation:
type: object
description: 'A JSON patch document as defined by RFC 6902'
required:
- op
- path
properties:
op:
type: string
nullable: false
description: 'The operation to be performed'
enum:
- add
- remove
- replace
- move
- copy
- test
path:
type: string
nullable: false
description: 'A JSON pointer to the property being affected'
value:
type: object
description: 'The value to add, replace or test.'
from:
description: 'A JSON Pointer path pointing to the location to move/copy from.'
type: string
Updates:
type: object
description: List of updates with meta data
properties:
updates:
type: array
items:
$ref: '#/components/schemas/Update'
description: List of updates
page:
$ref: "#/components/schemas/Pagination"
description: Pagination details
Pagination:
type: object
description: Pagination details
properties:
currentPage:
type: integer
size:
type: integer
totalElements:
type: integer
totalPages:
type: integer