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

values(text-array)[*]

Table of contents

Description:

This key represents an individual text string in the options.values array for Select Inputs.

The value is a string that specifies an available option to choose from.

Appears in:
└── values
    └── Text Array Values
        └── [*]
Type:
string
Examples:

In this example, we have configured an array of text values for a select input.

Copied to clipboard
_inputs:
  category:
    type: select
    options:
      values:
        - Blog
        - News
        - Events
{
  "_inputs": {
    "category": {
      "type": "select",
      "options": {
        "values": [
          "Blog",
          "News",
          "Events"
        ]
      }
    }
  }
}
Open in a new tab