> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Data Permissions # Type: Data Permissions Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/cms/collection-management/data-permissions/data-permissions-object.md ## Description: Permissions that determine who can access or perform actions on items in a data collection. Learn more about [collection permissions](https://support.wix.com/en/article/cms-collection-permissions-overview). ## Schema: ```json Type: Data Permissions Object | type: DataPermissions Description: Permissions that determine who can access or perform actions on items in a data collection. Learn more about [collection permissions](https://support.wix.com/en/article/cms-collection-permissions-overview). - name: id | type: string | description: ID of the collection for these permissions. - name: itemRead | type: string | description: Which users can read items from the collection. Learn more about [item actions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#item-actions). enum: ANYONE, SITE_MEMBER, SITE_MEMBER_AUTHOR, CMS_EDITOR, PRIVILEGED - name: itemInsert | type: string | description: Which users can create new items in the collection. Learn more about [item actions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#item-actions). - name: itemUpdate | type: string | description: Which users can update existing items in the collection. Learn more about [item actions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#item-actions). - name: itemRemove | type: string | description: Which users can remove items from the collection. Learn more about [item actions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#item-actions). - name: specialPermissions | type: Array | description: Special permissions granted to specified users or roles. > **Note:** Special permissions override [collection-level permissions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#collection-level-permissions). - name: id | type: string | description: ID of the special permissions set. - name: itemRead | type: string | description: Whether the specified users or roles can read items from the collection. When set to `ALLOWED`, users can read items from the collection. When set to `UNSPECIFIED`, [collection-level permissions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#collection-level-permissions) apply. Learn more about [item actions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#item-actions). enum: UNSPECIFIED, ALLOWED - name: itemInsert | type: string | description: Whether the specified users or roles can create new items in the collection. When set to `ALLOWED`, users can create new items in the collection. When set to `UNSPECIFIED`, [collection-level permissions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#collection-level-permissions) apply. Learn more about [item actions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#item-actions). - name: itemUpdate | type: string | description: Whether the specified users or roles can update existing items in the collection. When set to `ALLOWED`, users can update existing items in the collection. When set to `UNSPECIFIED`, [collection-level permissions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#collection-level-permissions) apply. Learn more about [item actions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#item-actions). - name: itemRemove | type: string | description: Whether the specified users or roles can remove items from the collection. When set to `ALLOWED`, users can remove items from the collection. When set to `UNSPECIFIED`, [collection-level permissions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#collection-level-permissions) apply. Learn more about [item actions](https://dev.wix.com/docs/rest/business-solutions/cms/data-permissions/introduction.md#item-actions). ```