-
Notifications
You must be signed in to change notification settings - Fork 1
/
bundle.yaml
42 lines (42 loc) · 1.15 KB
/
bundle.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
openapi: 3.0.3
info:
title: OPA Bundle API
description: OPA Bundle API
version: 0.63.0
paths:
/bundles/service/v1/policies.tar.gz:
get:
operationId: getPolicies
summary: Return the policies bundle.
responses:
'200':
description: The tar.gz containing the policies.
content:
application/octect-stream:
schema:
type: string
format: binary
/bundles/service/v1/methods.tar.gz:
get:
operationId: getMethods
summary: Return the methods bundle.
responses:
'200':
description: The tar.gz containing the methods.
content:
application/octect-stream:
schema:
type: string
format: binary
/bundles/service/v1/data.tar.gz:
get:
operationId: getData
summary: Return the additional data to be used for policy evaluation.
responses:
'200':
description: The tar.gz containing the data.
content:
application/octect-stream:
schema:
type: string
format: binary