Note: you are viewing the development version of Schema.org. See How we work for more details.

archiveHeld

A Schema.org Property

This term is proposed for full integration into Schema.org, pending implementation feedback and adoption from applications and websites.
Collection, fonds, or item held, kept or maintained by an ArchiveOrganization.

Inverse-property: holdingArchive

Values expected to be one of these types
ArchiveComponent
Used on these types
ArchiveOrganization

Source

https://github.com/schemaorg/schemaorg/issues/1758


Examples

Example 1
Copied
Example notes or example HTML without markup.
<!-- Page Address https://archiveshub.jisc.ac.uk/search/locations/eae30daa-1bf9-33d9-bf1c-7aeb220d2e76 -->
<div>
<h1>V&A Theatre and Performance Collections</h1>
<span class="label">Web</span>
<span class="val"><a href="http://www.vam.ac.uk/content/articles/t/archives-theatre-performance/">V&A Theatre and Performance Collections</a></span><br/>
<span class="label">Address</span>
<span class="val">Blythe House23 Blythe Road, London W14 0QX, England</span><br/>
<span class="label">Collection</span>
<span class="val"><a href="https://archiveshub.jisc.ac.uk/data/gb71-thm/407">Ronnie Barker Collection</a></span>
</div>
Example encoded as Microdata embedded in HTML.
<div itemscope itemtype="https://schema.org/ArchiveOrganization">
<h1 itemprop="name">V&A Theatre and Performance Collections</h1>
<span class="label">Web</span>
<span class="val"><a  itemprop="url" href="http://www.vam.ac.uk/content/articles/t/archives-theatre-performance/">V&A Theatre and Performance Collections</a></span><br/>
<span class="label">Address</span>
<span class="val" itemprop="address">Blythe House23 Blythe Road, London W14 0QX, England</span><br/>
<span class="label">Collection</span>
<span class="val" itemprop="archiveHeld"><a href="https://archiveshub.jisc.ac.uk/data/gb71-thm/407">Ronnie Barker Collection</a></span>
</div>
Example encoded as RDFa embedded in HTML.
<!-- Page Address https://archiveshub.jisc.ac.uk/search/locations/eae30daa-1bf9-33d9-bf1c-7aeb220d2e76 -->
<div vocab="https://schema.org/" type="ArchiveOrganization">
<h1 property="name">V&A Theatre and Performance Collections</h1>
<span class="label">Web</span>
<span class="val" ><a property="url" href="http://www.vam.ac.uk/content/articles/t/archives-theatre-performance/">V&A Theatre and Performance Collections</a></span><br/>
<span class="label">Address</span>
<span class="val" property="address">Blythe House23 Blythe Road, London W14 0QX, England</span><br/>
<span class="label">Collection</span>
<span class="val" property="archiveHeld"><a href="https://archiveshub.jisc.ac.uk/data/gb71-thm/407">Ronnie Barker Collection</a></span>
</div>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@id": "https://archiveshub.jisc.ac.uk/search/locations/eae30daa-1bf9-33d9-bf1c-7aeb220d2e76",
  "@type": "ArchiveOrganization",
  "name": "V&A Theatre and Performance Collections",
  "url": "http://www.vam.ac.uk/content/articles/t/archives-theatre-performance/",
  "archiveHeld": "https://archiveshub.jisc.ac.uk/data/gb71-thm/407",
  "address": "Blythe House23 Blythe Road, London W14 0QX, England"
}
</script>
Structured representation of the JSON-LD example.