> 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: Storage Item # Type: Storage Item Object # Link: https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/storage-item-object.md ## Description: A storage item is a global data container that you can use across multiple automations to store different types of data in key-value pairs. This include data such as Wix user preferences, counters, and configuration settings. ## Schema: ```json Type: Storage Item Object | type: StorageItem Description: A storage item is a global data container that you can use across multiple automations to store different types of data in key-value pairs. This include data such as Wix user preferences, counters, and configuration settings. - name: id | type: string | description: Storage item ID. - name: value | type: string | description: - name: key | type: string | description: Unique storage item key. The key can only contain letters, numbers, and underscores. Once you create the item, you can't update its key. - name: displayName | type: string | description: Storage item display name. The display name appears when you [add or edit steps to your automation](https://support.wix.com/en/article/wix-automations-creating-an-automation-with-the-new-builder#step-3-add-steps-to-you-automation). - name: description | type: string | description: Storage item description. - name: type | type: string | description: Data type of the storage item's value. Once created, you can't change the value's type. enum: STRING, BOOLEAN, NUMBER, COUNTER - name: createdDate | type: string | description: When the storage item was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: When the storage item was last updated. - name: tags | type: Tags | description: [Tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction.md) assigned to the storage item. You can use public and private tags for categorization and filtering. - name: privateTags | type: TagList | description: List of private tags. Private tags require additional permissions to access. They are usually hidden from site members and visitors. - name: tagIds | type: Array | description: List of tag IDs. - name: publicTags | type: TagList | description: List of public tags. Public tags are visible to anyone with access to the main storage item, including site members and visitors. - name: extendedFields | type: ExtendedFields | description: Extended fields. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). ```