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

conditionsOfAccess

A Schema.org Property

This term is proposed for full integration into Schema.org, pending implementation feedback and adoption from applications and websites.
Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an ArchiveComponent held by an ArchiveOrganization. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.

For example "Available by appointment from the Reading Room" or "Accessible only from logged-in accounts ".
Values expected to be one of these types
Text
Used on these types
CreativeWork

Source

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


Examples

Example 1
Copied
Example notes or example HTML without markup.
<!-- Dataset with restricted access -->
Example encoded as Microdata embedded in HTML.
<!-- Dataset with restricted access -->
<!-- JSON-LD example only -->
Example encoded as RDFa embedded in HTML.
<!-- Dataset with restricted access -->
<!-- JSON-LD example only -->
Example encoded as JSON-LD in a HTML script tag.
<!-- Dataset with restricted access -->
<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "Dataset",
  "@id": "https://doi.org/10.7910/DVN/0OLJLM",
  "name": "Restricted Access WFHS Leef Manager Linking Data, Version 1.0",
  "conditionsOfAccess": "Access to this dataset can be obtained by visiting the Work, Family & Health Network web page and following the instructions: http://projects.iq.harvard.edu/wfhn/restricted-access-data."
}
</script>
Structured representation of the JSON-LD example.
Example 2
Copied
Example notes or example HTML without markup.
<!-- ArchiveComponent with restricted access -->
Example encoded as Microdata embedded in HTML.
<!-- ArchiveComponent with restricted access -->
<!-- JSON-LD example only -->
Example encoded as RDFa embedded in HTML.
<!-- ArchiveComponent with restricted access -->
<!-- JSON-LD example only -->
Example encoded as JSON-LD in a HTML script tag.
<!-- ArchiveComponent with restricted access -->
<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": ["CreativeWork","ArchiveComponent"],
  "url": "https://purl.stanford.edu/bp158wj7223",
  "name": "Margaret Mitchell letter to Herschel Bricknell, 1936 August 22",
  "conditionsOfAccess": "Online content is available for access via the Special Collections Reading Room.",
  "holdingArchive": {
    "@type": "ArchiveOrganization",
    "name": "Stanford Digital Repository",
    "url": "https://purl.stanford.edu/"
  }
}
</script>
Structured representation of the JSON-LD example.