Last active
September 15, 2017 19:35
-
-
Save dmesquita/41d02eb763f52158990e89b0e4691ada to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"projects": [ | |
{ | |
"meeting": "1st Meeting", | |
"type": "project", | |
"date": "09/03/2017", | |
"label": "Project 002/2017", | |
"status": "approved" | |
}, | |
{ | |
"meeting": "1st Meeting", | |
"type": "project", | |
"date": "09/03/2017", | |
"label": "Project 005/2017", | |
"status": "voting_round_1" | |
}, | |
{ | |
"meeting": "1st Meeting", | |
"type": "project", | |
"date": "09/03/2017", | |
"label": "Project 003/2017", | |
"status": "voting_round_2" | |
}, | |
{ | |
"meeting": "1st Meeting", | |
"type": "project", | |
"date": "09/03/2017", | |
"label": "Project 004/2017", | |
"status": "voting_round_2" | |
} | |
] | |
} |
This file contains 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
{ | |
"projects": [ | |
{ | |
"date": "14/7/2017", | |
"description": "Learn how to ride a bike", | |
"label": "PJ 011/2017", | |
"meeting": "3th Meeting", | |
"status": "approved", | |
"type": "project" | |
}, | |
{ | |
"date": "14/7/2017", | |
"description": "Create an app", | |
"label": "PJ 012/2017", | |
"meeting": "3th Meeting", | |
"status": "analysis", | |
"type": "project" | |
}, | |
{ | |
"date": "11/7/2017", | |
"description": "Learn how to ride a bike", | |
"label": "PJ 011/2017", | |
"meeting": "1st Meeting", | |
"status": "presented", | |
"type": "project" | |
}, | |
{ | |
"date": "11/7/2017", | |
"description": "Create an app", | |
"label": "PJ 012/2017", | |
"meeting": "1st Meeting", | |
"status": "presented", | |
"type": "project" | |
}, | |
{ | |
"date": "12/7/2017", | |
"description": "Create an app", | |
"label": "PJ 012/2017", | |
"meeting": "2th Meeting", | |
"status": "analysis", | |
"type": "project" | |
}, | |
{ | |
"date": "12/7/2017", | |
"description": "Learn how to ride a bike", | |
"label": "PJ 011/2017", | |
"meeting": "2th Meeting", | |
"status": "voting_round_1", | |
"type": "project" | |
} | |
] | |
} |
This file contains 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
{ | |
"meetings": [{ | |
"label": "1st Meeting", | |
"date": "09/03/2017", | |
"projects_presented": [], | |
"projects_approved": ["002/2017"], | |
"projects_voting_round_1": ["005/2017"], | |
"projects_voting_round_2": ["003/2017", "004/2017"] | |
}, | |
{ | |
"label": "2nd Meeting", | |
"date_start": "10/03/2017", | |
"projects_presented": ["006/2017"], | |
"projects_approved": ["003/2017", "004/2017"], | |
"projects_voting_round_1": [], | |
"projects_voting_round_2": ["005/2017"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment