airbyte-source-iterable 0.4.0__py3-none-any.whl → 0.5.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {airbyte_source_iterable-0.4.0.dist-info → airbyte_source_iterable-0.5.1.dist-info}/METADATA +2 -2
  2. airbyte_source_iterable-0.5.1.dist-info/RECORD +31 -0
  3. source_iterable/components.py +41 -0
  4. source_iterable/manifest.yaml +440 -0
  5. source_iterable/schemas/campaigns.json +18 -0
  6. source_iterable/schemas/campaigns_metrics.json +1 -0
  7. source_iterable/schemas/channels.json +4 -0
  8. source_iterable/schemas/email_bounce.json +10 -0
  9. source_iterable/schemas/email_click.json +18 -0
  10. source_iterable/schemas/email_complaint.json +10 -0
  11. source_iterable/schemas/email_open.json +15 -0
  12. source_iterable/schemas/email_send.json +38 -0
  13. source_iterable/schemas/email_send_skip.json +38 -0
  14. source_iterable/schemas/email_subscribe.json +11 -0
  15. source_iterable/schemas/email_unsubscribe.json +15 -0
  16. source_iterable/schemas/events.json +8 -0
  17. source_iterable/schemas/list_users.json +2 -0
  18. source_iterable/schemas/lists.json +4 -0
  19. source_iterable/schemas/message_types.json +3 -0
  20. source_iterable/schemas/metadata.json +1 -0
  21. source_iterable/schemas/templates.json +8 -0
  22. source_iterable/schemas/users.json +132 -11
  23. source_iterable/source.py +54 -96
  24. source_iterable/spec.json +2 -3
  25. source_iterable/streams.py +0 -123
  26. source_iterable/utils.py +0 -7
  27. airbyte_source_iterable-0.4.0.dist-info/RECORD +0 -29
  28. {airbyte_source_iterable-0.4.0.dist-info → airbyte_source_iterable-0.5.1.dist-info}/WHEEL +0 -0
  29. {airbyte_source_iterable-0.4.0.dist-info → airbyte_source_iterable-0.5.1.dist-info}/entry_points.txt +0 -0
