{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MobilePushMessageStandardDefinitionCreate", "title": "MobilePushMessageStandardDefinitionCreate", "type": "object", "properties": { "channel": { "type": "string", "enum": [ "mobile_push" ] }, "content": { "$ref": "#/components/schemas/MobilePushContentCreate", "description": "Additional attributes relating to the content of the message" }, "kv_pairs": { "description": "The key-value pairs to be sent with the push notification", "type": "object", "nullable": true }, "options": { "$ref": "#/components/schemas/MobilePushOptions", "nullable": true }, "notification_type": { "description": "The type of notification to send", "type": "string", "example": "standard", "default": "standard", "enum": [ "standard" ] } }, "required": [ "channel", "content" ] }