{% set container = entity %} {% set entity_view = "coverage" %} {% set entity_type = "container" %} {% import "entity_macros.html" as entity_macros %} {% extends "entity_base.html" %} {% block entity_main %}

This page summarizes and visualizes the article-level (or output-level) preservation status for a single publication venue ({{ container.name }}). Fatcat is a preservation-oriented catalog, and metadata is aggregated from many sources.

However, metadata quality and consistency is difficult at scale and there may be preservation coverage not recorded here, or in some rare cases we may have content incorrectly matched and marked as preserved. Please contact us or submit corrections directly if you find any mistakes or inaccuracies.

{% if container._stats.total >= 1 %}

Overall Preservation Coverage

{{ entity_macros.preservation_bar(container._stats.preservation, extra_class="large") }}
{{ entity_macros.preservation_table(container._stats.preservation) }}
{% endif %}

Known Holdings Elsewhere

This table is based on KBART reports from large, independent, long-term digital preservation projects. We use the start and stop years of fulltext coverage, then count individuals works as included or not on the basis of year alone (not considering volume or issue metadata). These are mostly "dark" archives, with no direct public access to holdings.

The Keeper's Registry project, currently run by issn.org, is a more authoritative source for aggregated KBART reports, and includes more archives. {% if container.issnl %} You can double check the Keeper's entry for this ISSN on portal.issn.org; click through to the "Archival Status" link to see holdings information. {% endif %} {% if container.extra and container.extra.kbart %} {% for k, v in container.extra.kbart.items() %}
Archive Year Span(s)
{% if k == "lockss" %} LOCKSS {% elif k == "clockss" %} CLOCKSS {% elif k == "hathitrust" and container.issnl %} HathiTrust {% elif k == "portico" and container.issnl %} Portico {% elif k == "scholarsportal" and container.issnl %} Scholars Portal {% else %} {{ k }} {% endif %} {% for span in v.year_spans %} {% if span|length >= 2 -%} {{ span[0] }} to {{ span[1] -}} {% elif span|length == 1 -%} {{ span[0] -}} {% endif -%}
{% endfor %} {% if not v.year_spans %}-{% endif %} {% endfor %}
{% else %}

No holdings at any other locations recorded. {% endif %}

{% if container._stats.total >= 1 %}

Preservation Coverage by Year

Download as JSON


Preservation Coverage by Volume Number

Download as JSON


Preservation Coverage by Release Type

{% for type_row in container._type_preservation %}
Release Type Total Count Coverage
{{ type_row.release_type }} {{ "{:,}".format(type_row.total) }} {{ entity_macros.preservation_bar(type_row) }} {% endfor %}
{% endif %} {% endblock %}