Created
November 3, 2025 16:38
-
-
Save amirandap/d6df81ef6ec7326de4f40934c541da2e 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": "Descripción general de la tarea (sin incluir objetivo ni definition of done)." | |
| }, | |
| "objetivo": { | |
| "type": "string", | |
| "description": "Explica brevemente el propósito o resultado esperado de la tarea (una o dos frases)." | |
| }, | |
| "definition_of_done": { | |
| "type": "string", | |
| "description": "Criterios que determinan cuándo la tarea se considera completada correctamente." | |
| }, | |
| "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", | |
| "objetivo", | |
| "definition_of_done", | |
| "acciones_esperadas", | |
| "plazo_entrega" | |
| ], | |
| "additionalProperties": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment