StackOne · Schema

SmsMessageContents

IntegrationsiPaaS

Properties

Name Type Description
from string
body string
View JSON Schema on GitHub

JSON Schema

stackone-smsmessagecontents-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SmsMessageContents",
  "title": "SmsMessageContents",
  "type": "object",
  "properties": {
    "from": {
      "type": "string"
    },
    "body": {
      "type": "string"
    }
  },
  "required": [
    "body"
  ]
}