Google Firebase · Schema

SendMessageRequest

AnalyticsAuthenticationBackend as a ServiceCloud MessagingGoogle CloudHostingMobileReal-Time Database

Properties

Name Type Description
message object
validate_only boolean Flag for testing without actually sending the message
View JSON Schema on GitHub

JSON Schema

google-firebase-sendmessagerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SendMessageRequest",
  "title": "SendMessageRequest",
  "type": "object",
  "required": [
    "message"
  ],
  "properties": {
    "message": {
      "$ref": "#/components/schemas/Message"
    },
    "validate_only": {
      "type": "boolean",
      "description": "Flag for testing without actually sending the message"
    }
  }
}