getpatienttime
PatientTimeResponseInfo Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"_id": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"firstTriageStarted": {
"type": "object"
},
"lastTriageCompleted": {
"type": "object"
},
"totalDuration": {
"type": "number"
},
"averageDuration": {
"type": "number"
}
},
"required": [
"_id",
"firstName",
"lastName",
"firstTriageStarted",
"lastTriageCompleted",
"totalDuration",
"averageDuration"
]
}