ValueInfo

data class ValueInfo<T>(val value: T, val schema: Schema<T>, val path: AbsolutePath, val schemaPath: AbsolutePath)(source)

Information about a value of type T: the value itself, its absolute path, and its schema.

Constructors

Link copied to clipboard
constructor(value: T, schema: Schema<T>, path: AbsolutePath, schemaPath: AbsolutePath)

Properties

Link copied to clipboard

Absolute path of the value within a form manager or within the value passed to a form validator.

Link copied to clipboard

Schema of the value.

Link copied to clipboard

Absolute path of the schema within a form validator or manager.

Link copied to clipboard
val value: T

Value itself.