☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

tags[*]

Table of contents

Description:

This key represents an individual tag string in the values[*].tags array.

The value is a string that specifies a tag associated with a structure value.

Appears in:
└── [*]
    └── tags
        └── [*]
Type:
string
Examples:

In this example, we have configured the featured and news tags for the entry labeled Blog in the article_information Structure.

Copied to clipboard
_structures:
  article_information:
    values:
      - label: Blog
        tags:
          - featured
          - news
{
  "_structures": {
    "article_information": {
      "values": [
        {
          "label": "Blog",
          "tags": [
            "featured",
            "news"
          ]
        }
      ]
    }
  }
}
Open in a new tab