Нотификация с информацией о конференции.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:include schemaLocation="monitor.xsd"/>
<xs:complexType name="ConferenceNew">
<xs:attribute name="id" type="xs:string"/>
<xs:attribute name="is_owner" type="xs:boolean"/>
<xs:attribute name="start_time" type="xs:string"/>
</xs:complexType>
<xs:complexType name="ConferenceInfo">
<xs:attribute name="id" type="xs:string"/>
<xs:anyAttribute/>
</xs:complexType>
<xs:complexType name="ConferenceRemoved">
<xs:attribute name="id" type="xs:string"/>
</xs:complexType>
<xs:element name="event">
<xs:complexType>
<xs:complexContent>
<xs:extension base="baseEventType">
<xs:choice>
<xs:element name="new" type="ConferenceNew"/>
<xs:element name="info" type="ConferenceInfo"/>
<xs:element name="removed" type="ConferenceRemoved"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:schema>
XML