{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CombinePDFRequest", "title": "CombinePDFRequest", "type": "object", "description": "Request body for combining multiple PDFs", "required": [ "assets" ], "properties": { "assets": { "type": "array", "description": "Ordered list of PDF assets to combine", "minItems": 2, "items": { "type": "object", "required": [ "assetID" ], "properties": { "assetID": { "type": "string", "description": "Asset ID of the PDF to include" }, "pageRanges": { "type": "array", "description": "Optional page ranges to extract from this PDF", "items": { "$ref": "#/components/schemas/PageRange" } } } } } } }