Module: Natsuzora::Contract::AST::Scalar::Modifier

Defined in:
lib/natsuzora/contract/ast/scalar.rb

Overview

Modifier for null/empty handling on scalar values.

Constant Summary collapse

NONE =

Default: null not allowed, empty string allowed

:none
NULLABLE =

‘?` modifier: null allowed

:nullable
REQUIRED =

‘!` modifier: null not allowed, empty string not allowed

:required