@@ -1,62 +1,80 @@
1
1
  {
2
2
  "properties": {
3
3
  "country": {
4
+ "description": "The country from where the email click was recorded.",
4
5
  "type": ["null", "string"]
5
6
  },
6
7
  "city": {
8
+ "description": "The city from where the email click was recorded.",
7
9
  "type": ["null", "string"]
8
10
  },
9
11
  "campaignId": {
12
+ "description": "The unique identifier of the campaign associated with the email click data.",
10
13
  "type": ["null", "integer"]
11
14
  },
12
15
  "itblInternal": {
16
+ "description": "Internal data related to the iterable service.",
13
17
  "type": ["null", "object"],
14
18
  "properties": {
15
19
  "documentCreatedAt": {
20
+ "description": "The date and time when the internal document was created.",
16
21
  "type": ["null", "string"],
17
22
  "format": "date-time"
18
23
  },
19
24
  "documentUpdatedAt": {
25
+ "description": "The date and time when the internal document was last updated.",
20
26
  "type": ["null", "string"],
21
27
  "format": "date-time"
22
28
  }
23
29
  }
24
30
  },
25
31
  "ip": {
32
+ "description": "The IP address from where the email click was recorded.",
26
33
  "type": ["null", "string"]
27
34
  },
28
35
  "contentId": {
36
+ "description": "The identifier of the content clicked within the email.",
29
37
  "type": ["null", "integer"]
30
38
  },
31
39
  "userAgentDevice": {
40
+ "description": "The device information of the user agent used for the email click.",
32
41
  "type": ["null", "string"]
33
42
  },
34
43
  "messageId": {
44
+ "description": "The unique identifier of the message that contained the email.",
35
45
  "type": ["null", "string"]
36
46
  },
37
47
  "hrefIndex": {
48
+ "description": "The index of the href link within the email content.",
38
49
  "type": ["null", "integer"]
39
50
  },
40
51
  "userAgent": {
52
+ "description": "The user agent of the browser or application used for the email click.",
41
53
  "type": ["null", "string"]
42
54
  },
43
55
  "templateId": {
56
+ "description": "The identifier of the email template used in the campaign.",
44
57
  "type": ["null", "integer"]
45
58
  },
46
59
  "url": {
60
+ "description": "The URL that was clicked within the email.",
47
61
  "type": ["null", "string"]
48
62
  },
49
63
  "createdAt": {
64
+ "description": "The date and time when the email click event occurred.",
50
65
  "type": ["null", "string"],
51
66
  "format": "date-time"
52
67
  },
53
68
  "region": {
69
+ "description": "The region from where the email click was recorded.",
54
70
  "type": ["null", "string"]
55
71
  },
56
72
  "email": {
73
+ "description": "The email address of the user who clicked the email link.",
57
74
  "type": ["null", "string"]
58
75
  },
59
76
  "userId": {
77
+ "description": "The unique identifier of the user who clicked the email link.",
60
78
  "type": ["null", "string"]
61
79
  }
62
80
  },
@@ -1,38 +1,48 @@
1
1
  {
2
2
  "properties": {
3
3
  "createdAt": {
4
+ "description": "Timestamp indicating when the email complaint was created",
4
5
  "type": ["null", "string"],
5
6
  "format": "date-time"
6
7
  },
7
8
  "campaignId": {
9
+ "description": "Unique identifier for the campaign associated with the email complaint data",
8
10
  "type": ["null", "integer"]
9
11
  },
10
12
  "itblInternal": {
13
+ "description": "Holds internal metadata related to the iterable data being accessed.",
11
14
  "type": ["null", "object"],
12
15
  "properties": {
13
16
  "documentCreatedAt": {
17
+ "description": "Timestamp indicating when the internal document was created",
14
18
  "type": ["null", "string"],
15
19
  "format": "date-time"
16
20
  },
17
21
  "documentUpdatedAt": {
22
+ "description": "Timestamp indicating when the internal document was last updated",
18
23
  "type": ["null", "string"],
19
24
  "format": "date-time"
20
25
  }
21
26
  }
22
27
  },
23
28
  "messageId": {
29
+ "description": "Unique identifier for the email message associated with the complaint",
24
30
  "type": ["null", "string"]
25
31
  },
26
32
  "templateId": {
33
+ "description": "Unique identifier for the email template used in the campaign",
27
34
  "type": ["null", "integer"]
28
35
  },
29
36
  "email": {
37
+ "description": "Email address of the recipient who lodged the complaint",
30
38
  "type": ["null", "string"]
31
39
  },
32
40
  "userId": {
41
+ "description": "Unique identifier for the user who lodged the email complaint",
33
42
  "type": ["null", "string"]
34
43
  },
35
44
  "recipientState": {
45
+ "description": "State or status of the recipient associated with the complaint",
36
46
  "type": ["null", "string"]
37
47
  }
38
48
  },
@@ -1,53 +1,68 @@
1
1
  {
2
2
  "properties": {
3
3
  "country": {
4
+ "description": "The country from which the email was opened.",
4
5
  "type": ["null", "string"]
5
6
  },
6
7
  "createdAt": {
8
+ "description": "The timestamp when the email_open event occurred.",
7
9
  "type": ["null", "string"],
8
10
  "format": "date-time"
9
11
  },
10
12
  "city": {
13
+ "description": "The city from which the email was opened.",
11
14
  "type": ["null", "string"]
12
15
  },
13
16
  "campaignId": {
17
+ "description": "The unique identifier of the campaign to which the email_open event belongs.",
14
18
  "type": ["null", "integer"]
15
19
  },
16
20
  "itblInternal": {
21
+ "description": "Internal data related to the email open event.",
17
22
  "type": ["null", "object"],
18
23
  "properties": {
19
24
  "documentCreatedAt": {
25
+ "description": "The timestamp when the ITBL internal document was created.",
20
26
  "type": ["null", "string"],
21
27
  "format": "date-time"
22
28
  },
23
29
  "documentUpdatedAt": {
30
+ "description": "The timestamp when the ITBL internal document was last updated.",
24
31
  "type": ["null", "string"],
25
32
  "format": "date-time"
26
33
  }
27
34
  }
28
35
  },
29
36
  "ip": {
37
+ "description": "The IP address from which the email was opened.",
30
38
  "type": ["null", "string"]
31
39
  },
32
40
  "userAgentDevice": {
41
+ "description": "The device information from which the email was opened.",
33
42
  "type": ["null", "string"]
34
43
  },
35
44
  "messageId": {
45
+ "description": "The unique identifier of the email message.",
36
46
  "type": ["null", "string"]
37
47
  },
38
48
  "userAgent": {
49
+ "description": "The user agent string of the browser used to open the email.",
39
50
  "type": ["null", "string"]
40
51
  },
41
52
  "templateId": {
53
+ "description": "The unique identifier of the email template used.",
42
54
  "type": ["null", "integer"]
43
55
  },
44
56
  "region": {
57
+ "description": "The region from which the email was opened.",
45
58
  "type": ["null", "string"]
46
59
  },
47
60
  "email": {
61
+ "description": "The email address of the user who opened the email.",
48
62
  "type": ["null", "string"]
49
63
  },
50
64
  "userId": {
65
+ "description": "The unique identifier of the user who opened the email.",
51
66
  "type": ["null", "string"]
52
67
  }
53
68
  },
@@ -1,131 +1,169 @@
1
1
  {
2
2
  "properties": {
3
3
  "createdAt": {
4
+ "description": "The timestamp when the email was created.",
4
5
  "type": ["null", "string"],
5
6
  "format": "date-time"
6
7
  },
7
8
  "campaignId": {
9
+ "description": "The identifier of the campaign associated with the email_send data.",
8
10
  "type": ["null", "integer"]
9
11
  },
10
12
  "itblInternal": {
13
+ "description": "Internal information related to ITBL (Iterable).",
11
14
  "type": ["null", "object"],
12
15
  "properties": {
13
16
  "documentCreatedAt": {
17
+ "description": "The timestamp when the document was created.",
14
18
  "type": ["null", "string"],
15
19
  "format": "date-time"
16
20
  },
17
21
  "documentUpdatedAt": {
22
+ "description": "The timestamp when the document was last updated.",
18
23
  "type": ["null", "string"],
19
24
  "format": "date-time"
20
25
  }
21
26
  }
22
27
  },
23
28
  "messageTypeId": {
29
+ "description": "The identifier of the message type associated with the email_send data.",
24
30
  "type": ["null", "integer"]
25
31
  },
26
32
  "transactionalData": {
33
+ "description": "Transactional data related to the email_send.",
27
34
  "type": ["null", "object"],
28
35
  "properties": {
29
36
  "inventory": {
37
+ "description": "The quantity of the product in stock.",
30
38
  "type": ["null", "integer"]
31
39
  },
32
40
  "eventName": {
41
+ "description": "The name of the event associated with the transaction.",
33
42
  "type": ["null", "string"]
34
43
  },
35
44
  "name": {
45
+ "description": "The name of the product.",
36
46
  "type": ["null", "string"]
37
47
  },
38
48
  "sku": {
49
+ "description": "The stock keeping unit (SKU) of the product.",
39
50
  "type": ["null", "string"]
40
51
  },
41
52
  "email": {
53
+ "description": "The email address associated with the transaction.",
42
54
  "type": ["null", "string"]
43
55
  },
44
56
  "url": {
57
+ "description": "The URL related to the transaction or product.",
45
58
  "type": ["null", "string"]
46
59
  },
47
60
  "description": {
61
+ "description": "Description of the product or transaction.",
48
62
  "type": ["null", "string"]
49
63
  },
50
64
  "price": {
65
+ "description": "The price of the product.",
51
66
  "type": ["null", "integer"]
52
67
  },
53
68
  "product_type": {
69
+ "description": "The type or category of the product.",
54
70
  "type": ["null", "string"]
55
71
  },
56
72
  "compare_at_price": {
73
+ "description": "The original price of the product being transacted.",
57
74
  "type": ["null", "number"]
58
75
  },
59
76
  "id": {
77
+ "description": "The unique identifier of the transactional data.",
60
78
  "type": ["null", "string"]
61
79
  },
62
80
  "templateId": {
81
+ "description": "The identifier of the template used for the transactional data.",
63
82
  "type": ["null", "integer"]
64
83
  },
65
84
  "product_id": {
85
+ "description": "The identifier of the product.",
66
86
  "type": ["null", "string"]
67
87
  },
68
88
  "categories": {
89
+ "description": "Categories related to the transactional data.",
69
90
  "type": ["null", "array"],
70
91
  "items": {}
71
92
  },
72
93
  "createdAt": {
94
+ "description": "The timestamp when the transactional data was created.",
73
95
  "type": ["null", "string"],
74
96
  "format": "date-time"
75
97
  },
76
98
  "campaignId": {
99
+ "description": "The identifier of the campaign associated with the transactional data.",
77
100
  "type": ["null", "integer"]
78
101
  },
79
102
  "vendor": {
103
+ "description": "The vendor or seller of the product.",
80
104
  "type": ["null", "string"]
81
105
  },
82
106
  "eventUpdatedAt": {
107
+ "description": "The timestamp when the event was last updated.",
83
108
  "type": ["null", "string"],
84
109
  "format": "date-time"
85
110
  },
86
111
  "discount": {
112
+ "description": "The discount applied to the product.",
87
113
  "type": ["null", "integer"]
88
114
  },
89
115
  "imageUrl": {
116
+ "description": "The URL of the image related to the product.",
90
117
  "type": ["null", "string"]
91
118
  },
92
119
  "itblInternal": {
120
+ "description": "Internal information related to ITBL (Iterable) for transactional data.",
93
121
  "type": ["null", "object"],
94
122
  "properties": {
95
123
  "documentCreatedAt": {
124
+ "description": "The timestamp when the document related to transactional data was created.",
96
125
  "type": ["null", "string"],
97
126
  "format": "date-time"
98
127
  },
99
128
  "documentUpdatedAt": {
129
+ "description": "The timestamp when the document related to transactional data was last updated.",
100
130
  "type": ["null", "string"],
101
131
  "format": "date-time"
102
132
  }
103
133
  }
104
134
  },
105
135
  "handle": {
136
+ "description": "A unique identifier for the transaction or product.",
106
137
  "type": ["null", "string"]
107
138
  }
108
139
  }
109
140
  },
110
141
  "contentId": {
142
+ "description": "The identifier of the content related to the email being sent.",
111
143
  "type": ["null", "integer"]
112
144
  },
113
145
  "messageId": {
146
+ "description": "The unique identifier of the message.",
114
147
  "type": ["null", "string"]
115
148
  },
116
149
  "messageBusId": {
150
+ "description": "The identifier of the message bus associated with the email_send data.",
117
151
  "type": ["null", "string"]
118
152
  },
119
153
  "templateId": {
154
+ "description": "The identifier of the template used for the email content.",
120
155
  "type": ["null", "integer"]
121
156
  },
122
157
  "email": {
158
+ "description": "The email address of the recipient.",
123
159
  "type": ["null", "string"]
124
160
  },
125
161
  "userId": {
162
+ "description": "The identifier of the user to whom the email is being sent.",
126
163
  "type": ["null", "string"]
127
164
  },
128
165
  "channelId": {
166
+ "description": "The identifier of the channel through which the email was sent.",
129
167
  "type": ["null", "integer"]
130
168
  }
131
169
  },
@@ -1,131 +1,169 @@
1
1
  {
2
2
  "properties": {
3
3
  "reason": {
4
+ "description": "Reason for skipping the email send.",
4
5
  "type": ["null", "string"]
5
6
  },
6
7
  "createdAt": {
8
+ "description": "Date and time when the email send skip data was created.",
7
9
  "type": ["null", "string"],
8
10
  "format": "date-time"
9
11
  },
10
12
  "campaignId": {
13
+ "description": "Unique identifier for the campaign associated with the email send skip data.",
11
14
  "type": ["null", "integer"]
12
15
  },
13
16
  "itblInternal": {
17
+ "description": "Internal iterable properties associated with the email send skip data.",
14
18
  "type": ["null", "object"],
15
19
  "properties": {
16
20
  "documentCreatedAt": {
21
+ "description": "Date and time when the document was created.",
17
22
  "type": ["null", "string"],
18
23
  "format": "date-time"
19
24
  },
20
25
  "documentUpdatedAt": {
26
+ "description": "Date and time when the document was last updated.",
21
27
  "type": ["null", "string"],
22
28
  "format": "date-time"
23
29
  }
24
30
  }
25
31
  },
26
32
  "messageTypeId": {
33
+ "description": "Identifier for the type of message sent.",
27
34
  "type": ["null", "integer"]
28
35
  },
29
36
  "transactionalData": {
37
+ "description": "Transactional data associated with the email send skip.",
30
38
  "type": ["null", "object"],
31
39
  "properties": {
32
40
  "inventory": {
41
+ "description": "Inventory details of the transactional data.",
33
42
  "type": ["null", "integer"]
34
43
  },
35
44
  "eventName": {
45
+ "description": "Name of the event associated with the transactional data.",
36
46
  "type": ["null", "string"]
37
47
  },
38
48
  "name": {
49
+ "description": "Name of the product associated with the transactional data.",
39
50
  "type": ["null", "string"]
40
51
  },
41
52
  "sku": {
53
+ "description": "Stock Keeping Unit (SKU) associated with the transactional data.",
42
54
  "type": ["null", "string"]
43
55
  },
44
56
  "email": {
57
+ "description": "Email address associated with the transactional data.",
45
58
  "type": ["null", "string"]
46
59
  },
47
60
  "url": {
61
+ "description": "URL associated with the transactional data.",
48
62
  "type": ["null", "string"]
49
63
  },
50
64
  "description": {
65
+ "description": "Description of the transactional data.",
51
66
  "type": ["null", "string"]
52
67
  },
53
68
  "price": {
69
+ "description": "Price of the product in the transactional data.",
54
70
  "type": ["null", "integer"]
55
71
  },
56
72
  "product_type": {
73
+ "description": "Type of the product in the transactional data.",
57
74
  "type": ["null", "string"]
58
75
  },
59
76
  "compare_at_price": {
77
+ "description": "Comparison price for the transactional data.",
60
78
  "type": ["null", "number"]
61
79
  },
62
80
  "id": {
81
+ "description": "Unique identifier for the transactional data.",
63
82
  "type": ["null", "string"]
64
83
  },
65
84
  "templateId": {
85
+ "description": "Identifier for the template used for the transactional data.",
66
86
  "type": ["null", "integer"]
67
87
  },
68
88
  "product_id": {
89
+ "description": "Identifier for the product associated with the transactional data.",
69
90
  "type": ["null", "string"]
70
91
  },
71
92
  "categories": {
93
+ "description": "Categories associated with the transactional data.",
72
94
  "type": ["null", "array"],
73
95
  "items": {}
74
96
  },
75
97
  "createdAt": {
98
+ "description": "Date and time when the transactional data was created.",
76
99
  "type": ["null", "string"],
77
100
  "format": "date-time"
78
101
  },
79
102
  "campaignId": {
103
+ "description": "Unique identifier for the campaign associated with the transactional data.",
80
104
  "type": ["null", "integer"]
81
105
  },
82
106
  "vendor": {
107
+ "description": "Vendor of the product in the transactional data.",
83
108
  "type": ["null", "string"]
84
109
  },
85
110
  "eventUpdatedAt": {
111
+ "description": "Date and time when the event was last updated.",
86
112
  "type": ["null", "string"],
87
113
  "format": "date-time"
88
114
  },
89
115
  "discount": {
116
+ "description": "Discount applied in the transactional data.",
90
117
  "type": ["null", "integer"]
91
118
  },
92
119
  "imageUrl": {
120
+ "description": "URL for the image associated with the transactional data.",
93
121
  "type": ["null", "string"]
94
122
  },
95
123
  "itblInternal": {
124
+ "description": "Internal iterable properties associated with the transactional data.",
96
125
  "type": ["null", "object"],
97
126
  "properties": {
98
127
  "documentCreatedAt": {
128
+ "description": "Date and time when the document was created.",
99
129
  "type": ["null", "string"],
100
130
  "format": "date-time"
101
131
  },
102
132
  "documentUpdatedAt": {
133
+ "description": "Date and time when the document was last updated.",
103
134
  "type": ["null", "string"],
104
135
  "format": "date-time"
105
136
  }
106
137
  }
107
138
  },
108
139
  "handle": {
140
+ "description": "Handle of the transactional data.",
109
141
  "type": ["null", "string"]
110
142
  }
111
143
  }
112
144
  },
113
145
  "contentId": {
146
+ "description": "Identifier for the content associated with the email send skip data.",
114
147
  "type": ["null", "integer"]
115
148
  },
116
149
  "messageId": {
150
+ "description": "Unique identifier for the message related to the email send skip data.",
117
151
  "type": ["null", "string"]
118
152
  },
119
153
  "templateId": {
154
+ "description": "Identifier for the template used in the email send skip data.",
120
155
  "type": ["null", "integer"]
121
156
  },
122
157
  "email": {
158
+ "description": "Email address to which the email send skip data corresponds.",
123
159
  "type": ["null", "string"]
124
160
  },
125
161
  "userId": {
162
+ "description": "Identifier for the user associated with the email send skip data.",
126
163
  "type": ["null", "string"]
127
164
  },
128
165
  "channelId": {
166
+ "description": "Identifier for the channel through which the email was sent.",
129
167
  "type": ["null", "integer"]
130
168
  }
131
169
  },
@@ -1,43 +1,54 @@
1
1
  {
2
2
  "properties": {
3
3
  "createdAt": {
4
+ "description": "The timestamp when the email subscription was created",
4
5
  "type": ["null", "string"],
5
6
  "format": "date-time"
6
7
  },
7
8
  "signupSource": {
9
+ "description": "The source where the subscriber signed up for the emails",
8
10
  "type": ["null", "string"]
9
11
  },
10
12
  "emailListIds": {
13
+ "description": "List of email list identifiers the subscriber belongs to",
11
14
  "type": ["null", "array"],
12
15
  "items": {}
13
16
  },
14
17
  "itblInternal": {
18
+ "description": "Internal properties related to the subscription",
15
19
  "type": ["null", "object"],
16
20
  "properties": {
17
21
  "documentCreatedAt": {
22
+ "description": "The timestamp when the internal document was created",
18
23
  "type": ["null", "string"],
19
24
  "format": "date-time"
20
25
  },
21
26
  "documentUpdatedAt": {
27
+ "description": "The timestamp when the internal document was last updated",
22
28
  "type": ["null", "string"],
23
29
  "format": "date-time"
24
30
  }
25
31
  }
26
32
  },
27
33
  "emailListId": {
34
+ "description": "The unique identifier of the email list",
28
35
  "type": ["null", "integer"]
29
36
  },
30
37
  "email": {
38
+ "description": "The email address of the subscriber",
31
39
  "type": ["null", "string"]
32
40
  },
33
41
  "userId": {
42
+ "description": "The unique identifier of the subscriber user",
34
43
  "type": ["null", "string"]
35
44
  },
36
45
  "profileUpdatedAt": {
46
+ "description": "The timestamp when the subscriber profile was last updated",
37
47
  "type": ["null", "string"],
38
48
  "format": "date-time"
39
49
  },
40
50
  "workflowId": {
51
+ "description": "The identifier of the workflow associated with the subscription",
41
52
  "type": ["null", "integer"]
42
53
  }
43
54
  },
@@ -1,55 +1,70 @@
1
1
  {
2
2
  "properties": {
3
3
  "unsubSource": {
4
+ "description": "The source from which the email unsubscribe request originated.",
4
5
  "type": ["null", "string"]
5
6
  },
6
7
  "createdAt": {
8
+ "description": "The timestamp indicating when the email unsubscribe data was created.",
7
9
  "type": ["null", "string"],
8
10
  "format": "date-time"
9
11
  },
10
12
  "campaignId": {
13
+ "description": "The unique identifier for the campaign associated with the email unsubscribe data.",
11
14
  "type": ["null", "integer"]
12
15
  },
13
16
  "itblInternal": {
17
+ "description": "Internal properties specific to Iterable.",
14
18
  "type": ["null", "object"],
15
19
  "properties": {
16
20
  "documentCreatedAt": {
21
+ "description": "The timestamp indicating when the document was created within Iterable.",
17
22
  "type": ["null", "string"],
18
23
  "format": "date-time"
19
24
  },
20
25
  "documentUpdatedAt": {
26
+ "description": "The timestamp indicating when the document was last updated within Iterable.",
21
27
  "type": ["null", "string"],
22
28
  "format": "date-time"
23
29
  }
24
30
  }
25
31
  },
26
32
  "emailListId": {
33
+ "description": "The unique identifier for the email list associated with the email unsubscribe data.",
27
34
  "type": ["null", "integer"]
28
35
  },
29
36
  "emailListIds": {
37
+ "description": "The list of unique identifiers for multiple email lists associated with the email unsubscribe data.",
30
38
  "type": ["null", "array"],
31
39
  "items": {}
32
40
  },
33
41
  "workflowId": {
42
+ "description": "The unique identifier for the workflow associated with the email unsubscribe data.",
34
43
  "type": ["null", "integer"]
35
44
  },
36
45
  "messageId": {
46
+ "description": "The unique identifier for the message associated with the email unsubscribe data.",
37
47
  "type": ["null", "string"]
38
48
  },
39
49
  "templateId": {
50
+ "description": "The unique identifier for the template associated with the email unsubscribe data.",
40
51
  "type": ["null", "integer"]
41
52
  },
42
53
  "channelIds": {
54
+ "description": "The list of unique identifiers for multiple channels associated with the email unsubscribe data.",
43
55
  "type": ["null", "array"],
44
56
  "items": {}
45
57
  },
46
58
  "email": {
59
+ "description": "The email address for which the user unsubscribed.",
47
60
  "type": ["null", "string"]
48
61
  },
49
62
  "userId": {
63
+ "description": "The unique identifier for the user who unsubscribed from the email list.",
50
64
  "type": ["null", "string"]
51
65
  },
52
66
  "channelId": {
67
+ "description": "The unique identifier for the channel associated with the email unsubscribe data.",
53
68
  "type": ["null", "integer"]
54
69
  }
55
70
  },