def get_mixin_type_identifier(type)
        return type if (type =~ URI::ABS_URI) || (type && type.start_with?('/'))

        mixins = @model.mixins.to_a.select { |m| m.term == type }
        tis = mixins.collect { |m| m.type_identifier }