[ '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; }