ReadPermission - Schema.org Enumeration Member

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

Examples

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.