Last active
August 29, 2015 13:59
-
-
Save otarza/10861226 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
{"customer": | |
{ | |
"id":1, | |
"name":"Cyberia", | |
"email":"[email protected]", | |
"phone":"59339459438", | |
"contactPerson":"Merab Zakalashvili", | |
"siterUrl":"http://cyberia.ge", | |
"logoUrl":"http://cyberia.ge/logo.png", | |
"projects": [1, 2, 4] | |
} | |
} |
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
{ | |
"customers": | |
[ | |
{"id": 1, "name": "Cyberia", "email": "[email protected]", "phone": "59339459438", "contactPerson": "Merab Zakalashvili", "siterUrl": "http://cyberia.ge", "logoUrl": "http://cyberia.ge/logo.png", "projects": [1, 2, 4]}, | |
{"id": 2, "name": "Cyberia", "email": "[email protected]", "phone": "59339459438", "contactPerson": "Merab Zakalashvili", "siterUrl": "http://cyberia.ge", "logoUrl": "http://cyberia.ge/logo.png", "projects": [1, 2, 4]}, | |
{"id": 2, "name": "Cyberia", "email": "[email protected]", "phone": "59339459438", "contactPerson": "Merab Zakalashvili", "siterUrl": "http://cyberia.ge", "logoUrl": "http://cyberia.ge/logo.png", "projects": [1, 2, 4]} | |
] | |
} |
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
{ | |
"job": | |
{ | |
"id": 1, | |
"name": "ProjectX", | |
"description": "Description of ProjectX", | |
"project": 1, | |
"chunks": [1, 4, 5] | |
} | |
} |
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
{ | |
"jobs": | |
[ | |
{"id": 1, "name": "ProjectX", "description": "Description of ProjectX", "project": 1, "chunks": [1, 4, 5]}, | |
{"id": 2, "name": "ProjectX", "description": "Description of ProjectX", "project": 1, "chunks": [1, 4, 5]}, | |
{"id": 3, "name": "ProjectX", "description": "Description of ProjectX", "project": 1, "chunks": [1, 4, 5]} | |
] | |
} |
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
{"project": | |
{ | |
"id": 1, | |
"name": "ProjectX", | |
"description": "Description of ProjectX", | |
"customer": 1, | |
"jobs": [1, 4, 5] | |
} | |
} |
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": | |
[ | |
{"id": 1, "name": "ProjectX", "description": "Description of ProjectX", "customer": 1, "jobs": [1, 4, 5]}, | |
{"id": 2, "name": "ProjectY", "description": "Description of ProjectY", "customer": 1, "jobs": [1, 4, 5]}, | |
{"id": 3, "name": "ProjectZ", "description": "Description of ProjectZ", "customer": 1, "jobs": [1, 4, 5]} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment