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

id

Table of contents

Description:

This key defines the string used to identify a given Structure value when refering to it from other input configuration.

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

In this example, we have configured the blog_post ID for the entry labeled Blog in the article_information Structure.

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