{ "$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-gcm-channel-request-schema.json", "title": "GCMChannelRequest", "description": "Specifies the status and settings of the GCM channel for an application. This channel enables Amazon Pinpoint to send push notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.", "type": "object", "properties": { "ApiKey": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The Web API Key, also referred to as an API_KEY or server key, that you received from Google to communicate with Google services." } ] }, "Enabled": { "allOf": [ { "$ref": "#/components/schemas/__boolean" }, { "description": "Specifies whether to enable the GCM channel for the application." } ] } }, "required": [ "ApiKey" ] }