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

ReadPermission

A Schema.org Enumeration Member
Permission to read or view the document.

A member value for enumeration type: DigitalDocumentPermissionType

Examples

Example 1
Copied
Example notes or example HTML without markup.
A digital document everyone can read, but only one person can edit.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@type": "DigitalDocument",
  "name": "New schema.org types proposal",
  "author": "Alice",
  "hasDigitalDocumentPermission": [
    {
      "@type": "DigitalDocumentPermission",
      "permissionType": "https://schema.org/WritePermission",
      "grantee": {
        "@type": "Person",
        "email": "alice@example.com"
      }
    },
    {
      "@type": "DigitalDocumentPermission",
      "permissionType": "https://schema.org/ReadPermission",
      "grantee": {
        "@type": "Audience",
        "audienceType": "public"
      }
    }
  ]
}
</script>
Structured representation of the JSON-LD example.