'Convert comic book file to CBZ', 'description' => 'Converts a CBR or CBZ file to CBZ format and returns the converted file for download', 'requestBody' => [ 'content' => [ 'multipart/form-data' => [ 'schema' => [ 'type' => 'object', 'required' => ['file'], 'properties' => [ 'file' => [ 'type' => 'string', 'format' => 'binary', 'description' => 'Comic book file to convert (CBR, CBZ, max 150MB)' ] ] ] ] ] ], 'responses' => [ '200' => [ 'description' => 'File converted successfully', 'content' => [ 'application/x-cbz' => [ 'schema' => [ 'type' => 'string', 'format' => 'binary' ] ] ] ] ] ] ) ] )] class ConvertFileResource { public ?File $file = null; public ?string $fileName = null; // Propriétés pour la réponse public mixed $fileContent = null; public ?string $filename = null; public ?string $originalConvertedFilePath = null; }