module Fakeit module Openapi module Example def object_example(example_options) properties.each_with_object({}) { |(name, schema), obj| obj[name] = schema.to_example(example_options) } end end end end