I want to display the website title in my bibliography.
Currently it looks like this:

The website title should be between the year and the url. I use Zotero for my bib management and it files the website title under journal title.
MWE:
\documentclass[11pt,a4paper]{scrbook}
\usepackage[english,main=ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{filecontents}
\begin{filecontents}{test.bib}
@online{eosmed2013,
title = {Additive Fertigungsverfahren in der Medizin},
author = {{N. N.}},
date = {2013},
journaltitle = {https://www.eos.info/},
url = {https://cdn0.scrvt.com/eos/public/66918c41e39c1b11/d05335391d6a4957d64dc29be4905963/medizinbroschuere.pdf},
urldate = {2020-02-27}
}
\end{filecontents}
\usepackage[
backend=biber,
style=ext-numeric,
citestyle=numeric-comp,
sorting=nyt,
autocite=inline,
isbn=false,
url=false,
articlein=false,
innamebeforetitle=true,
giveninits=true,
maxbibnames=99]{biblatex}
\addbibresource{test.bib}
\begin{document}
\cite{eosmed2013}
\printbibliography
\end{document}
biblatexdata model.journaltitlecertainly is not the right field here. You can look into usingmaintitlefor that, see https://tex.stackexchange.com/q/457593/35864 and https://tex.stackexchange.com/q/172441/35864 – moewe Feb 27 '20 at 18:20maintitleinstead ofjournaltitle(which is most definitely useless anyway). If there is no option in vanilla Zotero I'm sure you can cook up something with https://retorque.re/zotero-better-bibtex/ (I have never used Zotero nor Zotero Better BibTeX myself, so this is just hearsay). – moewe Feb 28 '20 at 16:11