{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JobResult", "title": "JobResult", "type": "object", "properties": { "jobId": { "type": "string" }, "outputs": { "type": "object", "additionalProperties": true, "description": "Output values from the graph evaluation." }, "downloadUrl": { "type": "string", "format": "uri", "description": "URL to download binary output if applicable." } } }