Exop v0.1.1 Exop.Validation
Provides high-level functions for a contract validation. The main function is valid?/2 Mostly invokes Exop.ValidationChecks module functions.
Summary
Functions
Checks inner item of the contract param (which is a Map itself) with their own checks
Validate received params over a contract
Validate received params over a contract. Accumulate validation results into a list
Types
validation_error :: {:error, :validation_failed, list}
Functions
Checks inner item of the contract param (which is a Map itself) with their own checks.
Examples
iex> Exop.Validation.check_inner(%{param: 1}, :param, [type: :integer, required: true]) true
Specs
valid?([Map.t], Keyword.t | Map.t) ::
:ok |
validation_error
Validate received params over a contract.
Examples
iex> Exop.Validation.valid?([%{name: :param, opts: [required: true]}], [param: "hello"]) :ok
Validate received params over a contract. Accumulate validation results into a list.
Examples
iex> Exop.Validation.validate([%{name: :param, opts: [required: true, type: :string]}], [param: "hello"], []) [true, true]