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

_inputs.*

Table of contents

Description:

This key defines an input configuration at a given level of the configuration cascade.

The value is an object that can contain type, label, options, disabled, hidden, and other input-specific properties. Each input configuration defines how team members interact with data in the Data Editor.

For more information, please read our documentation on inputs.

Appears in:
└── _inputs
    └── *
Types:

This key defines a simple editing interface for plain text.

Show examplesHide examples

In this example, we have configured the title key as a Text Input.

Copied to clipboard
_inputs:
  title:
    type: text
    label: Blog Title
{
  "_inputs": {
    "title": {
      "type": "text",
      "label": "Blog Title"
    }
  }
}

This key defines an editing interface for plain text.

Show examplesHide examples

In this example, we have configured the description key as a Textarea Input.

Copied to clipboard
_inputs:
  description:
    type: textarea
    label: Description
{
  "_inputs": {
    "description": {
      "type": "textarea",
      "label": "Description"
    }
  }
}

This key defines an editing interface for code or mono-spaced plain text content.

This key defines an editing interface for color values.

This key defines an editing interface for true or false values.

Show examplesHide examples

In this example, we have configured the featured key as a Boolean Input.

Copied to clipboard
_inputs:
  featured:
    type: switch
    label: Featured
{
  "_inputs": {
    "featured": {
      "type": "switch",
      "label": "Featured"
    }
  }
}

This key defines an editing interface for numeric values.

Show examplesHide examples

In this example, we have configured the quantity key as a Number Input.

Copied to clipboard
_inputs:
  quantity:
    type: number
    label: Quantity
{
  "_inputs": {
    "quantity": {
      "type": "number",
      "label": "Quantity"
    }
  }
}

This key defines a slider interface for selecting a numeric value.

This key defines an editing interface for HTML markup content.

This key defines an editing interface for date and/or time values.

This key defines an editing interface for time values only.

This key defines an editing interface for uploading files to your repository or DAM and browsing existing assets.

This key defines an editing interface for relative, absolute, and fully qualified URLs.

This key defines an editing interface for data with multiple predefined options.

Select inputs only allow one value.

Show examplesHide examples

In this example, we have configured the category key as a Select Input.

Copied to clipboard
_inputs:
  category:
    type: select
    label: Category
    options:
      values:
        - Blog
        - News
        - Events
{
  "_inputs": {
    "category": {
      "type": "select",
      "label": "Category",
      "options": {
        "values": [
          "Blog",
          "News",
          "Events"
        ]
      }
    }
  }
}

This key defines an editing interface for data with multiple predefined options.

Multiselect inputs allow several values.

Show examplesHide examples

In this example, we have configured the tags key as a Multiselect Input.

Copied to clipboard
_inputs:
  tags:
    type: multiselect
    label: Tags
    options:
      values:
        - featured
        - news
        - events
{
  "_inputs": {
    "tags": {
      "type": "multiselect",
      "label": "Tags",
      "options": {
        "values": [
          "featured",
          "news",
          "events"
        ]
      }
    }
  }
}

This key defines an editing interface for data with multiple predefined options.

Choice inputs only allow one value.

Show examplesHide examples

In this example, we have configured the status key as a Choice Input.

Copied to clipboard
_inputs:
  status:
    type: choice
    label: Status
    options:
      values:
        - draft
        - published
        - archived
{
  "_inputs": {
    "status": {
      "type": "choice",
      "label": "Status",
      "options": {
        "values": [
          "draft",
          "published",
          "archived"
        ]
      }
    }
  }
}

This key defines an editing interface for data with multiple predefined options.

Multichoice inputs allow several values.

Show examplesHide examples

In this example, we have configured the categories key as a Multichoice Input.

Copied to clipboard
_inputs:
  categories:
    type: multichoice
    label: Categories
    options:
      values:
        - technology
        - design
        - business
{
  "_inputs": {
    "categories": {
      "type": "multichoice",
      "label": "Categories",
      "options": {
        "values": [
          "technology",
          "design",
          "business"
        ]
      }
    }
  }
}

This key defines a user interface for a group of inputs.

This key defines a user interface for lists of inputs or input groups.

Examples:

In this example, we have configured the title key as a Text Input in the blog Collection.

Copied to clipboard
collections_config:
  blog:
    _inputs:
      title:
        type: text
        label: Title
{
  "collections_config": {
    "blog": {
      "_inputs": {
        "title": {
          "type": "text",
          "label": "Title"
        }
      }
    }
  }
}
Open in a new tab