-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapi.yml
444 lines (434 loc) · 14.3 KB
/
api.yml
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
openapi: 3.0.1
info:
title: Altitude API
description: API to manage signals and targets in an Altitude server.
version: "1.0"
servers:
- url: http://localhost:80/api/
description: Example URL when running locally.
paths:
/targets/:
post:
description: |
Creates a new Target entity reflecting content submitted for scanning.
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
title:
type: string
description:
type: string
views:
type: number
creator:
$ref: "#/components/schemas/Creator"
client_context:
description: |
An opaque string that will be associated with the entity
throughout the pipeline.
type: string
content_type:
type: string
enum:
- IMAGE
- TEXT
content_bytes:
description: The target content, encoded as a base64 string.
type: string
format: byte # base64-encoded file contents
required:
- content_type
- content_bytes
examples:
"image":
value: >-
{
"client_context": "my identifier",
"content_type": "IMAGE",
"content_bytes": "R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
}
responses:
"201":
description: The target was successfully created.
content:
application/json:
schema:
$ref: "#/components/schemas/Target"
examples:
"image":
value: >-
{"id": "123abc", "create_time": "2024-06-20T21:33:54.564687", "client_context": "my identifier", "content_bytes": "R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==", "safe_search_scores": {"adult": "UNKNOWN", "spoof": "UNKNOWN", "medical": "UNKNOWN", "violence": "UNKNOWN", "racy": "UNKNOWN"}}⏎
"400":
description: An invalid request was provided.
"500":
description: An internal error occurred.
/targets/{id}:
get:
description: Returns a single Target entity by its unique identifier.
parameters:
- name: id
in: path
required: true
description: The id to get the entity.
schema:
type: string
responses:
"200":
description: The target.
content:
application/json:
schema:
$ref: "#/components/schemas/Target"
examples:
"image":
value: >-
{"id": "123abc", "create_time": "2024-06-20T21:33:54.564687", "client_context": "my identifier", "content_bytes": "R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==", "safe_search_scores": {"adult": "UNKNOWN", "spoof": "UNKNOWN", "medical": "UNKNOWN", "violence": "UNKNOWN", "racy": "UNKNOWN"}}⏎
"404":
description: Target inexistent.
content:
application/json:
schema:
type: object
properties:
code:
type: string
message:
type: string
examples:
"0":
value: >-
{"code":"NotFoundError","message":"Target 456def not found"}
"500":
description: An internal error occurred.
patch:
description: Updates a single Target entity by its unique identifier.
parameters:
- name: id
in: path
required: true
description: The id to get the entity.
schema:
type: string
responses:
"200":
description: The updated target.
content:
application/json:
schema:
$ref: "#/components/schemas/Target"
examples:
"image":
value: >-
{"id": "123abc", "create_time": "2024-06-20T21:33:54.564687", "client_context": "my identifier", "content_bytes": "R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==", "safe_search_scores": {"adult": "UNKNOWN", "spoof": "UNKNOWN", "medical": "UNKNOWN", "violence": "UNKNOWN", "racy": "UNKNOWN"}}⏎
"404":
description: Target inexistent.
content:
application/json:
schema:
type: object
properties:
code:
type: string
message:
type: string
examples:
"0":
value: >-
{"code":"NotFoundError","message":"Target 456def not found"}
"500":
description: An internal error occurred.
/signals/:
get:
description: Returns a list of Signal entities.
responses:
"200":
description: The signals.
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Signal"
examples:
"PDQ hash":
value: >-
[
{"id": "123abc", "create_time": "2024-06-20T22:24:54", "content": [{"value": "000000000000000000000000000000000000000000000000000000000000ffff", "content_type": "HASH_PDQ"}], "sources": [{"name": "USER_REPORT", "create_time": "2024-06-20T22:24:54", "author": "JigsawTest Hash Sharing"}]},
{"id": "123abc", "create_time": "2024-06-21T03:14:11", "content": [{"value": "0000000000000000000000000000000000000000000000000000000000000000", "content_type": "HASH_PDQ"}], "sources": [{"name": "USER_REPORT", "create_time": "2024-06-21T03:14:11", "author": "JigsawTest Hash Sharing"}]}
]
"500":
description: An internal error occurred.
post:
description: |
Creates a new Signal entity that can be used to identify new content for review.
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
content:
type: object
properties:
value:
type: string
type:
type: string
enum:
- HASH_PDQ
- HASH_MD5
- URL
required:
- value
- type
source:
type: object
properties:
name:
type: string
enum:
- TCAP
- GIFCT
- USER_REPORT
author:
type: string
create_time:
type: string
format: date-time
required:
- name
required:
- content
examples:
"PDQ hash":
value: >-
{
"content": {
"value: "000000000000000000000000000000000000000000000000000000000000ffff",
"type": "HASH_PDQ"
},
"source": {
"name": "USER_REPORT",
"author": "JigsawTest Hash Sharing",
"create_time": "2024-06-20T22:24:54"
}
}
responses:
"201":
description: The signal was successfully created.
content:
application/json:
schema:
$ref: "#/components/schemas/Signal"
examples:
"PDQ hash":
value: >-
{"id": "123abc", "create_time": "2024-06-20T22:24:54", "content": [{"value": "000000000000000000000000000000000000000000000000000000000000ffff", "content_type": "HASH_PDQ"}], "sources": [{"name": "USER_REPORT", "create_time": "2024-06-20T22:24:54", "author": "JigsawTest Hash Sharing"}]}⏎
"400":
description: An invalid request was provided.
"500":
description: An internal error occurred.
/signals/{id}:
get:
description: Returns a single Signal entity by its unique identifier.
parameters:
- name: id
in: path
required: true
description: The id to get the entity.
schema:
type: string
responses:
"200":
description: The signal.
content:
application/json:
schema:
$ref: "#/components/schemas/Signal"
examples:
"PDQ hash":
value: >-
{"id": "123abc", "create_time": "2024-06-20T22:24:54", "content": [{"value": "000000000000000000000000000000000000000000000000000000000000ffff", "content_type": "HASH_PDQ"}], "sources": [{"name": "USER_REPORT", "create_time": "2024-06-20T22:24:54", "author": "JigsawTest Hash Sharing"}]}⏎
"404":
description: Signal inexistent.
content:
application/json:
schema:
type: object
properties:
code:
type: string
message:
type: string
examples:
"0":
value: >-
{"code":"NotFoundError","message":"Signal 456def not found"}
"500":
description: An internal error occurred.
components:
schemas:
Target:
properties:
id:
type: string
create_time:
type: string
format: date-time
title:
type: string
description:
type: string
views:
type: number
content_bytes:
description: The target content, encoded as a base64 string.
type: string
format: byte # base64-encoded file contents
creator:
$ref: "#/components/schemas/Creator"
client_context:
description: An opaque string that will be associated with the entity throughout the pipeline.
type: string
safe_search_scores:
type: object
properties:
adult:
$ref: "#/components/schemas/SafeSearchScore"
spoof:
$ref: "#/components/schemas/SafeSearchScore"
medical:
$ref: "#/components/schemas/SafeSearchScore"
violence:
$ref: "#/components/schemas/SafeSearchScore"
racy:
$ref: "#/components/schemas/SafeSearchScore"
required:
- id
- create_time
Creator:
properties:
ip_address:
type: string
oneOf:
- format: ipv4
- format: ipv6
- format: hostname
Signal:
properties:
id:
type: string
create_time:
type: string
format: date-time
nullable: true
content:
type: array
items:
type: object
properties:
value:
type: string
content_type:
type: string
enum:
- URL
- HASH_PDQ
- HASH_MD5
- API
- UNKNOWN
sources:
type: array
items:
type: object
properties:
name:
type: string
enum:
- TCAP
- GIFCT
- USER_REPORT
- SAFE_SEARCH
- PERSPECTIVE
- UNKNOWN
author:
type: string
nullable: true
create_time:
type: string
format: date-time
nullable: true
required:
- name
content_features:
type: object
properties:
associated_entities:
type: array
items:
type: string
contains_pii:
$ref: "#/components/schemas/Confidence"
is_violent_or_graphic":
$ref: "#/components/schemas/Confidence"
is_illegal_in_countries:
type: array
items:
type: string
tags:
type: array
items:
type: string
status:
type: object
properties:
last_checked_time:
type: string
format: date-time
nullable: true
verifier:
type: string
most_recent_status:
type: string
enum:
- UNKNOWN
- ACTIVE
- REMOVED_BY_USER
- REMOVED_BY_MODERATOR
- UNAVAILABLE
nullable: true
SafeSearchScore:
type: string
enum:
- UNKNOWN
- VERY_UNLIKELY
- UNLIKELY
- POSSIBLE
- LIKELY
- VERY_LIKELY
Confidence:
type: string
enum:
- YES
- NO
- UNSURE
nullable: true