Skip to content

Instantly share code, notes, and snippets.

@hatzipanis
Last active July 15, 2025 10:32
Show Gist options
  • Select an option

  • Save hatzipanis/343019d36f3c70dd309c1416f2b579f0 to your computer and use it in GitHub Desktop.

Select an option

Save hatzipanis/343019d36f3c70dd309c1416f2b579f0 to your computer and use it in GitHub Desktop.
JSON Schema for Zapier
{
"$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