Last active
January 29, 2026 13:40
-
-
Save maitham/ed33faf394437bf5f9f3d05adf461602 to your computer and use it in GitHub Desktop.
CEOEmail
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" | |
| ] | |
| }, | |
| "ceo_action_required": { | |
| "type": "boolean", | |
| "description": "Indicates whether this job requires direct action, decision, or involvement from the CEO" | |
| }, | |
| "ceo_action_reason": { | |
| "type": "string", | |
| "description": "Brief explanation of why CEO action is or is not required", | |
| "minLength": 1 | |
| } | |
| }, | |
| "required": ["title", "content", "label", "ceo_action_required"], | |
| "additionalProperties": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment