# File lib/grape_entity/entity.rb, line 238
    def self.documentation
      @documentation ||= root_exposures.each_with_object({}) do |exposure, memo|
        if exposure.documentation && !exposure.documentation.empty?
          memo[exposure.key] = exposure.documentation
        end
      end
    end