Tech-invite3GPPspaceIETFspace
21222324252627282931323334353637384‑5x

Content for  TS 26.346  Word version:  19.1.0

Top   Top   Up   Prev   Next
0…   4…   5…   5.3…   6   7…   7.3…   8…   8A…   8B…   9…   9.4…   10…   11…   12…   A   B…   C…   D…   G…   H…   J…   K…   L…   M…

 

11  MBMS metadatap. 150

11.1  MBMS Metadata Envelopep. 150

11.1.1  Supported metadata syntaxesp. 150

The MBMS metadata syntax supports the following set of features:
  • Support of carriage of SDP descriptions, and SDP is expected to sufficiently describe at least: MBMS Streaming sessions and, MBMS download sessions.
  • Support for multiple metadata syntaxes, such that the delivery and use of more than one metadata syntax is possible.
  • Consistency control of metadata versions, between senders and receivers, independent of the transport and bearer use for delivery.
  • Metadata fragments are identified, versioned and time-limited (expiry described) in a metadata fragment syntax-independent manner (which is a consequence of the previous two features).
Up

11.1.2  Consistency control and syntax-independencep. 150

The Metadata Envelope provides information to identify, version and expire each of its metadata fragments. This is specified to be independent of metadata fragments syntax and of transport method (thus enabling the use of more than one syntax and enabling delivery over more than a single transport and bearer).
A Metadata Envelope (as identified by the metadataEnvelope element in the schema in clause 11.1.3) consists of one or more Metadata Envelope items (as identified by the item element in the schema in clause 11.1.3). A Metadata Envelope item is associated to exactly one metadata fragment. A Metadata Envelope item may update the time validity of its metadata fragment without changing version of that metadata fragment if the metadata fragment has not changed. A newer version (higher version number) of a Metadata Envelope item shall automatically expire the earlier version. If the content type (metadata fragment syntax) is recognized and valid, the UE shall use the new metadata fragment description. However, if the content type is not recognized or valid, the UE may maintain the expired version data until the newer version is correctly received.
Service announcement senders shall increment the version by one for each subsequent transported version of a metadata fragment. However, a UE shall also accept versions with an increment greater than one (so that they do not fail in the case that an intermediate version was not successfully transported).
Up

11.1.3  Metadata Envelope syntaxp. 151

The attributes for a Metadata Envelope item and their description are as follows. These attributes shall be supported:
  • metadataURI: A URI providing a unique identifier for the metadata fragment. The metadataURI attribute shall be present.
  • version: The version number of the associated instance of the metadata fragment. The version number should be initialized to one. The version number shall be increased by one whenever the metadata fragment is updated. The version attribute shall be present.
  • validFrom: The date and time from which the metadata fragment file is valid. The validFrom attribute may or not be present. If not present, the UE should assume the metadata fragment version is valid immediately.
  • validUntil: The date and time when the metadata fragment file expires. The validUntil attribute may or not be present. If not present the UE should assume the associated metadata fragment is valid for all time, or until it receives a newer metadata envelope for the same metadata fragment describing a validUntil value.
  • contentType: The MIME media type of the metadata fragment which shall be used as defined for the "Content-Type" header field in RFC 9110. The contentType attribute shall be present for embedding metadata envelopes. The contentType attribute may be present for referencing metadata envelopes.
The metadata envelope is instantiated using an XML structure. This XML contains a URI referencing the associated metadata fragment. The formal XML schema for the metadata envelope is specified in Listing 11.1.3-1 below.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3gpp:metadata:2005:MBMS:envelope"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 xmlns="urn:3gpp:metadata:2005:MBMS:envelope"
 elementFormDefault="qualified" attributeFormDefault="unqualified">
 <xs:annotation>
  <xs:documentation>MBMS Metadata Envelope schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.1.3</xs:documentation>
  <xs:documentation>Copyright © 2005, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="metadataEnvelope" type="metadataEnvelopeType"/>
 <xs:complexType name="metadataEnvelopeType">
  <xs:sequence>
   <xs:element name="item" type="metadataEnvelopeItemType" maxOccurs="unbounded" minOccurs="1"/>
  </xs:sequence>
 </xs:complexType>
 <xs:complexType name="metadataEnvelopeItemType">
  <xs:sequence>
   <xs:element name="metadataFragment" type="xs:string" minOccurs="0" maxOccurs="1"/>
   <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
  </xs:sequence>
  <xs:attribute name="metadataURI" type="xs:anyURI" use="required"/>
  <xs:attribute name="version" type="xs:positiveInteger" use="required"/>
  <xs:attribute name="validFrom" type="xs:dateTime" use="optional"/>
  <xs:attribute name="validUntil" type="xs:dateTime" use="optional"/>
  <xs:attribute name="contentType" type="xs:string" use="optional"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
</xs:schema>
The metadataFragment element shall be encapsulated in the Metadata Envelope for embedded metadata fragments, and shall not be encapsulated where the metadata fragment is not embedded. In the embedded case, the metadataFragment element shall contain exactly one embedded metadata fragment as specified by the Metadata Envelope syntax and only one instance of the envelope element shall be used for encapsulating envelopes.
An embedded metadata fragment (in the metadataFragment element) shall be escaped. Generally, an embedded metadata fragment should be escaped by placing inside a CDATA section [31]. Everything starting after "<![CDATA[" string and ending at the "]]>" string would be ignored by the XML envelope parser (quotes not included). Thus, the embedded parts would appear as "<![CDATA[" + metadata_fragment + "]]>". In this case, the complete Metadata Envelope with embedded metadata fragment shall not violate the rules of CDATA section usage [31].
In case the embedded metadata fragment is an XML document and include a CDATA section, the embedded metadata fragment may be escaped by replacing illegal characters with their ampersand-escaped equivalents [31] (instead of encapsulating the whole fragment in a CDATA section). For instance, "<" is an illegal character that would be replaced by "<". This method is useful to avoid nesting CDATA sections (which is not allowed).
A metadata fragment which does not adhere to either of these two methods shall not be embedded in a Metadata Envelope. Thus, it may only be referenced from a referencing metadata envelope.
Embedded fragments are not expected to be parsed by the Metadata Envelope XML parser, but decapsulated and passed to the relevant metadata management operation that is implementation-specific (e.g. for immediate parsing, storage, etc.).
Up

11.1.4  Delivery of Metadata Envelopep. 152

An item of Metadata Envelope shall be associated with an instance of a metadata fragment by one of two methods:
  • Embedded: The metadata fragment is embedded within the Metadata Envelope.
  • Referenced: The metadata fragment is referenced from the Metadata Envelope.
The MBMS UE must know the MIME media type of each metadata fragment.
In the embedded case, the envelope and fragment are, by definition, transported together and in-band of one another. In the referenced case, the envelope and fragment shall be transported together in-band of the same transport session.
MBMS Service Announcement transports shall support delivery of the Metadata Envelope as a discrete object (XML document) for the referenced case. In the referenced case, the MIME media type of the metadata fragment should be provided by the transport protocol (e.g. as a Content-Type text string). In both cases, the MIME media type of the Metadata Envelope should be provided by the transport protocol.
The Metadata Envelope item includes a reference (metadataURI) to the associated metadata fragment using the same URI as the fragment file is identified by in the Service Announcement. Thus, the Metadata Envelope can be mapped to its associated metadata fragment.
Up

11.2  User Service Bundle Description metadata fragmentp. 152

11.2.1  User Service Bundle Description syntaxp. 152

11.2.1.1  Baseline syntax |R7|p. 152

This clause specifies the syntax of the User Service Bundle Description in Release 6. Extensions to the baseline User Service Bundle Description schema are specified in clause 11.2.1.1.
The root element of the User Service Bundle Description is the bundleDescription element. The element is of the bundleDescriptionType. The bundleDescription contains one or several userServiceDescription elements and optionally a reference to the FEC repair stream description.
Each userServiceDescription element shall have a unique identifier. The unique identifier shall be offered as serviceId attribute within the userServiceDescription element and shall be of URI format.
The userServiceDescription element may contain one or more name elements. The intention of a name element is to offer a title of the user service. For each name elements, the language shall be specified according to XML datatypes (XML Schema Part 2 [22]).
The userServiceDescription element may contain one or more serviceLanguage elements. Each serviceLanguage element represents the available languages of the user services. The language shall be specified according to XML datatypes (XML Schema Part 2 [22]).
The deliveryMethod element may contain an accessPointName attribute. The accessPointName attribute is optional and gives an Access Point Name (APN) as defined in TS 23.003. When this attribute is present, the MBMS UE shall use the given APN for MBMS UE to network interactions like File Repair and/or security registration. If this attribute is not present, the MBMS UE shall use a default PDP context/default EPS bearer for network interactions.
Each userServiceDescription element shall contain at least one deliveryMethod element. The deliveryMethod element contains the description of one delivery method. The element shall contain one reference to a Session Description and may contain references to one Associated Delivery Procedure Description and/or one Security Description. The Session Description is further specified in clause 5.2.2.2.
A requiredCapabilities element gives a list of features, which are required for the consumption of the related MBMS user service. The list of features that are currently defined is included in clause 11.9. The value of the feature element indicates the required feature.
The deliveryMethod element may contain a reference to an Associated Delivery Procedures Description via the attribute associatedProcedureDescriptionURI. The description and configuration of associated delivery procedures is specified in clause 5.2.2.3.
The deliveryMethod element may contain a reference to a Security Description via the attribute protectionDescriptionURI. The Security Description is specified in clause 5.2.2.4.
A userServiceDescription element contains zero or more accessGroup elements. An accessGroup element defines a list of access networks and is uniquely identified by its id attribute. An accessGroup element describes whether separate access systems for the same MBMS user service are used (see clause 5.1.5.2 of TS 23.246) by including one or more accessBearer elements, each describing one of those access systems and no two describing the same. Possible accessBearer values are "3GPP.R6.UTRAN", "3GPP.R6.GERAN" , "3GPP.R7.MBSFN-FDD", "3GPP.R7.MBSFN-TDD" and "3GPP.R8.MBSFN-IMB" which indicate transport by 3GPP MBMS bearers according to the specification in TS 23.246 and TS 25.346. The accessBearer value for evolved UTRAN is "3GPP.R9.E-UTRAN".
For forward compatibility, other accessBearer values are allowed but their definition and use are out of scope of this specification and an MBMS UE may silently ignore other values.
Each deliveryMethod element contains at most one accessGroupId attribute. One specific accessGroupId value maps to one specific accessGroup element id value. For each unique accessGroupId attribute value presented in a deliveryMethod element of a userServiceDescription instance, exactly one associated accessGroup element shall be present and the id attribute of the accessGroup element and the accessGroupId attribute shall have the same value. For each deliveryMethod element without an accessGroupId attribute, the UE should assume that the delivery method is offered through all available MBMS access systems.
The XML schema for the baseline Release 6 User Service Bundle Description is specified in Listing 11.2.1.1-1 below. This schema is not distributed as an attachment to the present document; clause J.1 contains the normative User Service Bundle Description schema, including all extensions specified in clause 11.2.1.2.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS User Service Bundle Description schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2.1.1</xs:documentation>
  <xs:documentation>Copyright © 2005, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="bundleDescription" type="bundleDescriptionType"/>
 <xs:complexType name="bundleDescriptionType">
  <xs:sequence>
   <xs:element name="userServiceDescription" type="userServiceDescriptionType" maxOccurs="unbounded"/>
   <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
  </xs:sequence>
  <xs:attribute name="fecDescriptionURI" type="xs:anyURI" use="optional"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:complexType name="userServiceDescriptionType">
  <xs:sequence>
   <xs:element name="name" type="nameType" minOccurs="0" maxOccurs="unbounded"/>
   <xs:element name="serviceLanguage" type="xs:language" minOccurs="0" maxOccurs="unbounded"/>
   <xs:element name="requiredCapabilities" type="requirementsType" minOccurs="0" maxOccurs="1"/>
   <xs:element name="deliveryMethod" type="deliveryMethodType" maxOccurs="unbounded"/>
   <xs:element name="accessGroup" type="accessGroupType" minOccurs="0" maxOccurs="unbounded"/>
   <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
  </xs:sequence>
  <xs:attribute name="serviceId" type="xs:anyURI" use="required"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:complexType name="accessGroupType">
  <xs:sequence>
   <xs:element name="accessBearer" type="xs:string" maxOccurs="unbounded"/>
  </xs:sequence>
  <xs:attribute name="id" type="accessGroupIdType" use="required"/>
 </xs:complexType>
 <xs:complexType name="deliveryMethodType">
  <xs:sequence>
   <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
  </xs:sequence>
  <xs:attribute name="accessGroupId" type="accessGroupIdType" use="optional"/>
  <xs:attribute name="associatedProcedureDescriptionURI" type="xs:anyURI" use="optional"/>
  <xs:attribute name="protectionDescriptionURI" type="xs:anyURI" use="optional"/>
  <xs:attribute name="sessionDescriptionURI" type="xs:anyURI" use="required"/>
  <xs:attribute name="accessPointName" type="xs:anyURI" use="optional"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:complexType name="nameType">
  <xs:simpleContent>
   <xs:extension base="xs:string">
    <xs:attribute name="lang" type="xs:language" use="optional"/>
   </xs:extension>
  </xs:simpleContent>
 </xs:complexType>
 <xs:simpleType name="accessGroupIdType">
  <xs:restriction base="xs:nonNegativeInteger"/>
 </xs:simpleType>
 <xs:complexType name="requirementsType">
  <xs:sequence>
   <xs:element name="feature" type="xs:unsignedInt" minOccurs="1" maxOccurs="unbounded"/>
  </xs:sequence>
 </xs:complexType>
</xs:schema>
Up

11.2.1.2  Extensions to the User Service Bundle Description syntax |R7|p. 154

The schemas specified in this clause extend the Release 6 User Service Bundle Description schema specified in clause 11.2.1.1. An MBMS User Service Bundle Description schema of the current release shall comply with the User Service Bundle Description schema specified in Listing 11.2.1.1-1 and the extension schemas specified in all subsequent releases up to and including the current release.
Clause J.1 specifies the normative Extended User Service Bundle Description schema referencing all of the extension schemas.
An initiationRandomization element and terminationRandomization element carries the parameters to be used by the MBMS UE to randomize their initiation and/or termination operations over time. If the initiationRandomization element is present, all MBMS UEs shall randomize the initiation time as defined by the attributes of the elements. If the terminationRandomization element is present, all MBMS UEs shall randomize the termination time as defined by the attributes of the elements.
The initiationRandomization and/or terminationRandomization element may be part of:
  • a bundleDescription, where it applies to all services in the service bundle.
  • a userServiceDescription, where it applies to all MBMS bearer services of a single service. If present, this overrides the element in bundleDescription.
