-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamazon-pinpoint-apns-sandbox-channel-response-schema.json
More file actions
132 lines (132 loc) · 3.57 KB
/
Copy pathamazon-pinpoint-apns-sandbox-channel-response-schema.json
File metadata and controls
132 lines (132 loc) · 3.57 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
{
"$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-apns-sandbox-channel-response-schema.json",
"title": "APNSSandboxChannelResponse",
"description": "Provides information about the status and settings of the APNs (Apple Push Notification service) sandbox channel for an application.",
"type": "object",
"properties": {
"ApplicationId": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The unique identifier for the application that the APNs sandbox channel applies to."
}
]
},
"CreationDate": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The date and time when the APNs sandbox channel was enabled."
}
]
},
"DefaultAuthenticationMethod": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The default authentication method that Amazon Pinpoint uses to authenticate with the APNs sandbox environment for this channel, key or certificate."
}
]
},
"Enabled": {
"allOf": [
{
"$ref": "#/components/schemas/__boolean"
},
{
"description": "Specifies whether the APNs sandbox channel is enabled for the application."
}
]
},
"HasCredential": {
"allOf": [
{
"$ref": "#/components/schemas/__boolean"
},
{
"description": "(Not used) This property is retained only for backward compatibility."
}
]
},
"HasTokenKey": {
"allOf": [
{
"$ref": "#/components/schemas/__boolean"
},
{
"description": "Specifies whether the APNs sandbox channel is configured to communicate with APNs by using APNs tokens. To provide an authentication key for APNs tokens, set the TokenKey property of the channel."
}
]
},
"Id": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "(Deprecated) An identifier for the APNs sandbox channel. This property is retained only for backward compatibility."
}
]
},
"IsArchived": {
"allOf": [
{
"$ref": "#/components/schemas/__boolean"
},
{
"description": "Specifies whether the APNs sandbox channel is archived."
}
]
},
"LastModifiedBy": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The user who last modified the APNs sandbox channel."
}
]
},
"LastModifiedDate": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The date and time when the APNs sandbox channel was last modified."
}
]
},
"Platform": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"description": "The type of messaging or notification platform for the channel. For the APNs sandbox channel, this value is APNS_SANDBOX."
}
]
},
"Version": {
"allOf": [
{
"$ref": "#/components/schemas/__integer"
},
{
"description": "The current version of the APNs sandbox channel."
}
]
}
},
"required": [
"Platform"
]
}