-
-
Save morisono/025d2d6d3308743f61472c320c6c204e to your computer and use it in GitHub Desktop.
Short schema for Zapier-OpenAI step: validates a payload containing only subject and email strings for the confirmation message.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "ConfirmationEmailPayload", | |
| "type": "object", | |
| "additionalProperties": false, | |
| "properties": { | |
| "subject": { | |
| "type": "string", | |
| "minLength": 1 | |
| }, | |
| "email": { | |
| "type": "string", | |
| "minLength": 1 | |
| } | |
| }, | |
| "required": ["subject", "email"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment