Skip to content

Instantly share code, notes, and snippets.

@maitham
Last active December 29, 2025 18:36
Show Gist options
  • Select an option

  • Save maitham/cf2172660531b295b533ad715719abdc to your computer and use it in GitHub Desktop.

Select an option

Save maitham/cf2172660531b295b533ad715719abdc to your computer and use it in GitHub Desktop.
LinearTicketJTBD
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LinearTicketJTBD",
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "The job statement title, describing what the user is trying to get done (e.g., 'Enable users to export reports quickly')"
},
"content": {
"type": "string",
"description": "The detailed JTBD context, including the situation, motivation, desired outcome, and success criteria for the job"
},
"label": {
"type": "string",
"description": "The primary Linear label categorizing the job",
"enum": [
"Admin",
"Billing",
"Email",
"Organizational",
"Product Support",
"Sales",
"Contracting",
"Customer Success",
"Engineering",
"Feedback",
"Hiring",
"Partnerships"
]
}
},
"required": ["title", "content", "label"],
"additionalProperties": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment