label

On this page

Description:

This key defines the bold title text above an Input.

Appears in:
├── Text Input
│   └── label
├── _inputs
│   └── *
│       ├── Textarea Input
│       │   └── label
│       ├── Code Input
│       │   └── label
│       ├── Color Input
│       │   └── label
│       ├── Number Input
│       │   └── label
│       ├── Range Input
│       │   └── label
│       ├── Rich Text Input
│       │   └── label
│       ├── Date/Datetime Input
│       │   └── label
│       ├── Time Input
│       │   └── label
│       ├── File Input
│       │   └── label
│       ├── Multiselect Input
│       │   └── label
│       ├── Choice Input
│       │   └── label
│       ├── Multichoice Input
│       │   └── label
│       ├── Object Input
│       │   └── label
│       └── Array Input
│           └── label
├── Boolean Input
│   └── label
├── URL Input
│   └── label
└── Select Input
    └── label
Type:
string
Examples:

In this example, we want to customize the label for our page_title Input to be more descriptive.

Copied to clipboard
_inputs:
  page_title:
    type: text
    label: Article Title
    comment: Enter the main title for this article
{
  "_inputs": {
    "page_title": {
      "type": "text",
      "label": "Article Title",
      "comment": "Enter the main title for this article"
    }
  }
}
Open in a new tab