Last active
July 15, 2025 10:32
-
-
Save hatzipanis/343019d36f3c70dd309c1416f2b579f0 to your computer and use it in GitHub Desktop.
JSON Schema for Zapier
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": "GitHubIssueSchema", | |
| "type": "object", | |
| "properties": { | |
| "title": { | |
| "type": "string" | |
| }, | |
| "summary": { | |
| "type": "string" | |
| }, | |
| "problemStatement": { | |
| "type": "string" | |
| }, | |
| "requirements": { | |
| "type": "array", | |
| "items": { "type": "string" } | |
| }, | |
| "successCriteria": { | |
| "type": "string" | |
| }, | |
| "priority": { | |
| "type": "string", | |
| "enum": ["low", "medium", "high", "urgent", ""] | |
| }, | |
| "additionalContext": { | |
| "type": "string" | |
| }, | |
| "alternativesConsidered": { | |
| "type": "string" | |
| }, | |
| "locationHints": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": ["title", "summary", "problemStatement", "requirements", "successCriteria"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment