{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/AutomationFile.json", "title": "AutomationFile", "properties": { "assayRunId": { "example": "588aca02-1a20-4b94-a40f-b3f3a0081749", "type": "string" }, "automationFileConfig": { "properties": { "name": { "example": "MyInstrumentName", "type": "string" } }, "type": "object" }, "file": { "allOf": [ { "$ref": "#/components/schemas/Blob" } ], "nullable": true }, "id": { "type": "string" }, "status": { "enum": [ "SUCCEEDED", "FAILED", "NOT_STARTED", "RUNNING" ], "type": "string" } }, "type": "object" }