Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save morisono/bbf7fa1918d57a2ae1069d25327b31ab to your computer and use it in GitHub Desktop.

Select an option

Save morisono/bbf7fa1918d57a2ae1069d25327b31ab 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