> 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 Sharing # Type: Data Sharing Policy Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/cms/collection-management/data-sharing/data-sharing-policy-object.md ## Description: A data sharing policy defines how a data collection is shared between sites in the same Wix account. The policy specifies which collection to share, optional filtering rules to control which items are accessible, and serves as the access credential for other sites to connect to the shared collection. Multiple policies can be created for the same collection with different filtering rules or access patterns. ## Schema: ```json Type: Data Sharing Policy Object | type: DataSharingPolicy Description: A data sharing policy defines how a data collection is shared between sites in the same Wix account. The policy specifies which collection to share, optional filtering rules to control which items are accessible, and serves as the access credential for other sites to connect to the shared collection. Multiple policies can be created for the same collection with different filtering rules or access patterns. - name: id | type: string | description: Data sharing policy ID. - name: dataCollectionId | type: string | description: ID of the data collection to share. - name: dataItemsFilter | type: Struct | description: Filter to restrict which items from the collection are shared. Use [API Query Language syntax](https://dev.wix.com/api/rest/getting-started/api-query-language) to define filtering rules. If not specified, all items in the collection are shared. - name: fields | type: object | description: - name: createdDate | type: string | description: Date and time the data sharing policy was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the data sharing policy was last updated. ```