{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "PDFTransformMultipartRequest", "description": "", "type": "object", "properties": { "inputs": { "type": "array", "items": { "type": "string", "format": "binary" } }, "input_ids": { "type": "array", "items": { "type": "string" } }, "operations": { "type": "array", "items": { "type": "object", "additionalProperties": {} } }, "output_file_name": { "type": "string" } }, "required": [ "input_ids", "inputs", "operations", "output_file_name" ] }