Last active
September 19, 2025 12:51
-
-
Save amirandap/a4525379ac038cf34c611d6dcba16dbe to your computer and use it in GitHub Desktop.
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": "TrelloTask", | |
| "type": "object", | |
| "properties": { | |
| "titulo": { | |
| "type": "string", | |
| "description": "Título en 5–7 palabras, empieza con verbo de acción (Verbo + sujeto + contexto)." | |
| }, | |
| "descripcion": { | |
| "type": "string", | |
| "description": "Debe incluir dos secciones separadas por salto de línea: 'Objetivo: ...' y 'Definition of Done: ...'." | |
| }, | |
| "acciones_esperadas": { | |
| "type": "array", | |
| "description": "Lista de 3–4 pasos concretos y accionables.", | |
| "items": { | |
| "type": "string" | |
| }, | |
| "minItems": 3 | |
| }, | |
| "plazo_entrega": { | |
| "type": "string", | |
| "format": "date-time", | |
| "description": "Fecha de entrega en formato MM/DD/YYYY HH:MM (24h)." | |
| } | |
| }, | |
| "required": ["titulo", "descripcion", "acciones_esperadas", "plazo_entrega"], | |
| "additionalProperties": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment