Schemas
Schemas
InvokeCloudFnRequestBody
{
"functionName": "string",
"moduleName": "string",
"argumentValues": {
"property1": "string",
"property2": "string"
},
"argumentTypes": {
"property1": "string",
"property2": "string"
},
"returnType": "string"
}
Properties
functionName
string
false
none
Name of the function
moduleName
string
false
none
Name of the python module
argumentValues
object
false
none
Array of arguments
» additionalProperties
string
false
none
none
argumentTypes
object
false
none
Map of argument types
» additionalProperties
string
false
none
none
returnType
string
false
none
Return type of the function
InvokeCloudFnResponseBody
{
"result": {}
}
Properties
result
object
false
none
Key value pair or responses that the cloud funciton will return it
File
{
"createdAt": "2000-01-23T04:56:07.000Z",
"fileName": "fileName",
"metadata": {},
"fileSize": 6,
"fileURI": "fileURI",
"id": 0
}
Properties
id
integer
false
none
Unique id of the file object
fileName
string
false
none
Name of file
fileURI
string¦null
false
none
URI of the file
fileSize
integer
false
none
Size of the file in bytes
createdAt
string(date-time)
false
none
Time when the file object was created
metadata
object¦null
false
none
Optional metadata associated with the file (JSON format)
taskResponse
{
"createdAt": "2000-01-23T04:56:07.000Z",
"queueId": 6,
"completedAt": "2000-01-23T04:56:07.000Z",
"payload": "payload",
"startedAt": "2000-01-23T04:56:07.000Z",
"id": 0,
"status": "TO_DO"
}
Properties
id
integer(int64)
false
none
Unique ID of the task
status
string
false
none
Current status of task
createdAt
string(date-time)
false
none
Task creation time-date
startedAt
string(date-time)
false
none
task starting time
completedAt
string(date-time)
false
none
task completion time-date
payload
string
false
none
data regarding task
queueId
integer(int64)
false
none
queueID to which task belongs
Enumerated Values
status
TO_DO
status
IN_PROGRESS
status
DONE
taskUpdateRequest
{
"status": "T0_D0"
}
Properties
status
string
false
none
Current status of task
Enumerated Values
status
TO_DO
status
IN_PROGRESS
status
DONE
addTaskToqueueRequest
{
"queueName": "patient",
"payload": "payload"
}
Properties
payload
string
false
none
data regarding task
queueName
string
false
none
queuename to which task belongs
queueResponse
{
"queueName": "queueName",
"id": 0,
"createdAt": "2000-01-23T04:56:07.000Z"
}
Properties
id
integer(int64)
false
none
Unique id of the queue
queueName
string
false
none
Name of the queue
createdAt
string(date-time)
false
none
Task creation time-date
ApiResponse
{
"code": 0,
"type": "type",
"message": "message"
}
Properties
code
integer(int32)
false
none
none
type
string
false
none
none
message
string
false
none
none
queueNameRequest
{
"queueName": "string"
}
Properties
queueName
string
false
none
Name of the queue
inlineResponse200
{
"taskID": "taskID"
}
Properties
taskID
string
false
none
ID of the task from queue
taskStatus
{
"status": "status"
}
Last updated