validate

abstract suspend fun validate(schema: Schema, uiSchema: UiSchema): Boolean

Validate if requirements and patterns described in Schema are respected to submit your form.

coroutineScope.launch {
jsonFormsState.validate(schema, uiSchema)
}

Return

true if all requirements and patterns are respected.

Parameters

schema

Properties which can be shown on the screen.

uiSchema

Form UI description of fields declared in Schema.