-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamazon-pinpoint-import-job-response-schema.json
More file actions
147 lines (147 loc) · 4.13 KB
/
Copy pathamazon-pinpoint-import-job-response-schema.json
File metadata and controls
147 lines (147 loc) · 4.13 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
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-schema/amazon-pinpoint-import-job-response-schema.json",
"title": "ImportJobResponse",
"description": "Provides information about the status and settings of a job that imports endpoint definitions from one or more files. The files can be stored in an Amazon Simple Storage Service (Amazon S3) bucket or uploaded directly from a computer by using the Amazon Pinpoint console.",
"type": "object",
"properties": {
"ApplicationId": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The unique identifier for the application that's associated with the import job."
}
]
},
"CompletedPieces": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "The number of pieces that were processed successfully (completed) by the import job, as of the time of the request."
}
]
},
"CompletionDate": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The date, in ISO 8601 format, when the import job was completed."
}
]
},
"CreationDate": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The date, in ISO 8601 format, when the import job was created."
}
]
},
"Definition": {
"allOf": [
{
"$ref": "#/components/schemas/ImportJobResource"
},
{
"description": "The resource settings that apply to the import job."
}
]
},
"FailedPieces": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "The number of pieces that weren't processed successfully (failed) by the import job, as of the time of the request."
}
]
},
"Failures": {
"allOf": [
{
"$ref": "#/components/schemas/ListOf__string"
},
{
"description": "An array of entries, one for each of the first 100 entries that weren't processed successfully (failed) by the import job, if any."
}
]
},
"Id": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The unique identifier for the import job."
}
]
},
"JobStatus": {
"allOf": [
{
"$ref": "#/components/schemas/JobStatus"
},
{
"description": "The status of the import job. The job status is FAILED if Amazon Pinpoint wasn't able to process one or more pieces in the job."
}
]
},
"TotalFailures": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "The total number of endpoint definitions that weren't processed successfully (failed) by the import job, typically because an error, such as a syntax error, occurred."
}
]
},
"TotalPieces": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "The total number of pieces that must be processed to complete the import job. Each piece consists of an approximately equal portion of the endpoint definitions that are part of the import job."
}
]
},
"TotalProcessed": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "The total number of endpoint definitions that were processed by the import job."
}
]
},
"Type": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The job type. This value is IMPORT for import jobs."
}
]
}
},
"required": [
"JobStatus",
"CreationDate",
"Type",
"Definition",
"Id",
"ApplicationId"
]
}