If the initiationRandomization element is not present, the MBMS UE does not randomize the User Service Initiation procedure over time. The MBMS UE should then perform the operation immediately when it is triggered.
If the terminationRandomization element is not present, the MBMS UE does not randomize the User Service Termination procedure over time. The MBMS UE should then perform the operation immediately when it is triggered.
An initiationRandomization element may contain the initiationStartTime attribute, which defines the start time for the initiation procedure randomization period. The value of the data field conveys the 32-bit Era Offset value from the 128-bit NTP Date Format data type specified in Section 6 of RFC 5905. These 32 bits provide an unsigned integer representing the Network Time Protocol (NTP) time in seconds relative to the current NTP era signalled in the Era Number field of the NTP Date Format data type. For era 0, the base date is midnight UTC (0 hours) on 1 January 1900. If the initiationStartTime attribute is not present, the MBMS UE shall use the reception time of the User Service Discovery/Announcement information as initiationStartTime.
The initiationRandomization element shall contain the protectionPeriod attribute. The protectionPeriod attribute expresses the length of the protection period in seconds. The initiation procedure shall be randomly deferred during protection period.
The initiationRandomization element shall contain the randomTimePeriod attribute. The randomTimePeriod attribute expresses the length of a time interval (in seconds) over which requests are deferred. The MBMS UE shall calculate a random time for the execution of the initiation procedure. The method provides for statistically uniform distribution over a relevant period of time.
The terminationRandomization element shall contain the protectionPeriod attribute. The protectionPeriod attribute expresses the length of the protection period in seconds. The termination procedure execution shall be randomly deferred during protection period.
The terminationRandomization element shall contain the randomTimePeriod attribute. The randomTimePeriod attribute expresses the length of a time interval (in seconds) over which the operations are deferred. The MBMS UE shall calculate a random time for the execution of the termination procedure. The method provides for statistically uniform distribution over a relevant period of time.
If the MBMS UE is switched off during the termination randomization, the MBMS UE shall cancel the termination randomization.
The r8:alternativeAccessDelivery element shall extend the list of elements of the MBMS deliveryMethod element. Whenever present, it shall contain at least one unicastAccessURI element. The unicastAccessURI element provides unicast server information for OMA push for MBMS download service when the UE is outside of home network and file download delivery method is used. The unicastAccessURI element refers to a URI to be used for unicast access to the streaming service. If the r8:alternativeAccessDelivery element is available then the UE shall select one of the unicastAccessURI elements included. The timeShiftingBuffer attribute of r8:alternativeAccessDelivery may be used to indicate the minimal size of the time shifting buffer that will be provided for the current service by the PSS servers that are referenced in the list. The actual size of the timeshifting buffer of the selected server is returned in the SETUP response from the PSS Server.
The r12:inbandMetadata attribute of the deliveryMethod element, if present and set to "true" or "1", indicates that the MBMS download session associated with this deliveryMethod instance shall be the one exclusively used to carry all USD metadata fragments eligible for in-band delivery (namely, the Associated Delivery Procedure Description, Schedule Description, Filter Description and Media Presentation Description metadata fragments) along with MBMS User Service content(s).
The r12:appComponent child element of the deliveryMethod element, if present, identifies the application content component(s) carried on the MBMS delivery session associated with that deliveryMethod instance. One or more instances of r12:appComponent may be present under a given deliveryMethod instance, to indicate the same number and types of application content component(s) carried on the corresponding delivery session. The collection of r12:appComponent attribute names across all deliveryMethod instances of an MBMS User Service represents the complete set of application content components available to the MBMS application affiliated with that MBMS User Service.
The r12:serviceArea child element of the deliveryMethod element, if present, specifies the service area(s) for which non-DASH streaming content carried on the MBMS delivery session associated with that instance of deliveryMethod, are available for UE reception. The semantics of r12:serviceArea shall comply to the MBMS Service Area Identity as defined in TS 23.003 and TS 36.443.
If the mimeType attribute within the r12:appService element , itself a child of the userServiceDescription element, indicates a UE supported value, then
  • The presence of one or more r12:broadcastAppService element(s) under a given instance of the deliveryMethod element shall declare the one or more application service content items delivered over the FLUTE session associated with that deliveryMethod instance.
  • The presence of the r12:unicastAppService element under a given instance of the deliveryMethod element declares the one or more application service content items delivered over unicast bearer(s) in support of unicast fallback delivery.
  • Each instance of r12:broadcastAppService.basePattern or r12:unicastAppService.basePattern denotes a content item of a single application service delivered over broadcast or unicast, respectively. Each broadcast content item may be designated as being available in specific MBMS service area(s) as given by the corresponding r12:broadcastAppService.serviceArea element(s). If present, the serviceArea elements shall be a subset of the MBMS service area(s) present for the current serviceId under userServiceDescription.availabilityInfo.infoBinding.serviceArea elements. When one or more serviceArea element(s) are included under one or more r12:broadcastAppService, the union of all the MBMS Service Area Identities identified by the serviceArea elements under all the r12:broadcastAppService shall match the list of MBMS Service Area Identities included in the userServiceDescription.availabilityInfo.infoBinding.serviceArea elements for the same serviceId. Each broadcast content item under its containing Period is identified by its basePattern value whose format and usage are described in clauses 7.6.2.1 and 7.6.2.3. Each unicast content item under its containing Period is identified by its basePattern value whose format and usage are described in clauses 7.6.2.2 and 7.6.2.3.
If the mimeType attribute of the r12:appService element, itself a child of the userServiceDescription element, indicates a value not supported by the UE, then a UE compliant with the present document shall ignore r12:broadcastAppService and the r12:unicastAppService elements in the deliveryMethod element.
A USD may include a r7:unicastAccessURI element for support of Release 7 UEs. UEs of release 8 onwards shall use alternativeAccessDelivery element for both OMA Push file download and unicast streaming.
The serviceClass attribute, if present, shall extend the list of attributes of the MBMS Release 6 userServiceDescription element. The serviceClass attribute is optional and contains the service class identifier for the delivered service according to the syntax defined in clause E.1.2 of [90].
A User Service Description may belong to a group of User Service Descriptions, which represent alternative configurations of the same User Service. An example is an MBMS User Service that is delivered over a non-MBSFN bearer with a low bit rate and over MBSFN bearer with a high bit rate. In such a case, the UE is only expected to consume one variant of the service. The UE recognizes that a set of User Service Descriptions applies to one User Service based on the serviceGroup element.
The userServiceDescription element may include a Registration element. If present, then the UE shall send the registration and deregistration to the given URI. In such a case, the User Service Bundle Description fragment may not be complete in the service announcement. Instead, it may contain references to metadata fragments (e.g. the session description) that are not embedded in the service announcement. When registration is requested, the userServiceDescription element shall contain a Registration element that describes the requested registration procedure. The registrationURI indicates the URI element to the server with whom the registration procedure shall be performed. In case more than one registrationURI is indicated, the UE shall select one randomly. The registrationThreshold is a number that indicates the percentage of UEs that are requested to register. The UE shall randomly select a number between 0 and 100 and compare it against the threshold. In case the selected number is lower than the indicated threshold, the UE should perform registration. The threshold value "100" indicates that the UE shall perform registration, which is e.g. necessary when the User Service Description is not complete.
The userServiceDescription element may include an r9:mediaPresentationDescription element when the associated MBMS User Service carries 3GP-DASH-formatted content using the download delivery method. The userServiceDescription element may also, or instead, include an r12:appService element containing a reference to an Application Service Description fragment which in turn contains descriptions for contents of an application service delivered over either unicast, or broadcast, or both unicast and broadcast modes. If r12:appService element is present, and its mimeType attribute indicates a UE supported value, then it shall be used by MBMS UEs complying with the present document. If r12:appService is absent or its mimeType attribute indicates a value not supported by the UE, and if r9:mediaPresentationDescription is present, then the r9:mediaPresentationDescription shall be used by MBMS UEs complying with this release of the present document. The UE should expect that the received files correspond to a DASH Media Presentation as described by the MPD in TS 26.247. The referenced MPD provides a reference to a corresponding Media Presentation Description metadata fragment whose contents are identical to the MPD as defined in TS 26.247.The Media Presentation Description fragment may refer, via the InitializationSegmentURL, to one or more Initialization Segment Description (ISD) metadata fragments, whose contents are identical to the Initialization Segment as defined in TS 26.247. If the r12:appService element is present, the associated application service shall be a DASH Media Presentation delivered as an MBMS User Service.
The r12:appService element may contain the child elements identicalContent and/or alternativeContent which designate the sets of identical and/or alternative versions, respectively, of content items that may be substituted for one another. Additional description of the contents and semantics of the r12:appService element are specified in clause 7.6.3. If the r12:appService element is included, and its mimeType attribute indicates a value not supported by the UE, then a UE compliant with the present document shall ignore all of the r12:appService child elements, and all of its child attributes.
A User Service Description may include a schedule element. If present, the schedule element includes a URI reference to the MBMS User Service schedule information, the latter corresponding to a Schedule Description metadata fragment as defined in clause 11.2A.
The Schedule Description fragment may include a URI reference to the Filter Description metadata fragment to signify the intended use of content filtering. Each filter data instance contains associated criteria or rules for use by UEs to selectively receive contents at the session level or the file level.
  • At the session level, the filter rules enable a UE to decide whether it should receive the entire contents of the associated delivery session(s) of the User Service.
  • At the file level, the filter rules enable a UE to decide whether it should receive individual files of the User Service, during the corresponding file delivery schedule(s).
Additional description of the association between Schedule Description and Filter Description fragments and intended usage are given in clauses 11.2A and 11.2B.
A User Service Description may include an availabilityInfo element. If present, it shall extend the list of child elements of the MBMS userServiceDescription element by indicating the presence of additional data pertaining to the availability of the service.
The availabilityInfo element shall include one or more infoBinding elements. The infoBinding element shall contain the child elements serviceArea and radiofrequency. A UE shall be capable of processing an infoBinding element that does not contain the child element serviceArea.
  • The serviceArea element declares the one or more service areas over which this MBMS User Service is provided. This element is designated by the MBMS Service Area Identity (SAI) as defined in TS 36.443 and TS 23.003. According to TS 36.443, MBMS Service Area Identity is frequency agnostic and can be mapped onto one or more cells. The specific usage of the MBMS Service Area Identity, or its correlation to other network identification information, is not defined in the present document.
  • The radioFrequency element indicates the one or more RF frequencies in the E-UTRAN downlink which transmit this MBMS User Service over the service area(s) identified by the serviceArea element. The frequency parameter is coded as EARFCN in TS 36.101.
The MBMS Client shall forward the service area and radio frequency information received in the USD to the lower layers, and the UE is expected to make use of such information in accordance with clause 15.4 of TS 36.300 as well as TS 36.304 and TS 36.331.
PLMN, p-serviceArea, and group may be present as attributes of the deliveryMethod element. The attribute PLMN or p-serviceArea identifies the area(s) by PLMN-ID or one or more MBMS SAI's in which this instance of deliveryMethod is applicable. The UE is expected to use the Session Description fragment referenced by the deliveryMethod whose PLMN or p-serviceArea matches the UE's location by the corresponding area type. Presence of either PLMN or p-serviceArea under deliveryMethod, but not both, is permitted. Multiple deliveryMethod elements sharing the same group attribute shall be considered as alternatives by the UE. For each group that the deliveryMethod's affiliated PLMN or p-serviceArea matches the UE's location, the UE shall acquire the content delivered on the corresponding FLUTE session. In the event of deliveryMethod instances associated with multiple groups, the UE shall acquire the content delivered on the FLUTE sessions from each of the group with matching PLMN or p-serviceArea to the UE's location. The PLMN attribute, when present, indicates the PLMN-ID in which the contents carried by the current deliveryMethod is accessible, and is defined as a concatenation of MCC and MNC, each represented as a 3-digit hexadecimal number. The p-serviceArea attribute, when present, indicates the one or more MBMS SAIs, each represented by a decimal number between 0 and 65,535 (inclusive), in which the contents carried by the current deliveryMethod is accessible.
The r12:KeepUpdatedService element indicates if the referenced userServiceDescription describes a keep-updated service. The URL to one or more registration servers is provided in the registrationServer element. If more than one registrationServer URL element is present, the MBMS UE shall choose one randomly.
The presence of the r12:consumptionReporting element indicates whether the UE shall perform consumption reporting as defined in clause 9.4A.2. The consumptionReportingURI attribute references an Associated Delivery Procedure Description including only the r12:consumptionReport element as defined in clause 9.4A.
The presence of the r12:mooDConfiguration element indicates whether the UE shall include the MooD Header (as defined in clause 12) in its request for the service consumed over unicast and disable unicast Consumption Reporting.
The r12:mooDConfiguration element should be used to specify the MooD configuration information and shall take precedence over the OMA DM MO as defined in clause 12.2.2, if such a DM configuration object exists on the UE. The r12:mooDConfiguration element is used to configure offloading for any type of eligible content accessed over the unicast network via HTTP or RTP. If present, this element contains the rules to which the UE shall comply for attaching the MooD Header (as defined in clause 12) in its requests for the service consumed over unicast and disable unicast Consumption Reporting. If the r12:mooDConfiguration element is present, then:
  • The UE shall include the MooD Header in its request for the service delivery over unicast, in accordance to the criteria expressed in the mooDHeaderAttachment element;
    • In the case of DASH-formatted content, the dASHContent@rule attribute under mooDHeaderAttachment specifies the rule on how the MooD header should be included in unicast requests sent to the proxy server: with every Media Segment request, or with every MPD request. Specifically:
      • rule = "1" means that the MooD header shall be attached to each Media Segment request by the DASH client;
      • rule = "2" means that the MooD header shall be attached to each MPD request by the DASH client;
      • rule = "0" shall not be used;
      • rule values in the range from 3 to 255 are reserved for future use.
    • If the element dASHContent is not present, the default is rule = "1" (i.e. the MooD header shall be attached to each Media Segment request by the DASH client).
  • The UE shall include the serviceId in the MooD Header from the userServiceDescription@serviceId attribute;
  • If at least one proxyServer child element is present, then the UE shall select one proxy server address from the list of proxy servers, which is provided by the proxyServer child elements. The UE shall keep that proxy server URI for its subsequent requests for the same service delivery over unicast. If the proxyServer element is not present, and the MooD MO does not exist in the UE, then the MooD header shall be attached in the unicast content request to the HTTP server whose location is given by the URL of the associated content request.
  • The UE shall include its location in the MooD Header as CGI, ECGI or MBMS SAI, according to the locationType attribute. Possible values of the locationType attribute are "CGI", "ECGI" or "MBMS SAI".
