Module: Arafa::Schemas::Types

Defined in:
lib/arafa/schemas/airtime_request_schema.rb

Overview

Leaf types used only for structural coercion within Schemas::*.

Constant Summary collapse

PhoneNumberList =

Wasiliana's docs show phone_number array-wrapped but the field also appears sent as a bare string — accept either and normalize to an array.

(Types::Array.of(Types::String) |
  Types::String.constructor { |value| [value] })
.constrained(min_size: 1)