JSON Objects ============ Common Engine resources are passed between client and server using JSON interfaces. Below are the formats for these objects. ========== Filesystem ========== .. code-block:: JSON { "filesystem_id": "string", "filesystem_name": "string" } ==== Tool ==== .. code-block:: JSON { "tool_id": "string", "tool_name": "string", "tool_description": "string" } ======== Hardware ======== .. code-block:: JSON { "filesystem_list": [ { "filesystem_id": "string", "filesystem_name": "string" } ], "cpu": 123 "memory": 123, } ===== Batch ===== .. code-block:: JSON { "batch_id": "string", "batch_tool": { "tool_id": "string", "tool_name": "string", "tool_description": "string" }, "n_jobs": 123, "batch_hardware": { "filesystem_list": [ { "filesystem_id": "string", "filesystem_name": "string" } ], "cpu": 123 "memory": 123, } } =========== BatchStatus =========== .. code-block:: JSON { "submitted": 123, "pending": 123, "runnable": 123, "starting": 123, "running": 123, "succeeded": 123, "failed": 123 } ======== Argument ======== .. code-block:: JSON { "argument_key": "string", "argument_value": "string" } === Job === .. code-block:: JSON { "job_id": "string", "job_tool": { "tool_id": "string", "tool_name": "string", "tool_description": "string" }, "job_log_id": "string", "job_argument_list": [ { "argument_key": "string", "argument_value": "string" } ]