Status information for an asynchronous batch request.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BatchStatus", "type": "object", "description": "Status information for an asynchronous batch request.", "properties": { "id": { "type": "string", "description": "The batch request identifier." }, "startTime": { "type": "string", "description": "Time when the batch request started (Eastern Time Zone)." }, "endTime": { "type": "['string', 'null']", "description": "Time when the batch request ended. Null if still processing." }, "status": { "type": "string", "description": "Current batch processing status." } } }