Last active
September 19, 2025 13:27
-
-
Save amirandap/2346cbd9264a202f522abe4142059c77 to your computer and use it in GitHub Desktop.
TrelloCardsArrayss
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": "http://json-schema.org/draft-07/schema#", | |
| "title": "TrelloCardsBatch", | |
| "type": "object", | |
| "properties": { | |
| "cards": { | |
| "type": "array", | |
| "description": "Array of Trello card objects, one per action item", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "title": { | |
| "type": "string", | |
| "description": "5–7 words, starts with an action verb" | |
| }, | |
| "objective": { | |
| "type": "string", | |
| "description": "Explains the 'why' or purpose of the task" | |
| }, | |
| "actions": { | |
| "type": "array", | |
| "minItems": 3, | |
| "items": { | |
| "type": "string" | |
| }, | |
| "description": "List of 3–4 observable, concrete steps in the infinitive" | |
| }, | |
| "definition_of_done": { | |
| "type": "string", | |
| "description": "A specific, verifiable deliverable. Must specify document type (Google Docs, Google Sheets, Google Slides) and that it is shared with the team" | |
| }, | |
| "due_date": { | |
| "type": "string", | |
| "pattern": "^(0[1-9]|1[0-2])\\/(0[1-9]|[12]\\d|3[01])\\/20\\d{2}\\s([01]\\d|2[0-3]):[0-5]\\d$", | |
| "description": "Due date in MM/DD/YYYY HH:MM (24h, zero-padded) format" | |
| } | |
| }, | |
| "required": [ | |
| "title", | |
| "objective", | |
| "actions", | |
| "definition_of_done", | |
| "due_date" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } | |
| }, | |
| "required": ["cards"], | |
| "additionalProperties": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment