# copy the file and add the .rb suffix
module Checks
  module Report
    class Template < ForemanMaintain::Report
      metadata do
        description 'One sentence description'
      end

      def run
        data_field('some_value') { 'hello' }
        merge_data('key_prefix') do
          {
            'key1': 'value1',
            'key2': 'value2',
            'nested': { 'another_key': 'another_value', 'more': 'more_value' }
          }
        end
      end
    end
  end
end
