class Dry::Schema::JSONSchema::SchemaCompiler

def fetch_filled_options(type, _target)

Other tags:
    Api: - private
def fetch_filled_options(type, _target)
  case type
  when "string"
    {minLength: 1}
  when "array"
    raise_unknown_conversion_error!(:type, :array) unless loose?
    {not: {type: "null"}}
  else
    {not: {type: "null"}}
  end
end