-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathinstall-in-app-event.schema.yaml
More file actions
90 lines (90 loc) · 1.83 KB
/
install-in-app-event.schema.yaml
File metadata and controls
90 lines (90 loc) · 1.83 KB
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
$defs:
JsonValue: {}
Meta:
properties:
op:
default: u
description: 'Operation type (c: Create, u: Update, d: Delete)'
enum:
- c
- u
- d
title: Op
type: string
row_id:
default: -1
description: Row ID of the Document, counting up from zero, or -1 if not known
title: Row Id
type: integer
webhookId:
title: Webhookid
type: string
receivedAt:
title: Receivedat
type: string
headers:
additionalProperties:
$ref: '#/$defs/JsonValue'
title: Headers
type: object
reqPath:
title: Reqpath
type: string
pathParams:
anyOf:
- additionalProperties:
type: string
type: object
- type: 'null'
default: null
title: Pathparams
queryParams:
anyOf:
- additionalProperties:
type: string
type: object
- type: 'null'
default: null
title: Queryparams
estuary_id:
default: ''
description: The surrogate key generated from characteristic fields
title: Estuary Id
type: string
required:
- headers
- reqPath
title: Meta
type: object
properties:
_meta:
$ref: '#/$defs/Meta'
description: Document metadata
app_id:
title: App Id
type: string
appsflyer_id:
title: Appsflyer Id
type: string
event_name:
title: Event Name
type: string
event_time:
title: Event Time
type: string
event_value:
title: Event Value
type: string
api_version:
title: Api Version
type: string
required:
- app_id
- appsflyer_id
- event_name
- event_time
- event_value
- api_version
title: AppsFlyerWebhookDocument
type: object
x-infer-schema: true