{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "title": "GetGPTaskJobStatusToolOutput",
    "type": "object",
    "properties": {
        "jobStatus": {
            "type": "string",
            "description": "Current status for the job."
        },
        "result": {
            "type": "object",
            "description": "Task results represented as an object when the job succeeds. Null otherwise."
        }
    },
    "required": [
        "jobStatus"
    ]
}
