{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/PrintLabels.json", "title": "PrintLabels", "additionalProperties": false, "properties": { "containerIds": { "description": "List of IDs of containers that will have labels printed (one label will be printed per container).\n", "items": { "type": "string" }, "type": "array" }, "labelTemplateId": { "description": "ID of label template to use (same template will be used for all labels printed).\n", "example": "lbltmp_lCpY5Qvh", "type": "string" }, "printerId": { "description": "ID of printer to use (same printer will be used for all labels printed).\n", "example": "print_YJQkilOJ", "type": "string" } }, "required": [ "containerIds", "labelTemplateId", "printerId" ], "type": "object" }