Otherwise, if r12:mooDConfiguration element is absent, the UE shall report unicast and broadcast consumption reporting as specified in clause 9.4A.2.
The userServiceDescription element may include the r14:romService attribute which when set to "true" is an indication that the corresponding MBMS User Service is a Receive-Only-Mode (ROM) service. This attribute enables both "regular" MBMS UEs, and UEs configured in Receive Only Mode, to determine the availability of ROM service offering(s) from a Service Announcement service that describes both ROM and non-ROM services (MBMS User Services whose TMGIs are outside the standardized range of values as defined in TS 24.116). If the r14:romService attribute is not present, its default value shall be "false". As indicated in TS 23.246, UEs configured in Receive Only Mode shall not attempt to acquire non-ROM services.
The userServiceDescription.deliveryMethod element may include the r15:supplementaryUnicastAppService child element to indicate the presence of one or more supplementary application service content items delivered over unicast and providing an additional user experience. Each such content item is indicated by an instance of the basePattern child element of r15:supplementaryUnicastAppService.
The userServiceDescription element may include the r15:ROMSvcRfParams child element to indicate RF information associated with the delivery of a Receive Only Mode (ROM) service. If this element is present, it shall contain a child element Frequency, coded as EARFCN as defined in TS 36.101, which in turn shall contain the attributes subcarrierSpacing and bandwidth. The value of subcarrierSpacing shall be restricted to be one of the following numbers in units of kHz: 1.25, 7.5 or 15. The value of bandwidth shall be restricted to be one of the following numbers in units of MHz: 1.4, 3, 5, 10, 15 and 20.
The userServiceDescription element may include the r16:ROMSvcRfParams child element to indicate RF information associated with the delivery of a Receive-Only Mode (ROM) service. If this element is present, it shall contain a child element Frequency, coded as EARFCN as defined in TS 36.101, which in turn shall contain the attributes subcarrierSpacing and bandwidth. The value of subcarrierSpacing shall be restricted to be one of the specified subcarrier spacing (∆f) values in TS 36.211. The value of bandwidth shall be restricted to be one of the specified channel bandwidth values in TS 36.104. Similar to r15:ROMSvcRfParams, presence of the r16:ROMSvcRfParams element in the USD does not imply that the RF channel as denoted by the Frequency child element of r16:ROMSvcRfParams has to correspond to a carrier frequency operated by the serving eNodeB of the UE, nor that the serving eNodeB is transmitting any MBMS services.
A User Service Bundle Description fragment complying with this version of the present document, and delivered on the ROM Service Announcement Channel (SACH), shall include the r16:ROMSvcRfParams element but not the r15:ROMSvcRfParams element.
It should be noted that if r16:ROMSvcRfParams is present in the User Service Bundle Description, the RF channel denoted by its Frequency child element does not necessarily correspond to a carrier frequency operated by the serving eNodeB of the UE, nor does it imply that the serving eNodeB is transmitting any MBMS services.
The Release 7 extensions to the User Service Bundle Description schema are specified in Listing 11.2.1.2-1 below. The filename of this schema is "TS26346_UserServiceBundleDescription_Extensions_Rel-7.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2007:MBMS:userServiceDescription"
 xmlns="urn:3GPP:metadata:2007:MBMS:userServiceDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS User Service Bundle Description schema extensions (Release 7)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2.1.2</xs:documentation>
  <xs:documentation>Copyright © 2007, 3GPP Organizational Partners
   (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="initiationRandomization">
  <xs:complexType>
   <xs:attribute name="initiationStartTime" type="xs:unsignedInt" use="optional"/>
   <xs:attribute name="protectionPeriod" type="xs:unsignedInt" use="required"/>
   <xs:attribute name="randomTimePeriod" type="xs:unsignedInt" use="required"/>
  </xs:complexType>
 </xs:element>
 <xs:element name="terminationRandomization">
  <xs:complexType>
   <xs:attribute name="protectionPeriod" type="xs:unsignedInt" use="required"/>
   <xs:attribute name="randomTimePeriod" type="xs:unsignedInt" use="required"/>
  </xs:complexType>
  </xs:element>
 <xs:element name="serviceGroup" type="serviceGroupType"/>
 <xs:complexType name="serviceGroupType">
  <xs:attribute name="groupID" type="xs:anyURI" use="required"/>
 </xs:complexType>
 <xs:element name="unicastAccessURI" type="xs:anyURI"/>
 <xs:attribute name="serviceClass" type="xs:string"/>
</xs:schema>
The Release 8 extensions to the User Service Bundle Description schema are specified in Listing 11.2.1.2-2 below. The filename of this schema is "TS26346_UserServiceBundleDescription_Extensions_Rel-8.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2008:MBMS:userServiceDescription"
 xmlns="urn:3GPP:metadata:2008:MBMS:userServiceDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS User Service Bundle Description schema extensions (Release 8)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2.1.2</xs:documentation>
  <xs:documentation>Copyright © 2008, 3GPP Organizational Partners
   (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="alternativeAccessDelivery">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="unicastAccessURI" type="xs:anyURI" minOccurs="0" maxOccurs="unbounded"/>
   </xs:sequence>
   <xs:attribute name="timeShiftingBuffer" type="xs:unsignedInt" use="optional" default="0"/>
  </xs:complexType>
 </xs:element>
 <xs:element name="Registration">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="registrationURI" type="xs:anyURI" minOccurs="1" maxOccurs="unbounded"/>
   </xs:sequence>
   <xs:attribute name="registrationThreshold" type="xs:unsignedInt" use="optional" default="100"/>
  </xs:complexType>
 </xs:element>
</xs:schema>
The Release 9 extensions to the User Service Bundle Description schema are specified in Listing 11.2.1.2-3 below. The filename of this schema is "TS26346_UserServiceBundleDescription_Extensions_Rel-9.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2009:MBMS:userServiceDescription"
 xmlns="urn:3GPP:metadata:2009:MBMS:userServiceDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema" 
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS User Service Bundle Description schema extensions (Release 9)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2.1.2</xs:documentation>
  <xs:documentation>Copyright © 2009, 3GPP Organizational Partners
   (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="mediaPresentationDescription">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="mpdURI" type="xs:anyURI"/>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
 <xs:element name="schedule">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="scheduleDescriptionURI" type="xs:anyURI"/>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
 <xs:element name="availabilityInfo">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="infoBinding" maxOccurs="unbounded">
     <xs:complexType>
      <xs:sequence>
       <xs:element name="serviceArea" type="xs:unsignedShort" minOccurs="0" maxOccurs="unbounded"/>
       <xs:element name="radioFrequency" type="xs:unsignedInt" maxOccurs="unbounded"/>
      </xs:sequence>
     </xs:complexType>
    </xs:element>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
</xs:schema>
The Release 12 extensions to the User Service Bundle Description schema are specified in Listing 11.2.1.2-4 below. The filename of this schema is "TS26346_UserServiceBundleDescription_Extensions_Rel-12.xsd".
The schema version attribute (part of the schema instruction) shall be included in the UE schema and the network schema.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2013:MBMS:userServiceDescription" version="1"
 xmlns="urn:3GPP:metadata:2013:MBMS:userServiceDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS User Service Bundle Description schema extensions (Release 12)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2.1.2</xs:documentation>
  <xs:documentation>Copyright © 2013, 3GPP Organizational Partners
   (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="broadcastAppService">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="basePattern" type="xs:anyURI" maxOccurs="unbounded"/>
    <xs:element name="serviceArea" type="xs:unsignedShort" minOccurs="0" maxOccurs="unbounded"/>
    <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
   </xs:sequence>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
 </xs:element>
 <xs:element name="unicastAppService">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="basePattern" type="xs:anyURI" maxOccurs="unbounded"/>
    <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
   </xs:sequence>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
 </xs:element>
 <xs:element name="appService" type="appServiceType"/>
  <xs:complexType name="appServiceType">
   <xs:sequence>
    <xs:element name="identicalContent" minOccurs="0" maxOccurs="unbounded">
     <xs:complexType>
      <xs:sequence>
       <xs:element name="basePattern" type="xs:anyURI" minOccurs="2" maxOccurs="unbounded"/>
       <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
      </xs:sequence>
      <xs:anyAttribute processContents="skip"/>
     </xs:complexType>
    </xs:element>
    <xs:element name="alternativeContent" minOccurs="0" maxOccurs="unbounded">
     <xs:complexType>
      <xs:sequence>
       <xs:element name="basePattern" type="xs:anyURI" minOccurs="2" maxOccurs="unbounded"/>
       <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
      </xs:sequence>
      <xs:anyAttribute processContents="skip"/>
     </xs:complexType>
    </xs:element>
    <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
   </xs:sequence>
   <xs:attribute name="appServiceDescriptionURI" type="xs:anyURI" use="required"/>
   <xs:attribute name="mimeType" type="xs:string" use="required"/>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
  <xs:attribute name="inbandMetadata" type="xs:boolean"/>
  <xs:element name="appComponent" type="xs:string"/>
  <xs:element name="serviceArea" type="xs:unsignedShort"/>
  <xs:element name="KeepUpdatedService">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="registrationServer" type="xs:anyURI" maxOccurs="unbounded"/>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
 <xs:element name="consumptionReporting">
  <xs:complexType>
   <xs:sequence>
    <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
   </xs:sequence>   <xs:attribute name="consumptionReportingURI" type="xs:anyURI" use="required"/>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
 </xs:element>
 <xs:element name="mooDConfiguration">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="proxyServer" type="xs:anyURI" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element name="mooDHeaderAttachment">
     <xs:complexType>
      <xs:sequence>
       <xs:element name="dASHContent" minOccurs="0">
        <xs:complexType>
         <xs:attribute name="rule" type="xs:unsignedByte" use="required">
          <xs:annotation>
           <xs:documentation>0: not used
1: Media Segment requests
2: MPD requests
3-255: reserved for future use </xs:documentation>
          </xs:annotation>
         </xs:attribute>
         <xs:anyAttribute processContents="skip"/>
        </xs:complexType>
       </xs:element>
       <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
      </xs:sequence>
     </xs:complexType>
    </xs:element>
    <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
   </xs:sequence>
   <xs:attribute name="locationType" type="xs:string" use="required"/>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
 </xs:element>
</xs:schema>
The Release 14 extensions to the User Service Bundle Description schema are specified in Listing 11.2.1.2-5 below. The filename of this schema is "TS26346_UserServiceBundleDescription_Extensions_Rel-14.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2017:MBMS:userServiceDescription" version="2"
 xmlns="urn:3GPP:metadata:2017:MBMS:userServiceDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS User Service Bundle Description schema extensions (Release 14)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2.1.2</xs:documentation>
  <xs:documentation>Copyright © 2017, 3GPP Organizational Partners
   (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:attribute name="romService" type="xs:boolean" default="false"/>
</xs:schema>
The Release 15 extensions to the User Service Bundle Description schema are specified in Listing 11.2.1.2-6 below. The filename of this schema is "TS26346_UserServiceBundleDescription_Extensions_Rel-15.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2018:r15:MBMS:userServiceDescription" version="3"
 xmlns="urn:3GPP:metadata:2018:r15:MBMS:userServiceDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS User Service Bundle Description schema extensions (Release 15)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2.1.2</xs:documentation>
  <xs:documentation>Copyright © 2018, 3GPP Organizational Partners
   (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="supplementaryUnicastAppService">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="basePattern" type="xs:anyURI" maxOccurs="unbounded"/>
    <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
   </xs:sequence>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
 </xs:element>
 <xs:element name="ROMSvcRfParams">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="Frequency" maxOccurs="unbounded">
     <xs:annotation>
      <xs:documentation>Coded as EARFCN per 3GPP TS 36.101.</xs:documentation>
     </xs:annotation>
     <xs:complexType>
      <xs:attribute name="subcarrierSpacing" use="required">
       <xs:annotation>
        <xs:documentation>Restricted to one of the following values in kHz: [1.25, 7.5, 15].</xs:documentation>
       </xs:annotation>
      </xs:attribute>
      <xs:attribute name="bandwidth" use="required">
       <xs:annotation>
        <xs:documentation>Restricted to one of the following values in MHz: [1.4, 3, 5, 10, 15, 20].</xs:documentation>
       </xs:annotation>
      </xs:attribute>
     </xs:complexType>
    </xs:element>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
</xs:schema>
The Release 16 extensions to the User Service Bundle Description schema are specified in Listing 11.2.1.2-7 below. The filename of this schema is "TS26346_UserServiceBundleDescription_Extensions_Rel-16.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2020:MBMS:userServiceDescription" version="4"
 xmlns="urn:3GPP:metadata:2020:MBMS:userServiceDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS User Service Bundle Description schema extensions (Release 16)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2.1.2</xs:documentation>
  <xs:documentation>Copyright © 2020, 3GPP Organizational Partners
   (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="ROMSvcRfParams">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="Frequency" maxOccurs="unbounded">
     <xs:annotation>
      <xs:documentation>Coded as EARFCN per 3GPP TS 36.101.</xs:documentation>
     </xs:annotation>
     <xs:complexType>
      <xs:attribute name="subcarrierSpacing" type="xs:decimal" use="required">
       <xs:annotation>
        <xs:documentation>Restricted to one of the subcarrier spacing values as specified in 3GPP TS 36.211.</xs:documentation>
       </xs:annotation>
      </xs:attribute>
      <xs:attribute name="bandwidth" type="xs:decimal" use="required">
       <xs:annotation>
        <xs:documentation>Restricted to one of the channel bandwidth values
         as specified in 3GPP TS 36.104.</xs:documentation>
       </xs:annotation>
      </xs:attribute>
     </xs:complexType>
    </xs:element>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
</xs:schema>
Up

11.2.2  Example User Service Bundle Description instancesp. 165

All examples in this clause are generated out of the network supporting the current release USD schema.
The following User Service Bundle Description instance is an example of a simple fragment. This fragment includes only the mandatory elements.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd">
 <userServiceDescription serviceId="urn:3gpp:0010120123hotdog">
  <deliveryMethod sessionDescriptionURI="http://www.example.com/3gpp/mbms/session1.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>7</sv:schemaVersion>
</bundleDescription>
The following User Service Bundle Description instance is an example of a fuller fragment.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd"
 fecDescriptionURI="http://www.example.com/3gpp/mbms/session1-fec.sdp">
 <userServiceDescription serviceId="urn:3gpp:1234567890coolcat">
  <name lang="EN">Welcome</name>
  <name lang="DE">Willkommen</name>
  <name lang="FR">Bienvenue</name>
  <name lang="FI">Tervetuloa</name>
  <serviceLanguage>EN</serviceLanguage>
  <serviceLanguage>DE</serviceLanguage>
  <requiredCapabilities>
   <feature>0</feature>
  </requiredCapabilities>
  <deliveryMethod accessGroupId="1"
   sessionDescriptionURI="http://www.example.com/3gpp/mbms/session1.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod sessionDescriptionURI="http://www.example.com/3gpp/mbms/session2.sdp"
   associatedProcedureDescriptionURI="http://www.example.com/3gpp/mbms/procedureX.xml">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod sessionDescriptionURI="http://www.example.com/3gpp/mbms/session3.sdp"
   associatedProcedureDescriptionURI="http://www.example.com/3gpp/mbms/procedureY.xml">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod accessGroupId="2"
   sessionDescriptionURI="http://www.example.com/3gpp/mbms/session4.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <accessGroup id="1">
   <accessBearer>3GPP.R6.GERAN</accessBearer>
   <accessBearer>3GPP.R6.UTRAN</accessBearer>
  </accessGroup>
  <accessGroup id="2">
   <accessBearer>3GPP.R6.UTRAN</accessBearer>
  </accessGroup>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>7</sv:schemaVersion>
</bundleDescription>
The following User Service Bundle Description instance is an example of a Release 7 fragment.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xmlns:r7="urn:3GPP:metadata:2007:MBMS:userServiceDescription"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd"
 fecDescriptionURI="http://www.example.com/3gpp/mbms/session1-fec.sdp">
 <userServiceDescription serviceId="urn:3gpp:1234567890coolcat">
  <name lang="EN">Welcome</name>
  <name lang="DE">Willkommen</name>
  <name lang="FR">Bienvenue</name>
  <name lang="FI">Tervetuloa</name>
  <serviceLanguage>EN</serviceLanguage>
  <serviceLanguage>DE</serviceLanguage>
  <deliveryMethod accessGroupId="1"
   sessionDescriptionURI="http://www.example.com/3gpp/mbms/session1.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod sessionDescriptionURI="http://www.example.com/3gpp/mbms/session2.sdp"
   associatedProcedureDescriptionURI="http://www.example.com/3gpp/mbms/procedureX.xml">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod sessionDescriptionURI="http://www.example.com/3gpp/mbms/session3.sdp"
   associatedProcedureDescriptionURI="http://www.example.com/3gpp/mbms/procedureY.xml">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod accessGroupId="2"
   sessionDescriptionURI="http://www.example.com/3gpp/mbms/session4.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <accessGroup id="1">
   <accessBearer>3GPP.R6.GERAN</accessBearer>
   <accessBearer>3GPP.R6.UTRAN</accessBearer>
  </accessGroup>
  <accessGroup id="2">
   <accessBearer>3GPP.R6.UTRAN</accessBearer>
  </accessGroup>
  <r7:serviceGroup groupID="http://www.example.com/mbms/serviceGroup1"/>
  <r7:initiationRandomization initiationStartTime="3468452458" protectionPeriod="600" randomTimePeriod="300"/>
  <r7:terminationRandomization protectionPeriod="300" randomTimePeriod="120"/>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>7</sv:schemaVersion>
</bundleDescription>
The following example User Service Bundle Description instance adds an RTSP URI for alternative access to the delivery method.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xmlns:r7="urn:3GPP:metadata:2007:MBMS:userServiceDescription"
 xmlns:r8="urn:3GPP:metadata:2008:MBMS:userServiceDescription"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd">
 <userServiceDescription serviceId="urn:3gpp:1234567890MobileTVChannelBundleCh1"
  r7:serviceClass="urn:oma:bcast:ext_bsc_3gpp:example_service:1.0">
  <deliveryMethod sessionDescriptionURI="http://www.example.com/3gpp/mbms/channel1.sdp">
   <r8:alternativeAccessDelivery timeShiftingBuffer="3600">
    <r8:unicastAccessURI>rtsp://www.example.com/3gpp/mbms/channel1_pss.sdp
    </r8:unicastAccessURI>
   </r8:alternativeAccessDelivery>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>7</sv:schemaVersion>
</bundleDescription>
The following example User Service Bundle Description instance indicates that a registration procedure is requested for 50% of the UEs before the consumption of the MBMS User Service.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xmlns:r7="urn:3GPP:metadata:2007:MBMS:userServiceDescription"
 xmlns:r8="urn:3GPP:metadata:2008:MBMS:userServiceDescription"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd">
 <userServiceDescription serviceId="urn:3gpp:1234567890MobileTVChannelBundleCh1"
  r7:serviceClass="urn:oma:bcast:ext_bsc_3gpp:example_service:1.0">
  <deliveryMethod sessionDescriptionURI="http://www.example.com/3gpp/mbms/channel1.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <r8:Registration registrationThreshold="50">
   <r8:registrationURI>http://www.example.com/3gpp/mbms/register.php</r8:registrationURI>
  </r8:Registration>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>7</sv:schemaVersion>
</bundleDescription>
The following example User Service Bundle Description instance depicts an MBMS User Service carrying a DASH Media Presentation which is delivered over the MBMS bearer as a single Representation. It is assumed that the same Representation, along with an alternative Representation, are also available for unicast access, and that the broadcast and unicast versions are exchangeable for one another.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:r7="urn:3GPP:metadata:2007:MBMS:userServiceDescription"
 xmlns:r8="urn:3GPP:metadata:2008:MBMS:userServiceDescription"
 xmlns:r9="urn:3GPP:metadata:2009:MBMS:userServiceDescription"
 xmlns:r12="urn:3GPP:metadata:2013:MBMS:userServiceDescription"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd"
 fecDescriptionURI="http://www.example.com/3gpp/mbms/session1-fec.sdp">
 <userServiceDescription serviceId="urn:3gpp:777888bigbob">
  <name lang="EN">The Big Bob Show</name>
  <serviceLanguage>EN</serviceLanguage>
  <deliveryMethod associatedProcedureDescriptionURI=" http://www.example.com/3gpp/mbms/procedureX.xml"
   sessionDescriptionURI=" http://www.example.com/3gpp/mbms/session1.sdp">
   <sv:delimiter>0</sv:delimiter>
   <r12:broadcastAppService>
    <r12:basePattern>http://example.com/bc/per-1/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/bc/per-2/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/bc/per-3/rep-512</r12:basePattern>
    <r12:serviceArea>65535</r12:serviceArea>
   </r12:broadcastAppService>
   <r12:unicastAppService>
    <r12:basePattern>http://example.com/uc/per-1/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-2/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-3/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-1/rep-256</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-2/rep-256</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-3/rep-256</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-1/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-2/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-3/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-1/rep-256</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-2/rep-256</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-3/rep-256</r12:basePattern>
   </r12:unicastAppService>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <r9:mediaPresentationDescription>
   <r9:mpdURI>http://example.com/MPD.mpd</r9:mpdURI>
  </r9:mediaPresentationDescription>
  <r9:schedule>
   <r9:scheduleDescriptionURI>http://www.example.com/3gpp/mbms/schedule123.xml
   </r9:scheduleDescriptionURI>
  </r9:schedule>
  <sv:delimiter>0</sv:delimiter>
  <r12:appService appServiceDescriptionURI="http://www.example.com/MPD2.mpd"
   mimeType="application/dash+xml;profiles=urn:3GPP:PSS:profile:DASH10">
   <r12:identicalContent>
    <r12:basePattern>http://example.com/bc/per-1/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-1/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-1/rep-512</r12:basePattern>
   </r12:identicalContent>
   <r12:identicalContent>
    <r12:basePattern>http://example.com/bc/per-2/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-2/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-2/rep-512</r12:basePattern>
   </r12:identicalContent>
   <r12:identicalContent>
    <r12:basePattern>http://example.com/bc/per-3/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-3/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-3/rep-512</r12:basePattern>
   </r12:identicalContent>
   <r12:alternativeContent>
    <r12:basePattern>http://example.com/bc/per-1/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-1/rep-256</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-1/rep-256</r12:basePattern>
   </r12:alternativeContent>
   <r12:alternativeContent>
    <r12:basePattern>http://example.com/bc/per-2/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-2/rep-256</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-2/rep-256</r12:basePattern>
   </r12:alternativeContent>
   <r12:alternativeContent>
    <r12:basePattern>http://example.com/bc/per-3/rep-512</r12:basePattern>
    <r12:basePattern>http://example.com/uc/per-3/rep-256</r12:basePattern>
    <r12:basePattern>http://example.com/uc2/per-3/rep-256</r12:basePattern>
   </r12:alternativeContent>
  </r12:appService>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>7</sv:schemaVersion>
</bundleDescription>
The following example User Service Bundle Description instance indicates the presence of four deliveryMethod element instances, two each of which are associated with [group=1, PLMN-ID=0x019509] and [group=2, PLMN-ID=0x01950A], and whereby each deliveryMethod element contains a reference to a unique Session Description fragment.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd">
 <userServiceDescription serviceId="urn:3gpp:0010120123hotdog">
  <deliveryMethod group="1" PLMN="0x019509" sessionDescriptionURI="http://www.example.com/3gpp/mbms/session1.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod group="1" PLMN="0x01950A" sessionDescriptionURI="http://www.example.com/3gpp/mbms/session2.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod group="2" PLMN="0x019509" sessionDescriptionURI="http://www.example.com/3gpp/mbms/session3.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <deliveryMethod group="2" PLMN="0x01950A" sessionDescriptionURI="http://www.example.com/3gpp/mbms/session4.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>2</sv:schemaVersion>
</bundleDescription>
The following example User Service Bundle Description instance declares an MBMS User Service carrying an audio/video DASH Media Presentation featuring an English audio track that is delivered over both the MBMS bearer and the unicast bearer. In addition, a Spanish audio track for the Media Presentation is indicated as delivered over the unicast bearer to be supplementary to the broadcast resources.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:r7="urn:3GPP:metadata:2007:MBMS:userServiceDescription"
 xmlns:r8="urn:3GPP:metadata:2008:MBMS:userServiceDescription"
 xmlns:r9="urn:3GPP:metadata:2009:MBMS:userServiceDescription"
 xmlns:r12="urn:3GPP:metadata:2013:MBMS:userServiceDescription"
 xmlns:r14="urn:3GPP:metadata:2017:r14:MBMS:userServiceDescription"
 xmlns:r15="urn:3GPP:metadata:2018:r15:MBMS:userServiceDescription"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd"
 fecDescriptionURI="http://www.example.com/3gpp/mbms/session1-fec.sdp">
 <userServiceDescription serviceId="urn:3gpp:12345superduper">
  <name lang="EN">The Super Duper Service</name>
  <serviceLanguage>EN</serviceLanguage>
  <deliveryMethod associatedProcedureDescriptionURI=" http://www.example.com/3gpp/mbms/procedureX.xml"
   sessionDescriptionURI=" http://www.example.com/3gpp/mbms/session1.sdp">
   <sv:delimiter>0</sv:delimiter>
   <r12:broadcastAppService>
    <r12:basePattern>http://example.com/bc/rep-512k</r12:basePattern>
    <r12:basePattern>http://example.com/bc/en</r12:basePattern>
   </r12:broadcastAppService>
   <r12:unicastAppService>
    <r12:basePattern>http://example.com/uc/rep-256k</r12:basePattern>
    <r12:basePattern>http://example.com/uc/en</r12:basePattern>
   </r12:unicastAppService>
   <sv:delimiter>0</sv:delimiter>
   <r15:supplementaryUnicastAppService>
    <r15:basePattern>http://example.com/uc/es</r15:basePattern>
   </r15:supplementaryUnicastAppService>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <r9:mediaPresentationDescription>
   <r9:mpdURI>http://example.com/MPD.mpd</r9:mpdURI>
  </r9:mediaPresentationDescription>
  <r9:schedule>
   <r9:scheduleDescriptionURI>http://www.example.com/3gpp/mbms/schedule123.xml
   </r9:scheduleDescriptionURI>
  </r9:schedule>
  <sv:delimiter>0</sv:delimiter>
  <r12:appService appServiceDescriptionURI="http://www.example.com/MPD2.mpd"
   mimeType="application/dash+xml;profiles=urn:3GPP:PSS:profile:DASH10"/>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>7</sv:schemaVersion>
</bundleDescription>
The following example User Service Bundle Description instance declares an MBMS User Service carrying an Receive-Only Mode (ROM) TV service, targeted to MBMS UEs which lack unicast communication capability.
<?xml version="1.0" encoding="UTF-8"?>
<bundleDescription xmlns="urn:3GPP:metadata:2005:MBMS:userServiceDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:r7="urn:3GPP:metadata:2007:MBMS:userServiceDescription"
 xmlns:r8="urn:3GPP:metadata:2008:MBMS:userServiceDescription"
 xmlns:r9="urn:3GPP:metadata:2009:MBMS:userServiceDescription"
 xmlns:r12="urn:3GPP:metadata:2013:MBMS:userServiceDescription"
 xmlns:r14="urn:3GPP:metadata:2017:MBMS:userServiceDescription"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:userServiceDescription TS26346_UserServiceBundleDescription.xsd"
 fecDescriptionURI="http://www.example.com/3gpp/mbms/session1-fec.sdp">
 <userServiceDescription serviceId="urn:3gpp:12345dancemonkey" r14:romService="true">
  <name lang="EN">Dancing with Monkeys</name>
  <serviceLanguage>EN</serviceLanguage>
  <deliveryMethod sessionDescriptionURI="http://www.example.com/3gpp/mbms/session1.sdp">
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </deliveryMethod>
  <r9:schedule>
   <r9:scheduleDescriptionURI>http://www.example.com/3gpp/mbms/schedule543.xml
   </r9:scheduleDescriptionURI>
  </r9:schedule>
  <sv:delimiter>0</sv:delimiter>
  <r12:appService appServiceDescriptionURI="http://www.example.com/MPD2.mpd"
   mimeType="application/dash+xml;profiles=urn:3GPP:PSS:profile:DASH10"/>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
  <sv:delimiter>0</sv:delimiter>
 </userServiceDescription>
 <sv:schemaVersion>7</sv:schemaVersion>
</bundleDescription>
Up

11.2A  Schedule Description metadata fragment |R9|p. 172

11.2A.0  Introduction |R17|p. 172

The XML schema for the Schedule Description metadata fragment is specified in clause 11.2A.2.
The procedures associated with the elements of the schema are specified in clause 11.2A.1.

11.2A.1  Procedures for Schedule Description metadata fragmentp. 172

11.2A.1.1  Initial definition |R12|p. 172

This clause specifies the semantics of the Schedule Description metadata fragment in Release 11. The corresponding XML schema is specified in clause 11.2A.2.1. It is further extended in subsequent releases in clause 11.2A.1.2.
A schedule description instance may be delivered to the MBMS Clients:
  • during a User Service Discovery/Announcement prior to the MBMS download session along with the session description (out-of-band of that session); or
  • in-band within a MBMS download session; or
  • via an MBMS download session dedicated to the transport of file schedule information.
The most recently delivered schedule file shall take priority, such that schedule parameters received prior to, and out-of-band, of the download session they apply to are regarded as "initial defaults", and schedule parameters received in-band with the download session, overwrite the earlier received schedule parameters. The MBMS Metadata Envelope, see clause 11.1, applies for the reception of schedule parameters.
The schedule description instance is clearly identified using a URI, to enable UE cross-referencing of in and out-of-band schedule files.
The MIME media type for the Schedule information is "application/mbms-schedule+xml"
Availability of the schedule description metadata fragment is indicated by the presence of the schedule element in the User Service Bundle Description fragment. The URI to the Schedule Description fragment is provided by the element scheduleDescriptionURI in the schedule element.
The start and stop time of a single fileSchedule is specified by the start and end attributes. The start and stop time of a single sessionSchedule is specified by the start and stop elements. The time is specified as the absolute date and time. The duration may be determined by subtracting the start time from the stop time.
The UE may only activate reception of that service within the sessionSchedule (and the fileSchedule if present) time window. The service shall be available to the UE during the time interval(s) announced by the session schedule (i.e. scheduleDescription.serviceSchedule.sessionSchedule element of the Schedule Description), for either unicast or broadcast reception. In particular, for unicast reception, the Schedule Description is indicative of the time availability for unicast access of an MBMS User Service while the TMGI for the service is not activated (as specified in clauses 9.4A and 11.2.1.2), as well as for unicast fallback reception when the UE is not located in the MBMS coverage area for the service (as described in clause 7.6).
When a fileSchedule element is present in a serviceSchedule element, then:
  • The UE should not expect that a file described by a fileSchedule will be updated during a time window instance, defined by start and end attributes within a deliveryInfo element of that fileSchedule.
  • There shall be only one file version (as defined in the Content-MD5 attribute in the FDT) transmitted in a time window defined by the start and end attributes within a deliveryInfo element for a given fileSchedule element.
  • If fileMD5 attribute is not present, the files transmitted in the time windows from different deliveryInfo elements in a fileSchedule should not be expected to be the same file version.
  • If fileMD5 attribute is present, there shall be only one file version transmitted in all of the time windows delimited by the start and end attributes of each of the one or more deliveryInfo elements.
  • In-band Schedule Description fragment updates can be used to provide a dynamic schedule update to override the existing delivery schedule, such as using the cancelled attribute mechanism specified in this clause.
  • A sessionSchedule element in the same serviceSchedule element shall be present, and its start and stop elements shall specify a time window that completely overlaps the time windows specified in each of the fileSchedule elements of the same serviceSchedule.
When a sessionSchedule is present and there are no fileSchedule in a serviceSchedule, then the UE should download each new file, independently to whether the session is used for file delivery or DASH over MBMS.
The reoccurencePattern element if included shall have a value of either "daily", "weekly" or "monthly".
The number of recurences of an event may be indicated by either specifying the end time, as indicated by the reoccurenceStopTime element, or by specifying the number of recurrences, with the numberOfTimes element. If there are no reoccurrence, then the reoccurencePattern, numberOfTimes and reoccurenceStopTime elements are not included.
The fileSchedule element specifies details about the files delivered during a session. The sessionId attribute is as defined in clause 9.4.6. If present, it identifies the delivery session for each file. If not present, a UE shall determine the transport session as defined by the session description for the download session. The fileMD5 attribute is the MD5 hash value of the file. If present, the purpose of this hash is to enable a UE to determine if a file has changed since a prior reception without having to download the file.
The scheduleUpdate element specifies a time after which UE shall seek to update its schedule information.
An index element is included as a child of the sessionSchedule element.
  • If the sessionSchedule does not describe any session reoccurrence then the index corresponds to the single session occurrence.
  • If the sessionSchedule describes one or more reoccurrences, the index is the starting index of the first session occurrence with the index value increased by one for each session recurrence.
A cancelled attribute is defined as a child of the fileURI element, itself a child of the fileSchedule element. If cancelled is set to "true" or "1", then the transmission of the file identified by the fileURI element is cancelled, and the UE shall cancel any applicable file repair and/or reception reporting procedures for that file . If this file schedule-level cancellation indication in the updated schedule description is received after the associated file has already been delivered, then any related file repair, or reception reporting for that file (associated with its parent service), either in progress or yet to occur, shall be aborted. If cancelled is set to "false" or "0" or is absent, then nominal file transmission and associated delivery procedures, if applicable, shall occur.
A sessionScheduleOverride element is defined as a child of the serviceSchedule element. If included, the sessionScheduleOverride element indicates either the cancellation of the session occurrence, or schedule override, as follows:
  • If the cancelled attribute (a child of the sessionScheduleOverride element) is set to "true" or "1", then the transmission of the session identified by the index attribute (a child of the sessionScheduleOverride element) is cancelled, and the UE shall cancel any applicable file repair and/or reception reporting for all files belonging to that session. If this session schedule-level cancellation indication in the updated schedule description is received after any of the associated files have already been delivered, then any related file repair, or reception reporting for those files (associated with their parent service(s)), either in progress or yet to occur, shall be aborted.
  • If the cancelled attribute (a child of the sessionScheduleOverride element) is set to "false" or "0" or is absent, then the start and stop time elements (children of sessionScheduleOverride element) shall override the nominal start and stop time of the transmission schedule of the session as identified by the index attribute (a child of the sessionScheduleOverride element).
The value of the index attribute in the sessionScheduleOverride element corresponds to any of the value of the index element in the reoccurenceStartStopType in the sessionSchedule element.
Schedule information received in the Schedule Description metadata fragment shall take precedence over timing information that may have been received in SDP (t or/and r lines).
The child element receptionFiltering may be present in either the sessionSchedule or fileSchedule elements of the Schedule Description fragment. If it appears in the session schedule, receptionFiltering signifies the presence of the Filter Description metadata fragment for use by the UE to perform selective reception of contents, in their entirety, sent during the corresponding session(s) of the User Service. If it appears in the file schedule, receptionFiltering signifies the presence of the Filter Description metadata fragment for use by the UE to perform selective reception of the corresponding file(s) of the User Services, during its(their) scheduled delivery time(s). Should receptionFiltering be present in both the sessionSchedule and fileSchedule elements, fileSchedule shall take precedence. The filterDescriptionReference attribute of the Schedule Description fragment identifies the Filter Description fragment of concern, and each instance of the data child element of receptionFiltering identifies a unique filter data instance in the Filter Description fragment to be applied for content filtering and selective reception. Multiple data elements may appear under receptionFiltering, to accommodate the presence of different categories or types of filtering data. More details on the composition of filtering data are given in clause 11.2B.
Up

11.2A.1.2  Extension to the Schedule Description metadata fragment |R12|p. 174

The Schedule Description schema specified in this clause extends the MBMS Release 11 schema of clause 11.2A.1.1.
Optional reference to an FDT Instance is provided in the session schedule by the r12:FDTInstanceURI element. When this element is present and the index (see clause 11.2A.1.1) is described in the sessionSchedule, then the r12:FDTInstanceURI element concatenated together with the index value of the session occurrence provides the location of an FDT Instance that describes all of the files delivered during the associated session occurrence. An MBMS Client that has missed receiving files and their FDT Instances (e.g., MBMS Client is outside of MBMS coverage or is just tuning in between session occurrences) may use the URI formed by concatenating the index value of any previously missed session occurrence after the value of the r12:FDTInstanceURI element (i.e., FDTInstanceURI|index) to obtain an FDT Instance following the procedures specified in clause 9.3.9.3.
When the r12:FDTInstanceURI element is present and the index is not described in the sessionSchedule then the r12:FDTInstanceURI element by itself provides the location of an FDT Instance that describes all the files delivered during the session.
When the r12:unicastOnly attribute is set to true by the Keep Updated service, as specified in clause 7.7, it indicates that the file referenced by the fileURI is accessible via unicast only.
Optional presence of the r12:recurrenceAndMonitoring element in the session schedule signals that the associated MBMS User Service is the Datacasting type. The attribute mode, when set to "true" or "1" indicates the scheduled-and-periodic delivery mode of the Datacasting service, and when set to "false" or "0" indicates the back-to-back delivery mode.
The child element interval under r12:recurrenceAndMonitoring signals a time interval associated with the delivery mode. When mode = "true" or "1" (scheduled-and-periodic delivery mode), the value of interval represents the time duration between successive scheduled transmissions. When mode = "false" or "0" (back-to-back delivery mode), the value of interval represents the nominal duration of successive updates of files carried on the Datacasting service.
In either the scheduled-and-periodic or back-to-back Datacasting file transmission modes, the session duration is given by the difference between the start and stop elements of sessionSchedule. One or more content files of the Datacasting service are delivered during each session. In the scheduled-and-periodic transmission mode, the number of session recurrences can be indicated in one of two ways:
  1. by specifying the recurrence end time, as indicated by the reoccurenceStopTime element, in conjunction with the interval, or
  2. by specifying the number of recurrences via the numberOfTimes element.
The r12:sessionDescriptionURI attribute of the sessionSchedule element, if present, identifies the MBMS download session to which the associated instance of the session schedule applies.
Up

11.2A.2  Schedule Description metadata fragment syntaxp. 175

11.2A.2.1  Extended Schedule Description metadata fragment schema |R12|p. 175

The formal XML syntax of the Schedule Description is specified in Listing 11.2A.2.1-1 below. Instance documents following this schema can be identified with the MIME media type "application/mbms-schedule+xml" defined in clause C.14. The filename of the XML schema for Schedule Description is "TS26346_ScheduleDescription.xsd".
In this version of the present document the network shall set the content of the schemaVersion element, defined as a child of the scheduleDescription element, to the value 3.
The schema version attribute (part of the schema instruction) shall be included in the UE schema and the network schema.
When a UE receives an instantiation of a Schedule Description compliant to this schema, it shall determine the schema version required to parse the instantiation as follows:
  • If the UE supports one or more versions of the Schedule Description schema with the schema version attribute, then the UE shall use the schema that has the highest schema version attribute value that is equal to or less than the value in the received schemaVersion element;
The XML schema "TS26346_SchemaVersion.xsd" is specified in clause J.2.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3gpp:metadata:2011:MBMS:scheduleDescription" version="3"
 xmlns="urn:3gpp:metadata:2011:MBMS:scheduleDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 xmlns:r11="urn:3gpp:metadata:2012:MBMS:scheduleDescription"
 xmlns:r12="urn:3gpp:metadata:2013:MBMS:scheduleDescription"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>Extended MBMS Schedule Description schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2A.2.1</xs:documentation>
  <xs:documentation>Copyright © 2013, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:import schemaLocation="TS26346_ScheduleDescription_Extensions_Rel-11.xsd"
namespace="urn:3gpp:metadata:2012:MBMS:scheduleDescription"/>
 <xs:import schemaLocation="TS26346_ScheduleDescription_Extensions_Rel-12.xsd"
namespace="urn:3gpp:metadata:2013:MBMS:scheduleDescription"/>
 <xs:import schemaLocation="TS26346_SchemaVersion.xsd"
namespace="urn:3gpp:metadata:2009:MBMS:schemaVersion"/>
 <xs:element name="scheduleDescription" type="scheduleDescriptionType"/>
 <xs:complexType name="scheduleDescriptionType">
  <xs:sequence>
   <xs:element ref="sv:schemaVersion"/>
   <xs:element name="serviceSchedule" maxOccurs="unbounded">
    <xs:complexType>
     <xs:sequence>
      <xs:element name="sessionSchedule" type="reoccurenceStartStopType" minOccurs="0" maxOccurs="unbounded"/>
      <xs:element name="sessionScheduleOverride" minOccurs="0" maxOccurs="unbounded">
      <xs:complexType>
       <xs:sequence minOccurs="0">
        <xs:element name="start" type="xs:dateTime"/>
        <xs:element name="stop" type="xs:dateTime"/>
        </xs:sequence>
        <xs:attribute name="index" type="xs:unsignedInt" use="required"/>
        <xs:attribute name="cancelled" type="xs:boolean"/>
       </xs:complexType>
      </xs:element>
      <xs:element name="fileSchedule" minOccurs="0" maxOccurs="unbounded">
       <xs:complexType>
        <xs:sequence>
         <xs:element name="fileURI">
          <xs:complexType>
           <xs:simpleContent>
            <xs:extension base="xs:anyURI">
             <xs:attribute name="cancelled" type="xs:boolean"/>
            </xs:extension>
           </xs:simpleContent>
          </xs:complexType>
         </xs:element>
         <xs:element name="deliveryInfo" minOccurs="0" maxOccurs="unbounded">
          <xs:complexType>
           <xs:attribute name="start" type="xs:dateTime"/>
           <xs:attribute name="end" type="xs:dateTime"/>
           <xs:anyAttribute processContents="skip"/>
          </xs:complexType>
         </xs:element>
         <xs:element ref="r11:receptionFiltering" minOccurs="0"/>
         <xs:element ref="sv:delimiter"/>
         <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
        </xs:sequence>
        <xs:attribute ref="r11:sessionId" use="optional"/>
        <xs:attribute ref="r11:fileMD5" use="optional"/>
        <xs:attribute ref="r12:unicastOnly"/>
        <xs:anyAttribute processContents="skip"/>
       </xs:complexType>
      </xs:element>
      <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
     </xs:sequence>
     <xs:attribute name="serviceId" type="xs:anyURI"/>
     <xs:attribute name="serviceClass" type="xs:string" use="optional"/>
     <xs:anyAttribute processContents="skip"/>
    </xs:complexType>
   </xs:element>
   <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  </xs:sequence>
  <xs:attribute name="scheduleUpdate" type="xs:dateTime"/>
  <xs:attribute ref="r11:filterDescriptionReference"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:complexType name="reoccurenceStartStopType">
  <xs:sequence>
   <xs:element name="start" type="xs:dateTime"/>
   <xs:element name="stop" type="xs:dateTime"/>
   <xs:element name="reoccurencePattern" type="xs:string" minOccurs="0"/>
   <xs:element name="numberOfTimes" type="xs:unsignedInt" minOccurs="0"/>
   <xs:element name="reoccurenceStopTime" type="xs:dateTime" minOccurs="0"/>
   <xs:element name="index" type="xs:unsignedInt" minOccurs="0"/>
   <xs:element ref="r11:receptionFiltering" minOccurs="0"/>
   <xs:element ref="sv:delimiter"/>
   <xs:element ref="r12:FDTInstanceURI" minOccurs="0"/>
   <xs:element ref="r12:recurrenceAndMonitoring" minOccurs="0"/>
   <xs:element ref="sv:delimiter"/>
   <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  </xs:sequence>
  <xs:attribute ref="r12:sessionDescriptionURI"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
</xs:schema>
Up

11.2A.2.2  Release 11 extensions to Schedule Description schema |R12|p. 177

Listing 11.2A.2.2-1 below specifies the Release 11 extensions to the Schedule Description schema. The schema filename is "TS26346_ScheduleDesrctiption_Extensions_Rel-11.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3gpp:metadata:2012:MBMS:scheduleDescription"
 xmlns="urn:3gpp:metadata:2012:MBMS:scheduleDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS Schedule Description schema extensions (Release 11)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2A.2.2</xs:documentation>
  <xs:documentation>Copyright © 2012, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:attribute name="sessionId" type="xs:string"/>
 <xs:attribute name="fileMD5" type="xs:base64Binary"/>
 <xs:attribute name="filterDescriptionReference" type="xs:anyURI"/>
 <xs:element name="receptionFiltering">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="data" maxOccurs="unbounded">
     <xs:complexType>
      <xs:attribute name="filterID" type="xs:anyURI" use="required"/>
     </xs:complexType>
    </xs:element>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
</xs:schema>
Up

11.2A.2.3  Release 12 Extension to Schedule Description schema |R12|p. 177

Listing 11.2A.2.3-1 below specifies the Release 12 extension to the Schedule Description schema. The schema filename is "TS26346_ScheduleDescription_Extensions_Rel-12.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3gpp:metadata:2013:MBMS:scheduleDescription"
 xmlns="urn:3gpp:metadata:2013:MBMS:scheduleDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS Schedule Description schema extensions (Release 12)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2A.2.3</xs:documentation>
  <xs:documentation>Copyright © 2013, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:attribute name="unicastOnly" type="xs:boolean" default="false"/>
 <xs:element name="FDTInstanceURI" type="xs:anyURI"/>
 <xs:element name="recurrenceAndMonitoring" type="recurrenceAndMonitoringType"/>
 <xs:complexType name="recurrenceAndMonitoringType">
  <xs:sequence>
   <xs:element name="interval" type="xs:duration"/>
   <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  </xs:sequence>
  <xs:attribute name="mode" type="xs:boolean"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:attribute name="sessionDescriptionURI" type="xs:anyURI"/>
</xs:schema>
Up

11.2A.3  Examples of the Schedule Description metadata fragmentp. 178

11.2A.3.1  Example 1 |R17|p. 178

In this instantiation example, the following key points can be noted:
  • The version of the schema used to generate this instantiation is version 3, as indicated by the schemaVersion element. Thus, a receiver of this instantiation that has multiple schedule schema versions (say 1, 2, 3 and 4), should use the schedule schema version equals to 3, as indicated in the version attribute of the schema instruction "schema". A receiver that has only older versions (version1 and/or 2 in this case) of the schedule schema should use the schema that has the highest version number for validating the instantiation, but extensions made in higher versions of the schema will be ignored by the receiver. The receiver should avoid using schema version higher than 3, since the instantiation would fail verification against such schema version.
  • The scheduleUpdate element indicates UTC time February 1st 2012 at time 00 hour 00 min 00 sec. Thus, an MBMS UE should seek to update the schedule instance after this time.
  • There are two serviceSchedule elements.
  • In the first serviceSchedule, it includes
    • a sessionSchedule that starts at UTC March 1st 2012 23:00:00 and ends at UTC March 1st 2012 23:30:00;
    • a first fileSchedule used for FOTA (firmware update over the air) for oem-1 model-1 with a filename of image032212.apk, which delivery starts at UTC March 1st 2012 23:00:00 and ends at March 1st 2012 23:10:00, thus 10 minutes duration;
    • a second fileSchedule used for FOTA for oem-1 model-2 with filename image098798.apk, whose delivery starts at UTC March 1st 2012 23:10:00 and ends at UTC March 1st 2012 23:20:00, thus 10 minutes duration;
    • a third fileSchedule used for FOTA for oem-1 model-3 with filename image765987.apk, whose delivery starts at UTC March 1st 2012 23:20:00 and ends at UTC March 1st 2012 23:30:00, thus 10 minutes duration.
  • In the second serviceSchedule, it includes
    • a sessionSchedule that starts at UTC March 7th 2012 10:00:00 and ends at UTC March 7th 2012 10:30:00;
    • a first fileSchedule used for FOTA for oem-1 model-4 with a filename of image456345.apk, whose delivery starts at UTC March 7th 2012 10:00:00 and ends at March 7th 2012 10:15:00, thus 15 minutes duration;
    • a second fileSchedule used for FOTA for oem-1 model-2 with filename image504123.apk, whose delivery starts at UTC March 7th 2012 10:15:00 and ends at UTC March 7th 2012 10:30:00, thus 15 minutes duration.
<?xml version="1.0" encoding="UTF-8"?>
<scheduleDescription xmlns="urn:3gpp:metadata:2011:MBMS:scheduleDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3gpp:metadata:2011:MBMS:scheduleDescription TS26346_ScheduleDescription.xsd"
 scheduleUpdate="2012-02-01T00:00:00Z">
 <sv:schemaVersion>3</sv:schemaVersion>
 <serviceSchedule>
  <sessionSchedule>
   <start>2012-03-01T23:00:00Z</start>
   <stop>2012-03-01T23:30:00Z</stop>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </sessionSchedule>
  <fileSchedule>
   <fileURI>file://fota.operator.com/swupdate/oem-1/model-1/image032212.apk</fileURI>
   <deliveryInfo start="2012-03-01T23:00:00Z" end="2012-03-01T23:10:00Z"/>
   <sv:delimiter>0</sv:delimiter>
  </fileSchedule>
  <fileSchedule>
   <fileURI>file://fota.operator.com/swupdate/oem-1/model-2/image098798.apk</fileURI>
   <deliveryInfo start="2012-03-01T23:10:00Z" end="2012-03-01T23:20:00Z"/>
   <sv:delimiter>0</sv:delimiter>
  </fileSchedule>
  <fileSchedule>
   <fileURI>file://fota.operator.com/swupdate/oem-1/model-3/image765987.apk</fileURI>
   <deliveryInfo start="2012-03-01T23:20:00Z" end="2012-03-01T23:30:00Z"/>
   <sv:delimiter>0</sv:delimiter>
  </fileSchedule>
 </serviceSchedule>
 <serviceSchedule>
  <sessionSchedule>
   <start>2012-03-07T10:00:00Z</start>
   <stop>2012-03-07T10:30:00Z</stop>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </sessionSchedule>
  <fileSchedule>
   <fileURI>file://fota.operator.com/swupdate/oem-1/model-4/image456345.apk</fileURI>
   <deliveryInfo start="2012-03-07T10:00:00Z" end="2012-03-07T10:15:00Z"/>
   <sv:delimiter>0</sv:delimiter>
  </fileSchedule>
  <fileSchedule>
   <fileURI> file://fota.operator.com/swupdate/oem-1/model-5/image504123.apk</fileURI>
   <deliveryInfo start="2012-03-07T10:15:00Z" end="2012-03-07T10:30:00Z"/>
   <sv:delimiter>0</sv:delimiter>
  </fileSchedule>
 </serviceSchedule>
</scheduleDescription>
Up

11.2A.3.2  Example 2 |R17|p. 179

In this instantiation example, the following key points can be noted:
  • The version of the schema used to generate this instantiation is version 3, as indicated by the schemaVersion element. Thus, a receiver of this instantiation that has multiple schedule schema versions (say 1, 2, 3 and 4), should use the schedule schema version equals to 3, as indicated in the version attribute of the schema instruction "schema". A receiver that has only older versions (version1 and/or 2 in this case) of the schedule schema should use the schema that has the highest version number for validating the instantiation, but extensions made in higher versions of the schema will be ignored by the receiver. The receiver should avoid using schema version higher than 3, since the instantiation would fail verification against such schema version.
  • The scheduleUpdate element indicates UTC time February 1st at time 00 hour 00 min 00 sec. Thus UE should seek to update the schedule instance after this time.
  • There is one serviceSchedule element, which includes:
    • a sessionSchedule that
      • Has a first occurrence that starts at UTC March 7th 2012 23:00:00 and ends at UTC March 7th 2012 23:30:00;
      • Has subsequent occurrences every day at the same time until UTC March 14th 2012 00:00:00
    • A first fileSchedule used for FOTA for oem-1 model-1 with a filename of image032212.apk, whose delivery starts at UTC March 7th 2012 23:00:00 and ends at March 7th 2012 23:10:00, thus 10 minutes duration;
    • A second fileSchedule used for FOTA for oem-1 model-2 with a filename of image098798.apk, whose delivery starts at UTC March 7th 2012 23:10:00 and ends at March 7th 2012 23:20:00, thus 10 minutes duration;
    • A third fileSchedule used for FOTA for oem-1 model-3 with a filename of image765987.apk, whose delivery starts at UTC March 7th 2012 23:20:00 and ends at March 7th 2012 23:30:00, thus 10 minutes duration;
<?xml version="1.0" encoding="UTF-8"?>
<scheduleDescription xmlns="urn:3gpp:metadata:2011:MBMS:scheduleDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3gpp:metadata:2011:MBMS:scheduleDescription TS26346_ScheduleDescription.xsd"
 scheduleUpdate="2012-02-07T00:00:00Z" version="764">
 <sv:schemaVersion>3</sv:schemaVersion>
 <serviceSchedule>
  <sessionSchedule>
   <start>2012-03-07T23:00:00Z</start>
   <stop>2012-03-07T23:30:00Z</stop>
   <reoccurencePattern>daily</reoccurencePattern>
   <reoccurenceStopTime>2012-03-14T00:00:00Z</reoccurenceStopTime>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </sessionSchedule>
  <fileSchedule>
   <fileURI>file://fota.operator.com/swupdate/oem-1/model-1/image032212.apk</fileURI>
   <deliveryInfo start="2012-03-07T23:00:00Z" end="2012-03-07T23:10:00Z"/>
   <sv:delimiter>0</sv:delimiter>
  </fileSchedule>
  <fileSchedule>
   <fileURI>file://fota.operator.com/swupdate/oem-1/model-2/image098798.apk</fileURI>
   <deliveryInfo start="2012-03-07T23:10:00Z" end="2012-03-07T23:20:00Z"/>
   <sv:delimiter>0</sv:delimiter>
  </fileSchedule>
  <fileSchedule>
   <fileURI>file://fota.operator.com/swupdate/oem-1/model-3/image765987.apk</fileURI>
   <deliveryInfo start="2012-03-07T23:20:00Z" end="2012-03-07T23:30:00Z"/>
   <sv:delimiter>0</sv:delimiter>
  </fileSchedule>
 </serviceSchedule>
</scheduleDescription>
Up

11.2A.3.3  Example 3 |R19|p. 180

In this instantiation example, the following key points can be noted:
  • The version of the schema used to generate this instantiation is version 3, as indicated by the schemaVersion element. Thus a receiver of this instantiation that has multiple schedule schema versions (say 1, 2, 3 and 4), should use the schedule schema version equals to 3, as indicated in the version attribute of the schema instruction "schema". A receiver that has only older versions (version 1 and/or 2 in this case) of the schedule schema should use the schema that has the highest version number for validating the instantiation, but extensions made in higher versions of the schema will be ignored by the receiver. The receiver should avoid using schema version higher than 3, since the instantiation would fail verification against such schema version. The scheduleUpdate element indicates UTC time February 1st at time 00 hour 00 min 00 sec. Thus, an MBMS UE should seek to update the schedule instance after this time.
  • There is one serviceSchedule element, which includes:
    • a sessionSchedule that
      • Has a first occurrence that starts at UTC March 1st 2012 23:00:00 and ends at UTC March 1st 2012 23:30:00;
      • Has subsequent occurrences every day at the same time until UTC March 7th 2012 00:00:00
<?xml version="1.0" encoding="UTF-8"?>
<scheduleDescription xmlns="urn:3gpp:metadata:2011:MBMS:scheduleDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 xsi:schemaLocation="urn:3gpp:metadata:2011:MBMS:scheduleDescription TS26346_ScheduleDescription.xsd"
 scheduleUpdate="2012-02-01T00:00:00Z">
 <sv:schemaVersion>3</sv:schemaVersion>
 <serviceSchedule>
  <sessionSchedule>
   <start>2012-03-01T23:00:00Z</start>
   <stop>2012-03-01T23:30:00Z</stop>
   <reoccurencePattern>daily</reoccurencePattern>
   <reoccurenceStopTime>2012-03-07T00:00:00Z</reoccurenceStopTime>
   <sv:delimiter>0</sv:delimiter>
   <sv:delimiter>0</sv:delimiter>
  </sessionSchedule>
 </serviceSchedule>
</scheduleDescription>
Up

11.2B  Filter Description metadata fragment |R11|p. 181

11.2B.1  Introductionp. 181

This clause describes the procedures, usage and XML schema of the Filter Description metadata fragment.
The procedures associated with the elements of the Filter Description metadata fragment are specified in clause 11.2B.2.
The basic building block of a location filter is referred to as the location rule. Multiple location rules or constituent location filters built from these rules can be combined by using logical relationships (AND, OR, NOT) and recursion to form the overall, composite location filter. Such usage and semantics are described in clause 11.2B.3.
The group filter usage and semantics are described in clause 11.2B.3A.
The XML schema for the Filter Description Metadata Fragment is specified in clause 11.2B.4.
The UE may support the Filter Description fragment, and it may support the location filter data carried in this fragment.
Up

11.2B.2  Procedures for Filter Description metadata fragmentp. 181

A Filter Description metadata fragment instance may be delivered to the MBMS Client:
  • during MBMS User Service Discovery/Announcement prior to the MBMS download session along with the session description (out-of-band of that session); or
  • in-band within a MBMS download session; or
  • via an MBMS download session dedicated to the transport of filter metadata information.
The most recently delivered Filter Description instance (i.e. the one with the highest version number - as given in the MBMS Metadata Envelope specified in clause 11.1.3) shall take the highest priority, such that filter data parameters received prior to, and out-of-band, of the download session they apply to are regarded as "initial defaults", and filter data parameters received in-band with the download session overwrite the earlier received filter data parameters.
The Filter Description instance is clearly identified using a URI to enable UE cross-referencing of in and out-of-band filter data files.
The Media Type for the filter data information is "application/mbms-filter description+xml"
Availability of the Filter Description fragment is indicated by the presence of the receptionFiltering element in the Schedule Description fragment, as child element of either the sessionSchedule or the fileSchedule element. Each filterData element is identified by its id attribute, which enables cross-referencing with the filterID attribute in the Schedule Description fragment.
Up

11.2B.3  Usage of location filterp. 182

The overall location filter, representing the filtering criteria for positive reception of an associated location-specific content item or service, is expressed by the contents of the complex element locationFilter whose syntax is specified by the schema of the Filter Description fragment in clause 11.2B.4. The fundamental component or "atomic" building block of the location filter is the child element locationRule. It may be combined, via the element logicalOperation along with the use of recursion, with additional location rules and/or intermediate location filters to form the composite location filter. From the schema in clause 11.2B.4, possible decompositions of the location filter are as follows:
  1. LF = locationFilter = locationFilter1 = LF1;
  2. "  = locationFilter2 = LF2;
  3. "  = locationRule = LR;
  4. "  = locationFilter1 logicalOperation locationRule = LF1 LO LR;
  5. "  = locationFilter1 logicalOperation locationFilter2 = LF1 LO LF2;
  6. "  = logicalOperation locationFilter2 = LO LF2;
The string value of logicalOperation (abbreviated as LO in the above) may correspond to the binary operator 'AND' or 'OR', or the unary operator 'NOT'. In the decomposition of (f), the only allowed value for this element is 'NOT'.
The basic location rule, defined by the element locationRule, comprises one or more target areas for which the required presence may additionally be associated with temporal and confidence level criteria. Each target area, represented by the child element targetArea, shall in turn comprise one or more cell-IDs and/or one or more shapes, the latter parameter defined by OMA MLP [109]. Permitted shapes in this version of the present document are 'Polygon' and 'CircularArea' as defined by [109].
If present, temporal parameters shall include the elements startTime and endTime, and optionally the element duration. Presence of only startTime and endTime is an indication that reception of the associated content item or service is conditioned by the location of the UE in any one of the instantiated target areas for the entire interval given by the difference between the start and end time values. Additional presence of duration means that UE presence in the target area is only required for the interval given by the value of this element, with duration < (endTime - startTime).
In addition to temporal criteria, targeted reception of the content or service may be further conditioned by a minimum required level of confidence from the UE's perspective, and given by the element confidenceLevel, that the location of the UE fulfils both the associated target area and time criteria. In the event that the filter criterion corresponds to the present/current UE location in a target area defined strictly by cell-ID(s), both the time and confidence level parameters shall be absent. Defining targeted reception of a content or service by multiple time intervals requires multiple instances of locationRule in the composite location filter, since a single location rule can only be associated with a single temporal criterion.
The evaluation of whether an instance of location filtering criteria is satisfied is a device-internal mechanism and implementation-specific issue outside the scope of the present document.
Up

11.2B.3A  Usage of group filter |R12|p. 182

The group filter may be included as part of the filter description metadata fragment. The syntax of the group filter is specified by the schema of the Filter Description fragment in clause 11.2B.4.
The group filter is composed of groupID elements: each groupFilter element is instantiated with a list of string identifiers classifying the targeted groups as groupID elements. Multiple instantiations of this element may be used to classify content targeted to different groups and could be mapped to various types of target group information, e.g., social group, age group, gender, profession, ethnic group, etc. An MBMS Client may selectively receive contents with the group filter values known to match the profile of the user.
Up

11.2B.4  Extended Filter Description metadata fragment syntaxp. 183

The formal XML syntax of the Filter Description metadata fragment is specified in Listing 11.2B.4-1 below, containing location filtering data as represented by the element locationFilter and grouping data as represented by the element groupFilter. Documents following this schema can be identified with the MIME media type "application/mbms-filter-description+xml" defined in clause C.15. The filename of the XML schema for Filter Description is "TS26346_FilterDescription.xsd".
In this version of the present document the network shall set the content of the schemaVersion element, defined as a child of the filterDescription element, to the value 2.
The schema version attribute (part of the schema instruction) shall be included in the UE schema and the network schema.
When a UE receives an instantiation of a Filter Description compliant to this schema, it shall determine the schema version required to parse the instantiation as follows:
  • If the UE supports one or more versions of the Filter Description schema with the schema version attribute, then the UE shall use the schema that has the highest schema version attribute value that is equal to or less than the value in the received schemaVersion element;
The schema filename of the Filter Description schema is FilterDescription.xsd. The XML schema "schema-version.xsd" is specified in clause J.2.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3gpp:metadata:2011:MBMS:filterDescription" version="2"
 xmlns="urn:3gpp:metadata:2011:MBMS:filterDescription"
 xmlns:r12="urn:3gpp:metadata:2013:MBMS:filterDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 xmlns:sv="urn:3gpp:metadata:2009:MBMS:schemaVersion"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>Extended MBMS Filter Description schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2B.4</xs:documentation>
  <xs:documentation>Copyright © 2013, 3GPP Organizational Partners
   (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:import schemaLocation="TS26346_FilterDescription_Extensions_Rel-12.xsd"
namespace="urn:3gpp:metadata:2013:MBMS:filterDescription"/>
 <xs:import schemaLocation="TS26346_SchemaVersion.xsd"
namespace="urn:3gpp:metadata:2009:MBMS:schemaVersion"/>
 <xs:element name="filterDescription" type="filterDescriptionType"/>
 <xs:complexType name="filterDescriptionType">
  <xs:sequence>
   <xs:element ref="sv:schemaVersion"/>
   <xs:element name="filterData" maxOccurs="unbounded">
    <xs:complexType>
     <xs:sequence>
      <xs:element name="locationFilter" type="locationFilterType" minOccurs="0"/>
      <xs:element ref="r12:groupFilter" minOccurs="0"/>
      <xs:element ref="sv:delimiter"/>
      <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
     </xs:sequence>
     <xs:attribute name="id" type="xs:anyURI" use="required"/>
    </xs:complexType>
   </xs:element>
  </xs:sequence>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:complexType name="locationFilterType">
  <xs:sequence>
   <xs:element name="locationFilter1" type="locationFilterType" minOccurs="0"/>
   <xs:element name="logicalOperation" minOccurs="0">
    <xs:simpleType>
     <xs:restriction base="xs:string">
     <xs:enumeration value="AND"/>
      <xs:enumeration value="OR"/>
      <xs:enumeration value="NOT"/>
     </xs:restriction>
    </xs:simpleType>
   </xs:element>
   <xs:choice>
    <xs:element name="locationRule" minOccurs="0">
     <xs:complexType>
      <xs:sequence>
       <xs:element name="targetArea" maxOccurs="unbounded">
        <xs:complexType>
         <xs:sequence>
          <xs:element name="cellID" type="xs:unsignedLong" minOccurs="0" maxOccurs="unbounded"/>
          <xs:element name="shape" minOccurs="0">
           <xs:complexType>
            <xs:sequence>
             <xs:element name="Polygon" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
               <xs:documentation>See [OMA MLP].</xs:documentation>
              </xs:annotation>
             </xs:element>
             <xs:element name="CircularArea" minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
               <xs:documentation>See [OMA MLP].</xs:documentation>
              </xs:annotation>
             </xs:element>
             <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
            </xs:sequence>
           </xs:complexType>
          </xs:element>
          <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
         </xs:sequence>
        </xs:complexType>
       </xs:element>
       <xs:element name="startTime" type="xs:unsignedInt" minOccurs="0"/>
       <xs:element name="endTime" type="xs:unsignedInt" minOccurs="0"/>
       <xs:element name="duration" type="xs:unsignedInt" minOccurs="0"/>
       <xs:element name="confidenceLevel" minOccurs="0">
        <xs:simpleType>
         <xs:restriction base="xs:decimal">
          <xs:minInclusive value="0"/>
          <xs:maxInclusive value="1"/>
         </xs:restriction>
        </xs:simpleType>
       </xs:element>
      </xs:sequence>
     </xs:complexType>
    </xs:element>
    <xs:element name="locationFilter2" type="locationFilterType" minOccurs="0"/>
   </xs:choice>
  </xs:sequence>
 </xs:complexType>
 <xs:complexType name="locationRuleType">
  <xs:sequence>
   <xs:element name="targetArea" type="targetAreaType" maxOccurs="unbounded"/>
   <xs:element name="startTime" type="xs:unsignedInt" minOccurs="0"/>
   <xs:element name="endTime" type="xs:unsignedInt" minOccurs="0"/>
   <xs:element name="duration" type="xs:unsignedInt" minOccurs="0"/>
   <xs:element name="confidenceLevel" minOccurs="0">
    <xs:simpleType>
     <xs:restriction base="xs:decimal">
      <xs:minInclusive value="0"/>
      <xs:maxInclusive value="1"/>
     </xs:restriction>
    </xs:simpleType>
   </xs:element>
  </xs:sequence>
 </xs:complexType>
 <xs:complexType name="targetAreaType">
  <xs:sequence>
   <xs:element name="cellID" type="xs:unsignedLong" minOccurs="0" maxOccurs="unbounded"/>
   <xs:element name="shape">
    <xs:complexType>
     <xs:sequence>
      <xs:element name="Polygon" minOccurs="0" maxOccurs="unbounded">
       <xs:annotation>
        <xs:documentation>See [OMA MLP].</xs:documentation>
       </xs:annotation>
      </xs:element>
      <xs:element name="CircularArea" minOccurs="0" maxOccurs="unbounded">
       <xs:annotation>
        <xs:documentation>See [OMA MLP].</xs:documentation>
       </xs:annotation>
      </xs:element>
     </xs:sequence>
    </xs:complexType>
   </xs:element>
  </xs:sequence>
 </xs:complexType>
</xs:schema>
The following schema is the Release 12 extension to the Filter Description schema. The schema filename is "TS26346_FilterDescription_Extensions_Rel-12.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3gpp:metadata:2013:MBMS:filterDescription"
 xmlns="urn:3gpp:metadata:2013:MBMS:filterDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS Filter Description schema extensions (Release 12)</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.2B.4</xs:documentation>
  <xs:documentation>Copyright © 2013, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="groupFilter" type="groupFilterType"/>
 <xs:complexType name="groupFilterType">
  <xs:sequence>
   <xs:element name="groupID" type="xs:string" maxOccurs="unbounded"/>
  </xs:sequence>
 </xs:complexType>
</xs:schema>
Up

11.3  Security Description metadata fragmentp. 185

11.3.1  Security Description metadata fragment syntaxp. 185

The Security Description fragment is referenced by the protectionDescriptionURI of a deliveryMethod element. The Security Description fragment shall be identified by the MIME media type "application/mbms protection-description+xml" as defined in clause C.6.
The root element of Security Description is the securityDescription element. It contains three different elements, the keyId element identities the key(s) for each media flow, the keyManagement element the key management servers that the load is distributed over and the parameters in use, and the fecProtection element that configures the FEC protection of the point to multi-point distributed key flows.
The keyManagement element defines the list of key management servers (i.e. BM-SC). The MBMS UE must register with a key management server to receive key material. A receiver shall select a key management server following the same procedure defined for selecting a file repair server defined in clause 9.3.5.
The attribute uiccKeyManagement defines whether UICC based key management is required for the present MBMS User Service.
The offsetTime and randomTimePeriod attributes define the back off behavior of the UE when requesting MSKs. This uses the procedure defined in clause 9.3.4 where offsetTime specifies the offset time defined in clause 9.3.4.1 and randomTimePeriod the length of the random window in accordance with clause 9.3.4.2. The units for both attributes are in seconds.
The element keyId contains a list of media flows for which keys are required. For each media flow a key identifier is provided in addition to that media flows additional security parameters. The media flow is identified by a destination tuple providing an address followed by a port number separated by a "/", i.e. <IP-destination-address>/<destination-port>. The port number is for RTP session the RTP port number, and not RTCP's. The MSK element identifies the key uniquely by specifying both the keyDomainID and the MSKID as defined in clause 6.3.2.1 of TS 33.246. The MSKID is 4 bytes long binary with byte 3 and 4 equal to 0x00, i.e. the current key that are Base64 (RFC 4648) when written into the element. The keyDomainID is a 3 byte long binary value as specified in clause 6.3.2.1 of TS 33.246 and shall also be base64 encoded when written in the XML document.
The presence of the fecProtection element indicates that any MIKEY packet with a multicast destination IP address equal to any of the used destination address in the userServiceDescription instance's delivery methods, are FEC protected and encapsulated in FEC source packets, see clause 8.2.2.4. The attributes fecEncodingId, fecInstanceID, and fecOtiExtension specify the FEC payload ID used in the source packet. All Security Description instances referenced by a User Service Bundle Description instance shall use the same FEC parameters.
The Security Description schema is specified in Listing 11.3.1-1 below. The filename of this schema is "TS26346_securityDescription.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2005:MBMS:securityDescription"
 xmlns="urn:3GPP:metadata:2005:MBMS:securityDescription"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified">
 <xs:annotation>
  <xs:documentation>MBMS Security Description schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.3.1</xs:documentation>
  <xs:documentation>Copyright © 2005, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="securityDescription" type="securityDescriptionType"/>
 <xs:complexType name="securityDescriptionType">
  <xs:sequence>
   <xs:element name="keyManagement" type="keyManagementType" minOccurs="0"/>
   <xs:element name="keyId" type="keyIdType" maxOccurs="unbounded"/>
   <xs:element name="fecProtection" type="fecProtectionType" minOccurs="0"/>
   <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
  </xs:sequence>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:complexType name="keyManagementType">
  <xs:sequence>
   <xs:element name="serverURI" type="xs:anyURI" maxOccurs="unbounded"/>
   <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
  </xs:sequence>
  <xs:attribute name="offsetTime" type="xs:unsignedLong" use="optional" default="0"/>
  <xs:attribute name="randomTimePeriod" type="xs:unsignedLong" use="optional" default="0"/>
  <xs:attribute name="uiccKeyManagement" type="xs:boolean" use="optional" default="true"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:complexType name="keyIdType">
  <xs:sequence>
   <xs:element name="mediaFlow" maxOccurs="unbounded">
    <xs:complexType>
     <xs:sequence>
      <xs:element name="MSK" type="MSKType" maxOccurs="1"/>
     </xs:sequence>
     <xs:attribute name="flowID" type="xs:string" use="required"/>
     <xs:anyAttribute processContents="skip"/>
    </xs:complexType>
   </xs:element>
  </xs:sequence>
 </xs:complexType>
 <xs:complexType name="fecProtectionType">
  <xs:attribute name="fecEncodingId" type="xs:unsignedLong" use="optional" default="0"/>
  <xs:attribute name="fecInstanceId" type="xs:unsignedLong" use="optional"/>
  <xs:attribute name="fecOtiExtension" type="xs:string" use="optional"/>
  <xs:anyAttribute processContents="skip"/>
 </xs:complexType>
 <xs:complexType name="MSKType">
  <xs:sequence>
   <xs:element name="keyDomainID" type="xs:base64Binary" minOccurs="1" maxOccurs="1"/>
   <xs:element name="MSKID" type="MSKIDType" minOccurs="1" maxOccurs="1"/> 
  </xs:sequence>
 </xs:complexType>
 <xs:simpleType name="MSKIDType">
  <xs:restriction base="xs:base64Binary">
   <xs:length value="4"/>
  </xs:restriction>
 </xs:simpleType>
</xs:schema>
Up

11.3.2  Security Description examplep. 187

<?xml version="1.0" encoding="UTF-8"?>
<securityDescription xmlns="urn:3GPP:metadata:2005:MBMS:securityDescription"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:securityDescription TS26346_SecurityDescription.xsd">
 <keyManagement offsetTime="5" randomTimePeriod="10" uiccKeyManagement="true">
  <serverURI>http://register.operator.umts/</serverURI>
  <serverURI>http://register2.operator.umts/</serverURI>
 </keyManagement>
 <keyId>
  <mediaFlow flowID="224.1.2.3/4002">
   <MSK>
    <keyDomainID>aMoM</keyDomainID>
    <MSKID>aMoAAA==</MSKID>
   </MSK>
  </mediaFlow>
  <mediaFlow flowID="224.1.2.3/4004">
   <MSK>
    <keyDomainID>GM8M</keyDomainID>
    <MSKID>aMkAAA==</MSKID>
   </MSK>
  </mediaFlow>
 </keyId>
 <fecProtection fecEncodingId="1" fecInstanceId="0" fecOtiExtension="1SCxWEMNe397m24SwgyRhg=="/>
</securityDescription>
Up

11.4  Service Protection Registration requestp. 188

11.4.1  Service Protection Registration request syntaxp. 188

The XML schema specified in Listing 11.4.1-1 below defines a format used by the MBMS Client to register with the key management servers according to the procedure in TS 33.246. The MIME media type for this format is defined in clause C.9. The serviceID element identifies the service uniquely and is the same as the serviceId used in the userServiceDescription format defined in clause 11.2.1.
The filename of the Service Protection Registration schema is "TS26346_ServiceProtectionRegistrationRequest.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2005:MBMS:securityRegistration"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified" attributeFormDefault="unqualified">
 <xs:annotation>
  <xs:documentation>MBMS Service Protection Registration request schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.4.1</xs:documentation>
  <xs:documentation>Copyright © 2005, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="mbmsSecurityRegister">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="serviceID" type="xs:anyURI" maxOccurs="unbounded" minOccurs="1"/>
     <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
   </xs:sequence>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
 </xs:element>
</xs:schema>
Up

11.4.2  Service Protection Registration request examplep. 188

The below example is used to register to a service identified by the serviceID "urn:3gpp:mbms:example:serivce:identification:123456789abcdef".
<?xml version="1.0" encoding="UTF-8"?>
<mbmsSecurityRegister xmlns="urn:3GPP:metadata:2005:MBMS:securityRegistration"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:securityRegistration TS26346_ServiceProtectionRegistrationRequest.xsd">
 <serviceID>urn:3gpp:mbms:example:serivce:identification:123456789abcdef</serviceID>
</mbmsSecurityRegister>
Up

11.5  Service Protection Deregistration requestp. 188

11.5.1  Service Protection Deregistration request syntaxp. 188

This format is used to de-register from the key management server(s) according to the procedure in TS 33.246. The MIME media type for this format is defined in clause C.10. The serviceID element is defined exactly as in clause 11.4.1.
The filename of the Service Protection Deregistration is "TS26346_ServiceProtectionDeregistrationRequest.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2005:MBMS:securityDeregistration"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified" attributeFormDefault="unqualified">
 <xs:annotation>
  <xs:documentation>MBMS Service Protection Deregistration request schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.5.1</xs:documentation>
  <xs:documentation>Copyright © 2005, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="mbmsSecurityDeregister">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="serviceID" type="xs:anyURI" maxOccurs="unbounded" minOccurs="1"/>
    <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
   </xs:sequence>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
 </xs:element>
</xs:schema>
Up

11.5.2  Service Protection Deregistration request examplep. 189

The below example is used to deregister from the services identified by the serviceID "urn:3gpp:mbms:example:serivce:identification:123456789abcdef".
<?xml version="1.0" encoding="UTF-8"?>
<mbmsSecurityDeregister xmlns="urn:3GPP:metadata:2005:MBMS:securityDeregistration"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:securityDeregistration TS26346_ServiceProtectionDeregistrationRequest.xsd">
 <serviceID>urn:3gpp:mbms:example:serivce:identification:123456789abcdef</serviceID>
</mbmsSecurityDeregister>
Up

11.6  Service Protection MSK requestp. 189

11.6.1  Service Protection MSK request syntaxp. 189

This format is used to request from the key management server(s) the delivery of one or more MSK identities as defined in clause 11.3.1. The MIME media type for this format is defined in clause C.8.
The filename of the Service Protection MSK request schema is "TS26346_ServiceProtectionMSKRequest.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2005:MBMS:mskRequest"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 xmlns="urn:3GPP:metadata:2005:MBMS:mskRequest"
 elementFormDefault="qualified" attributeFormDefault="unqualified">
 <xs:annotation>
  <xs:documentation>MBMS Service Protection MSK request schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.6.1</xs:documentation>
  <xs:documentation>Copyright © 2005, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="mbmsMSKRequest">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="MSK" type="MSKType" minOccurs="1" maxOccurs="unbounded"/>
   </xs:sequence>
   <xs:anyAttribute processContents="skip"/>
  </xs:complexType>
  </xs:element>
 <xs:complexType name="MSKType">
  <xs:sequence>
   <xs:element name="keyDomainID" type="xs:base64Binary" minOccurs="1" maxOccurs="1"/>
   <xs:element name="MSKID" type="MSKIDType" minOccurs="1" maxOccurs="1"/> 
  </xs:sequence>
 </xs:complexType>
 <xs:simpleType name="MSKIDType">
  <xs:restriction base="xs:base64Binary">
   <xs:length value="4"/>
  </xs:restriction>
 </xs:simpleType>
</xs:schema>
Up

11.6.2  Service Protection MSK request examplep. 190

The below example is used to request a single MSK with keyDomainID "uHCd" and a MSK ID part "aMkAAA==".
<?xml version="1.0" encoding="UTF-8"?>
<mbmsMSKRequest xmlns="urn:3GPP:metadata:2005:MBMS:mskRequest"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:mskRequest TS26346_ServiceProtectionMSKRequest.xsd">
 <MSK>
  <keyDomainID>uHCd</keyDomainID>
  <MSKID>aMkAAA==</MSKID>
 </MSK>
</mbmsMSKRequest>
Up

11.7  Service Protection Registration/Deregistration responsep. 190

11.7.1  Service Protection Registration/Deregistration response syntaxp. 190

This format is used in the response of the key management server(s) to a Service Protection Registration message (see clause 11.4) or Deregistration message (see clause 11.5). The format of the response codes is defined in TS 33.246. The MIME media type for this format is defined in appendix C.13.
The filename of the Service Protection Registration and Deregistration response schema is "TS26346_ServiceProtectionRegistrationResponse.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2005:MBMS:securityRegistrationResponse"
 xmlns="urn:3GPP:metadata:2005:MBMS:securityRegistrationResponse"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified" attributeFormDefault="unqualified">
 <xs:annotation>
  <xs:documentation>MBMS Service Protection Registration/Deregistration response schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.7.1</xs:documentation>
  <xs:documentation>Copyright © 2005, 3GPP Organizational Partners 
  ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="mbmsSecurityRegisterResponse">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="Response" type="ResponseType" maxOccurs="unbounded"/>
    <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
 <xs:complexType name="ResponseType">
  <xs:sequence>
   <xs:element name="serviceID" type="xs:anyURI"/>
   <xs:element name="ResponseCode" type="xs:string"/>
   <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  </xs:sequence>
 </xs:complexType>
</xs:schema>
Up

11.7.2  Service Protection Registration/Deregistration response examplep. 191

<?xml version="1.0" encoding="UTF-8"?>
<mbmsSecurityRegisterResponse xmlns="urn:3GPP:metadata:2005:MBMS:securityRegistrationResponse"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:securityRegistrationResponse TS26346_ServiceProtectionRegistrationResponse.xsd">
 <Response>
  <serviceID>urn:3gpp:mbms:example:service:identification:123456789abcdef</serviceID>
  <ResponseCode>200 OK</ResponseCode>
 </Response>
 <Response>
  <serviceID>urn:3gpp:mbms:example:service:identification:fedcba987654321</serviceID>
  <ResponseCode>200 OK</ResponseCode>
 </Response>
</mbmsSecurityRegisterResponse>
Up

11.8  Service Protection MSK responsep. 191

11.8.1  Service Protection MSK response syntaxp. 191

This format is used in the response of the key management server(s) to an MSK Request message (see clause 11.6). The format of the response codes are defined in TS 33.246. The MIME media type for this format is defined in clause C.12.
The filename of the Service Protection MSK response schema is "TS26346_SecurityProtectionMSKResponse.xsd".
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:3GPP:metadata:2005:MBMS:mskResponse"
 xmlns="urn:3GPP:metadata:2005:MBMS:mskResponse"
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 elementFormDefault="qualified" attributeFormDefault="unqualified">
 <xs:annotation>
  <xs:documentation>MBMS Service Protection MSK response schema</xs:documentation>
  <xs:documentation>3GPP TS 26.346 clause 11.8.1</xs:documentation>
  <xs:documentation>Copyright © 2005, 3GPP Organizational Partners
  (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.</xs:documentation>
 </xs:annotation>
 <xs:element name="mbmsMSKResponse">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="Response" type="ResponseType" maxOccurs="unbounded"/>
    <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
   </xs:sequence>
  </xs:complexType>
 </xs:element>
 <xs:complexType name="MSKType">
  <xs:sequence>
   <xs:element name="keyDomainID" type="xs:base64Binary"/>
   <xs:element name="MSKID" type="MSKIDType"/>
  </xs:sequence>
 </xs:complexType>
 <xs:simpleType name="MSKIDType">
  <xs:restriction base="xs:base64Binary">
   <xs:length value="4"/>
  </xs:restriction>
 </xs:simpleType>
 <xs:complexType name="ResponseType">
  <xs:sequence>
   <xs:element name="MSK" type="MSKType"/>
   <xs:element name="ResponseCode" type="xs:string"/>
   <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  </xs:sequence>
 </xs:complexType>
</xs:schema>
Up

11.8.2  Service Protection MSK response examplep. 192

<?xml version="1.0" encoding="UTF-8"?>
<mbmsMSKResponse xmlns="urn:3GPP:metadata:2005:MBMS:mskResponse"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="urn:3GPP:metadata:2005:MBMS:mskResponse TS26346_ServiceProtectionMSKResponse.xsd">
 <Response>
  <MSK>
   <keyDomainID>uHCd</keyDomainID>
   <MSKID>aMkAAA==</MSKID>
  </MSK>
  <ResponseCode>200 OK</ResponseCode>
 </Response>
 <Response>
  <MSK>
   <keyDomainID>uHCd</keyDomainID>
   <MSKID>JMtEAA==</MSKID>
  </MSK>
  <ResponseCode>200 OK</ResponseCode>
 </Response>
</mbmsMSKResponse>
Up

11.9  MBMS feature requirementsp. 192

MBMS features enable the BM-SC to signal to the UE the set of capabilities that are required for the consumption of the MBMS user service. The required capability list is indicated in the MBMS User Service Description of the corresponding MBMS user service as defined in clause 11.2.1.
The MBMS UE shall not attempt to receive the service if it detects that at least one required capability, indicated in the USD, is not supported or not understood. The introduction of new features is possible and assumes that unidentified features shall be interpreted by the UE as a requirement that cannot be fulfilled.
The list of features is defined in Table 11.9-1.
Service Capability References Recognized Feature Values (Integer)
Speechas defined in clause 10.20
AMR-WBas defined in clause 10.21
Enhanced aacPlusas defined in clause 10.32
Extended AMR-WBas defined in clause 10.33
Synthetic audioas defined in clause 10.44
H.263as mentioned in clause 10.55
H.264 Constrained Baseline Profile Level 1bas defined in clause 10.5 (of Release 10)6
Still imagesas defined in clause 10.67
Bitmap graphicsas defined in clause 10.78
Vector graphicsas defined in clause 10.89
Textas defined in clause 10.910
Timed textas defined in clause 10.1011
3GPP file formatas defined in clause 10.1112
H.264 Constrained Baseline Profile Level 1.2as defined in clause 10.5 (of Release 7)13
Scene Descriptionas defined in clause 10.1214
MBSFN mode in UTRANas defined in TS 25.346 (of Release 7)15
H.264 Constrained Baseline Profile Level 1.3as defined in clause 10.5 (of Release 9)16
AHSas defined in clause 5.6 (of Release 9)17
3GP-DASHas defined in clause 5.6 (of Release 10)18
H.264 Progressive High Profile Level 3.1as defined in clause 10.5 (of Release 11)19
Frame-packed stereoscopic 3D videoas defined in clause 10.5 (of Release 11)20
H.265 (HEVC) Main Profile, Main Tier, Level 3.1as defined in clause 10.5 (of Release 12)21
MBMS User Service Discovery/Announcement Profile 1aService capabilities as defined in clause L.222
MBMS User Service Discovery/Announcement Profile 1bService capabilities as defined in clause L.323
MBMS User Service Discovery / Announcement Profile for Transparent deliveryService capabilities as defined in clause L.524
Virtual RealityService capabilities as defined in clause 10.1325
Profile 1cService capabilities as defined in clause L.3A26
Service for LTE-based 5G Broadcast Base Receiver (see NOTE 1) Service capability as defined in ETSI TS 103 720 [148], clause 10.2.27
Service for LTE-based 5G Broadcast Main Receiver (see NOTE 1) Service capability as defined in ETSI TS 103 720 [148], clause 10.3.28
5GMSd serviceGeneric Application Service as defined in clause 5.7 for which formats conform to 5G Media Streaming M4d formats according to TS 26.511 and TS 26.512.29
Service for 5GMS via LTE-based 5G Broadcast Receiver (see NOTE 1) Service capability as defined in ETSI TS 103 720 [148], clause 10.4.30
NOTE 1:
"LTE-based 5G Broadcast" refers to TR 36.976 "Overall description of LTE-based 5G broadcast".
The list of features may be extended in the future.
Up

Up   Top   ToC