Last active
September 17, 2025 02:41
-
-
Save amirandap/9a5889b64395323423f1ce055e4bf74d to your computer and use it in GitHub Desktop.
trelloreadai
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": "TrelloCardsArray", | |
| "type": "array", | |
| "minItems": 1, | |
| "maxItems": 8, | |
| "items": { | |
| "type": "object", | |
| "additionalProperties": false, | |
| "required": ["titulo", "descripcion", "acciones_esperadas", "plazo_entrega"], | |
| "properties": { | |
| "titulo": { | |
| "type": "string", | |
| "description": "5–7 palabras. Verbo + sujeto + contexto." | |
| }, | |
| "descripcion": { | |
| "type": "string", | |
| "description": "Incluye dos líneas: 'Objetivo: ...' y 'Definition of Done: ...'" | |
| }, | |
| "acciones_esperadas": { | |
| "type": "array", | |
| "minItems": 3, | |
| "maxItems": 4, | |
| "items": { "type": "string" }, | |
| "description": "Checklist de pasos claros en infinitivo." | |
| }, | |
| "plazo_entrega": { | |
| "type": "string", | |
| "description": "Formato Trello esperado: MM/DD/YYYY HH:MM (24h).", | |
| "pattern": "^(0[1-9]|1[0-2])\\/(0[1-9]|[12][0-9]|3[01])\\/\\d{4}\\s([01][0-9]|2[0-3]):[0-5][0-9]$" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment