> 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: Tags # Type: Tag Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/blog/tags/tag-object.md ## Description: The `Tags` object represents the information for blog tags. ## Schema: ```json Type: Tag Object | type: Tag Description: The `Tags` object represents the information for blog tags. - name: id | type: string | description: Tag ID. - name: label | type: string | description: Tag label. A blog can't have two tags with the same label. - name: slug | type: string | description: Part of a tag's URL that refers to a specific tag. For example, `'https:/example.com/tags/{my-tag-slug}'` - name: createdDate | type: string | description: Date the tag was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date the tag was last updated. - name: postCount | type: number | description: Number of posts with this tag. Includes unpublished draft posts. - name: url | type: PageUrl | description: Tag URL. The `url` directs you to a page that lists every post with the specified tag. - name: base | type: string | description: The base URL. For premium sites, this is the domain. For free sites, this is the site URL. For example, `mysite.wixsite.com/mysite`. - name: path | type: string | description: The relative path for the page within the site. For example, `/product-page/a-product`. - name: publishedPostCount | type: number | description: Number of published posts with this tag. - name: translationId | type: string | description: ID of the tag's translations when [Wix Multilingual](https://support.wix.com/en/article/wix-multilingual-translating-your-blog) is installed on a site. All translations of a single tag share the same `translationId`. - name: value | type: string | description: - name: language | type: string | description: Tag language. 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. ```