Last active
December 29, 2025 18:36
-
-
Save maitham/cf2172660531b295b533ad715719abdc to your computer and use it in GitHub Desktop.
LinearTicketJTBD
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": "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