# File lib/openid_connect/request_object/claimable.rb, line 30
      def as_json(options = {})
        keys = claims.try(:keys)
        hash = super
        Array(keys).each do |key|
          hash[:claims][key] ||= nil
        end
        hash
      end