new(Utils::Array::EMPTY)
9 10 11 12 13 14 15
# File 'lib/babl/schema/fixed_array.rb', line 9 def json if items.empty? { enum: [Utils::Array::EMPTY] } else { type: 'array', items: items.map(&:json), additionalItems: false } end end