type

On this page

Description:

This key defines the input type, which controls how this input appears and behaves.

Appears in:
└── Text Input
    └── type
Type:
string Required
Allowed values:
text
email
disabled
pinterest
facebook
twitter
github
instagram
Examples:

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

Copied to clipboard
_inputs:
  title:
    type: text
{
  "_inputs": {
    "title": {
      "type": "text"
    }
  }
}
Open in a new tab