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

WritePermission

A Schema.org Enumeration Member
Permission to write or edit the document.

A member value for enumeration type: DigitalDocumentPermissionType

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. A digital document everyone can read, but only one person can edit.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@type": "DigitalDocument",
  4.   "name": "New schema.org types proposal",
  5.   "author": "Alice",
  6.   "hasDigitalDocumentPermission": [
  7.     {
  8.       "@type": "DigitalDocumentPermission",
  9.       "permissionType": "https://schema.org/WritePermission",
  10.       "grantee": {
  11.         "@type": "Person",
  12.         "email": "alice@example.com"
  13.       }
  14.     },
  15.     {
  16.       "@type": "DigitalDocumentPermission",
  17.       "permissionType": "https://schema.org/ReadPermission",
  18.       "grantee": {
  19.         "@type": "Audience",
  20.         "audienceType": "public"
  21.       }
  22.     }
  23.   ]
  24. }
  25. </script>
Structured representation of the JSON-LD example.