{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://extensions.shopifycdn.com/shopifycloud/schemas/v1/application/email.json",
  "title": "Email Schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The email ID"
    },
    "subject": {
      "type": "string",
      "description": "The email subject line"
    },
    "body": {
      "type": "string",
      "description": "The email body content"
    },
    "from": {
      "type": "object",
      "properties": {
        "email": {
          "type": "string",
          "format": "email"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "to": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "format": "email"
          },
          "name": {
            "type": "string"
          }
        }
      }
    }
  },
  "additionalProperties": true
}
