I am maintaining a special list of software packages via biblatex/biber. Often, I am referring to a general piece of software and not a specific version. Therefore, it is hard to give a precise year or date for the bibtex entry. So, they might look as follows:
@software{Boost,
label = {Boost},
title = {Boost C++~Libraries},
url = {http://www.boost.org/},
urldate = {2016-09-08}
}
I have used the solution from this question to make biber aware of the software entry type at all, so most warnings are gone when using the --validate-datamodel command line flag. However, what remains is:
Biber reported the following issues with 'Boost': - Datamodel: Entry 'Boost' (thesis.bib): Missing mandatory field - one of 'date, year' must be defined. (page 1)
Since I have manually assigned a label I am completely happy with the way of how things get printed. I just want to silence this warning. Any way to achieve this?
dateoryearis mandatory for all entry types. Either ignore the warning or rewrite the datamodel. – moewe Mar 21 '17 at 12:59