From a manual inspection of a statement, some duplicates were found in the purl field, which is currently a List. Those would be filtered by the consumer once ingested and filter but would be parsed twice, introducing extra unnecessary work.
The purl field can be made into a Set to avoid this.
From a manual inspection of a statement, some duplicates were found in the
purl
field, which is currently aList
. Those would be filtered by theconsumer
once ingested and filter but would be parsed twice, introducing extra unnecessary work.The
purl
field can be made into aSet
to avoid this.