Skip to content

Instantly share code, notes, and snippets.

@amirandap
Last active September 17, 2025 21:21
Show Gist options
  • Select an option

  • Save amirandap/9313480fd8465023eefffb168f2da9a8 to your computer and use it in GitHub Desktop.

Select an option

Save amirandap/9313480fd8465023eefffb168f2da9a8 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "TrelloCardsArray",
"type": "array",
"minItems": 1,
"maxItems": 8,
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"title",
"objective",
"actions",
"definition_of_done",
"due_date"
],
"properties": {
"title": {
"type": "string"
},
"objective": {
"type": "string"
},
"actions": {
"type": "array",
"minItems": 3,
"items": {
"type": "string"
}
},
"definition_of_done": {
"type": "string"
},
"due_date": {
"type": "string",
"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