StackOne · Schema

MarketingCreatePushTemplateRequestDto

IntegrationsiPaaS

Properties

Name Type Description
id string
name string
tags array
messages array
View JSON Schema on GitHub

JSON Schema

stackone-marketingcreatepushtemplaterequestdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MarketingCreatePushTemplateRequestDto",
  "title": "MarketingCreatePushTemplateRequestDto",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "messages": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PushMessages"
      }
    }
  }
}