Postmark · Schema

SenderSignatureInformation

EmailsMessagingTransactional EmailDeliverabilitySMTP

Properties

Name Type Description
Domain string
EmailAddress string
ReplyToEmailAddress string
Name string
Confirmed boolean
ID integer
View JSON Schema on GitHub

JSON Schema

postmark-sendersignatureinformation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SenderSignatureInformation",
  "title": "SenderSignatureInformation",
  "type": "object",
  "properties": {
    "Domain": {
      "type": "string"
    },
    "EmailAddress": {
      "type": "string",
      "format": "email"
    },
    "ReplyToEmailAddress": {
      "type": "string",
      "format": "email"
    },
    "Name": {
      "type": "string"
    },
    "Confirmed": {
      "type": "boolean"
    },
    "ID": {
      "type": "integer",
      "format": "int64"
    }
  },
  "description": ""
}