> 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: Site Data Usage # Type: Site Data Usage Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/cms/operations/site-data-usage/site-data-usage-object.md ## Description: Site-wide data resource limits and current usage, including storage, data item counts, and data collection counts. ## Schema: ```json Type: Site Data Usage Object | type: SiteDataUsage Description: Site-wide data resource limits and current usage, including storage, data item counts, and data collection counts. - name: storageLimitInBytes | type: string | description: Maximum storage allowed for all native collections combined, in bytes. Storage usage is shared between the live and sandbox environments. For example, with a limit of 1 GB, the live environment could use 700 MB and the sandbox 300 MB before the limit is reached. When this limit is reached, writes to collections fail. - name: value | type: string | description: - name: itemCountLimit | type: string | description: Maximum number of data items allowed per environment. This limit applies separately to the live and sandbox environments. For example, with a limit of 1,000, both the live and sandbox environments can each contain 1,000 items independently. When this limit is reached in an environment, writes to collections in that environment fail. - name: collectionCountLimit | type: number | description: Maximum number of native data collections allowed. - name: value | type: number | description: - name: collectionCount | type: number | description: Total number of native data collections. - name: totalUsedLive | type: Usage | description: Storage and item usage across all native collections in the live environment. - name: bytes | type: string | description: Storage used, in bytes. - name: items | type: string | description: Number of data items. - name: totalUsedSandbox | type: Usage | description: Storage and item usage across all native collections in the sandbox environment. - name: dataCollectionUsages | type: Array | description: Storage and item usage per native data collection. - name: dataCollectionId | type: string | description: Data collection ID. - name: displayName | type: string | description: Data collection display name. - name: value | type: string | description: - name: dataCollectionType | type: string | description: Data collection type. Currently, only native collections are returned. enum: NATIVE, WIX_APP, BLOCKS_APP, EXTERNAL - name: totalUsedLive | type: Usage | description: Storage and item usage in the live environment. - name: totalUsedSandbox | type: Usage | description: Storage and item usage in the sandbox environment. ```