什么是XMPP disco #info结果中的"type"属性

n00*_*dl3 4 xmpp service-discovery tigase

根据XEP-030:

每个<identity />元素必须拥有指定实体的类别和类型的"类别"和"类型"属性

我实际上并不了解该type属性代表什么.

例如,当我向我的MUC组件发送disco #info查询时,我得到以下答案:

<iq to='admin@localhost/986758107-tigase-8' from='muc.localhost' type='result'>
    <query xmlns='http://jabber.org/protocol/disco#info'>
        <identity category='conference' name='Multi User Chat' type='text'/>
        <feature var='jabber:iq:version'/>
        <feature var='urn:xmpp:ping'/>
        <feature var='http://jabber.org/protocol/commands'/>
        <feature var='http://jabber.org/protocol/muc'/>
    </query>
</iq>
Run Code Online (Sandbox Code Playgroud)

type被设置为"text",但它是什么意思?还有没有其他的目的不仅仅是创造了一个独特的组合namecategory?或者别的什么?

xny*_*hps 5

现有(类别,类型)元组记录在这里:https://xmpp.org/registrar/disco-categories.html.会议+文本是"文本会议服务",换句话说是群聊服务器.