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 in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
Collection, fonds, or item held, kept or maintained by an ArchiveOrganization.

Inverse-property: holdingArchive


Values expected to be one of these types

Used on these types

Source

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


Examples

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