A.3 XML schema for Notify Request
29.3353GPPRelease 17Stage 3TSUser Data Convergence (UDC)User data repository access protocol over the Ud interface
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns="http://www.3gpp.org/udc/notification"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.3gpp.org/udc/notification"
elementFormDefault="qualified">
<xs:element name="notification">
<xs:complexType>
<xs:sequence>
<xs:element ref="object" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="object">
<xs:complexType>
<xs:sequence>
<xs:element ref="attribute" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="objectClass" type="xs:string"/>
<xs:attribute name="DN" type="xs:string"/>
<xs:attribute name="operation" type="operationType" use="required"/>
</xs:complexType>
</xs:element>
<xs:simpleType name="operationType">
<xs:restriction base="xs:string">
<xs:enumeration value="add"/>
<xs:enumeration value="modify"/>
<xs:enumeration value="delete"/>
<xs:enumeration value="none"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="attribute">
<xs:complexType>
<xs:choice>
<xs:element name="currentValue" type="xs:string" minOccurs="0"
maxOccurs="unbounded"/>
<xs:sequence>
<xs:element name="beforeValue" type="xs:string" minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="afterValue" type="xs:string" minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:choice>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="modification" type="modificationType" use="required"/>
</xs:complexType>
</xs:element>
<xs:simpleType name="modificationType">
<xs:restriction base="xs:string">
<xs:enumeration value="add"/>
<xs:enumeration value="replace"/>
<xs:enumeration value="delete"/>
<xs:enumeration value="none"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>