# File lib/chef_zero/chef_data/acl_path.rb, line 43
      def self.get_acl_data_path(path)
        # Things under organizations have their own acls hierarchy
        if path[0] == 'organizations' && path.size >= 2
          under_org = partition_acl_data_path(path[2..-1], ORG_DATA_TYPES)
          if under_org
            path[0..1] + under_org
          end
        else
          partition_acl_data_path(path, TOP_DATA_TYPES)
        end
      end