forked from RedHatInsights/playbook-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.event.yaml
76 lines (74 loc) · 1.28 KB
/
run.event.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
---
$id: run
$schema: http://json-schema.org/draft-07/schema#
type: object
properties:
event_type:
type: string
enum:
- create
- read
- update
- delete
payload:
type: object
properties:
id:
type: string
org_id:
type: string
recipient:
type: string
correlation_id:
type: string
service:
type: string
url:
type: string
format: uri
labels:
type: object
additionalProperties:
type: string
name:
type: string
web_console_url:
type: string
format: uri
recipient_config:
type: object
properties:
sat_id:
type: string
sat_org_id:
type: string
status:
type: string
enum:
- running
- success
- failure
- timeout
- canceled
timeout:
type: integer
minimum: 0
created_at:
type: string
updated_at:
type: string
required:
- id
- org_id
- recipient
- correlation_id
- service
- url
- labels
- status
- timeout
- created_at
- updated_at
required:
- event_type
- payload