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

*[*]

Table of contents

Description:

This key represents an individual assigned structure string in the _inputs.*(object-input).options.entries.assigned_structures.* array.

The value is a string that specifies a structure key name assigned to entries in an Object Input.

Appears in:
└── _inputs
    └── *
        └── Object Input
            └── options
                └── entries
                    └── assigned_structures
                        └── *
                            └── [*]
Type:
string
Examples:

In this example, we have configured an assigned structure for entries in a mutable Object Input.

Copied to clipboard
_inputs:
  metadata:
    type: object
    options:
      allow_create: true
      entries:
        allowed_keys:
          - title
        assigned_structures:
          title:
            - article_metadata
{
  "_inputs": {
    "metadata": {
      "type": "object",
      "options": {
        "allow_create": true,
        "entries": {
          "allowed_keys": [
            "title"
          ],
          "assigned_structures": {
            "title": [
              "article_metadata"
            ]
          }
        }
      }
    }
  }
}
Open in a new tab