Skip to main content

sdk.form.selectschema

Home > @matterway/sdk > Form > SelectSchema

Form.SelectSchema interface

Signature:

export interface SelectSchema extends BaseFieldSchema, Pick<SelectFieldProps, 'label' | 'placeholder' | 'items' | 'defaultValue'> 

Extends: BaseFieldSchema, Pick<SelectFieldProps, 'label' | 'placeholder' | 'items' | 'defaultValue'>

Properties

PropertyModifiersTypeDescription
namestringName of the property in the result data.
props?SelectFieldProps(Optional) Additional custom props for the field component like: label, required.
type'select'The type of form field used to edit this value.
validation?StringValidation(Optional) An optional string validation property for the select field: email, ensure, length ... etc.