Last active
August 29, 2015 14:26
-
-
Save kailashbadu/1b3a5dce17e4bcdf3312 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
{ | |
"input": {}, | |
"output": {}, | |
"meta":{ | |
"status" : "completed" //String. Public. possible values are completed, flagged, aborted. | |
"work_duration": 234.12 //Number. Private. Total amount of time spent by the worker in seconds. Robot Time is not included. | |
"skips": 2 //Number. Private. Total number of skips registered in the tasks from this unit. | |
"created_time": "2015-08-02T21:50:49+00:00" //String. Public. The time the unit was created. | |
"processed_time": "2015-08-02T21:50:49+00:00" //String. Public. The time the unit was processed. | |
"turnaround_time": 22.12 //Number. Public. Time it took for the unit to be delivered. | |
"unit_id": 1234123 //Number. Public. The unique identifier for the unit. Required for lookup. | |
"workers" [ //Array. Private. List of workers who completed a task from this unit. | |
{ | |
"id" : '1232-AZXERIMANUM' //String. | |
"skill_score": 1214 //Number. Score in the skill of the station in which task was completed. | |
"work_duration": //Number.Total amount of time spent by the worker in seconds | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment