<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.isan.org/schema/v1.11/common/version" xmlns:isan="http://www.isan.org/ISAN/isan"
    xmlns:common="http://www.isan.org/schema/v1.11/common/common"
    xmlns:title="http://www.isan.org/schema/v1.11/common/title"
    xmlns:language="http://www.isan.org/schema/v1.11/common/language"
    xmlns:externalid="http://www.isan.org/schema/v1.11/common/externalid"
    xmlns:country="http://www.isan.org/schema/v1.11/common/country"
    targetNamespace="http://www.isan.org/schema/v1.11/common/version" elementFormDefault="qualified"
    version="1.1">

    <xs:import namespace="http://www.w3.org/XML/1998/namespace"
        schemaLocation="http://www.w3.org/2001/XML.xsd"/>
    
    <xs:import namespace="http://www.isan.org/schema/v1.11/common/common"
        schemaLocation="http://www.isan.org/schema/v1.11/common/common.xsd"/>
    
    <xs:import namespace="http://www.isan.org/ISAN/isan"
    schemaLocation="http://www.isan.org/ISAN/isan.xsd"/>
    
    <xs:import namespace="http://www.isan.org/schema/v1.11/common/title"
    schemaLocation="http://www.isan.org/schema/v1.11/common/title.xsd"/>

    <xs:import namespace="http://www.isan.org/schema/v1.11/common/language"
        schemaLocation="http://www.isan.org/schema/v1.11/common/language.xsd"/>

    <xs:import namespace="http://www.isan.org/schema/v1.11/common/externalid"
    schemaLocation="http://www.isan.org/schema/v1.11/common/externalid.xsd"/>
    
    <xs:import namespace="http://www.isan.org/schema/v1.11/common/country"
    schemaLocation="http://www.isan.org/schema/v1.11/common/country.xsd"/>
    
    <xs:element name="V-ISAN"  type="isan:isanType" /> 
  
    
    <xs:complexType name="VersionsType">
        <xs:sequence>
            <xs:annotation>
                <xs:documentation xml:lang="EN"> The VersionType element contains all the metadata
                    to define a V-ISAN work, relevant for V-ISAN registration or presentation
                </xs:documentation>
            </xs:annotation>
            <xs:element name="Version" type="VersionType" maxOccurs="unbounded"/>
        </xs:sequence>
    </xs:complexType>
    
    
     <xs:complexType name="VersionType">
        <xs:complexContent>
            <xs:extension base="common:ISANDataType">
                <xs:sequence>                   
                    <xs:element name="V-ISAN"  type="isan:isanType" minOccurs="0"/> 
                    <xs:element name="ParentWork"  type="isan:isanType" />
                    <xs:element name="ParentVersion" type="isan:isanType" minOccurs="0"/>
                    <xs:element name="Relations" type="Relations"  />
                    <xs:element name="DescriptiveName" type="Description" minOccurs="0"/>
                    <xs:element name="Titles" type="title:TitleListType"/>                    
                    <xs:element name="RunningTime" type="common:DurationType"/>
                    <xs:element name="ReferenceDate" type="xs:dateTime"/>  
                    <xs:element name="SpokenLanguages" type="language:OriginalLanguageListType" minOccurs="0"/>
                    <xs:element name="WrittenLanguages" type="language:OriginalLanguageListType" minOccurs="0"/>
                    <xs:element name="SubtitleLanguages" type="language:OriginalLanguageListType" minOccurs="0"/>
                    <xs:element name="ColorFormat" type="common:ColorType" minOccurs="0"/>
                    <xs:element name="ImageDimension" type="ImageDimension"/>
                    <xs:element name="ImageDefinition" type="ImageDefinition" minOccurs="0"/>
                    <xs:element name="ImageAspectRatio" type="ImageAspectRatio" minOccurs="0"/>
                    <xs:element name="DistributionCountries" type="country:CountryListType"  minOccurs="0"/>
                    <xs:element name="DistributionChannel" type="DistributionChannel"  minOccurs="0"/>
                    <xs:element name="DistributionPlatform" type="DistributionPlatform"  minOccurs="0"/>
                    <xs:element name="MediaFixation" type="MediaFixation" minOccurs="0"/>
                    <xs:element name="ContainerFormat" type="ContainerFormat" minOccurs="0"/>
                    <xs:element name="Ratings" type="Ratings"  minOccurs="0"/>
                    <xs:element name="ContentAlerts" type="ContentAlerts"  minOccurs="0"/>
                    <xs:element name="AdditionalInformation" type="Information" minOccurs="0"/>
                    <xs:element name="ExternalIds" type="externalid:ExternalIdListType"  minOccurs="0"/>   
                    <xs:element name="Composites" type="isan:ISANListType" minOccurs="0"/>
                </xs:sequence>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
    
    <xs:simpleType name="Description">
        <xs:restriction base="xs:string">
            <xs:maxLength value="200"/>
        </xs:restriction>
    </xs:simpleType>
    
    <xs:simpleType name="Information">
        <xs:restriction base="xs:string">
            <xs:maxLength value="1000"/>
        </xs:restriction>
    </xs:simpleType>
    
    <xs:complexType name="Relations">
        <xs:sequence>
            <xs:annotation>
                <xs:documentation xml:lang="EN"> </xs:documentation>
            </xs:annotation>
            <xs:element name="Relation" type="Relation" maxOccurs="unbounded"/>
        </xs:sequence>
    </xs:complexType>
    
    <xs:complexType name="Relation"> 
            <xs:sequence>
                <xs:element name="VersionKind" type="VersionKind" />
                <xs:element name="ParentRelationKind" type="ParentRelationKind" />                       
            </xs:sequence>
    </xs:complexType>
    
    <xs:simpleType name="VersionKind"> 
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN">     </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="EDITION"/>
            <xs:enumeration value="GENERIC_VERSION"/>
            <xs:enumeration value="LINGUISTIC"/>
            <xs:enumeration value="MEDIA"/>
            <xs:enumeration value="RELATED_CONTENT"/>
            <xs:enumeration value="RELATED_ITEM"/>            
            
            
        </xs:restriction>
    </xs:simpleType>
    
    <xs:simpleType name="ParentRelationKind"> 
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN">     </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="IS_A_DERIVATION_OF"/>
            <xs:enumeration value="IS_A_EXTRACT_OF"/>
            <xs:enumeration value="IS_ALTERNATIVE_OF"/>
            <xs:enumeration value="IS_ANNIVERSARY_EDITION_OF"/>
            <xs:enumeration value="IS_A_PREVIEW_OF"/>
            <xs:enumeration value="IS_A_REPLACEMENT_OF"/>
            <xs:enumeration value="IS_AUDIO_DESCRIPTION_TRACK_OF"/>
            <xs:enumeration value="IS_AUDIO_EDITION_OF"/>
            <xs:enumeration value="IS_BROADCAST_EDITING_OF"/>
            <xs:enumeration value="IS_CENSORED_VERSION_OF"/>
            <xs:enumeration value="IS_CLOSED_CAPTIONING_TRACK_OF"/>
            <xs:enumeration value="IS_COLLECTOR_EDITION_OF"/>
            <xs:enumeration value="IS_COLORIZED_VERSION_OF"/>
            <xs:enumeration value="IS_COMPILATION_OF"/>
            <xs:enumeration value="IS_CUESHEET_OF"/>
            <xs:enumeration value="IS_DIGITAL_CINEMA_PACKAGE_OF"/>
            <xs:enumeration value="IS_DIGITAL_ENCODING_OF"/>
            <xs:enumeration value="IS_DIRECTOR_S_CUT_OF"/>
            <xs:enumeration value="IS_DUBBING_OF"/>
            <xs:enumeration value="IS_EDITION_OF"/>
            <xs:enumeration value="IS_EXTENDED_VERSION_OF"/>
            <xs:enumeration value="IS_EXTRACT_OF"/>
            <xs:enumeration value="IS_FILM_PRINT_OF"/>
            <xs:enumeration value="IS_FINGERPRINT_OF"/>
            <xs:enumeration value="IS_INTERACTIVE_MATERIAL_OF"/>
            <xs:enumeration value="IS_INTERNET_EDITING_OF"/>
            <xs:enumeration value="IS_LENGTHEND_VERSION_OF"/>
            <xs:enumeration value="IS_LINEAR_BROADCAST_OF"/>
            <xs:enumeration value="IS_LINGUISTIC_VERSION_OF"/>
            <xs:enumeration value="IS_MAGNETIC_TAPE_OF"/>
            <xs:enumeration value="IS_MASHUP_OF"/>
            <xs:enumeration value="IS_MASTER_OF"/>
            <xs:enumeration value="IS_MEDIA_FIXATION_OF"/>
            <xs:enumeration value="IS_MEZZANINE_OF"/>
            <xs:enumeration value="IS_NON_LINEAR_BROADCAST_OF"/>
            <xs:enumeration value="IS_OPTICAL_DISK_OF"/>
            <xs:enumeration value="IS_ORIGINAL_VERSION_OF"/>            
            <xs:enumeration value="IS_PACKAGING_OF"/>
            <xs:enumeration value="IS_PROMOTIONAL_MATERIAL_OF"/>
            <xs:enumeration value="IS_PROMOTION_OF"/>
            <xs:enumeration value="IS_RE_EDITION_OF"/>
            <xs:enumeration value="IS_RELATED_CONTENT_OF"/>
            <xs:enumeration value="IS_RELATED_ITEM_OF"/>
            <xs:enumeration value="IS_RESTORED_VERSION_OF"/>
            <xs:enumeration value="IS_RINGTONE_OF"/>
            <xs:enumeration value="IS_SHORTENED_VERSION_OF"/>
            <xs:enumeration value="IS_SOUNDTRACK_OF"/>
            <xs:enumeration value="IS_SPECIAL_EDITION_OF"/>
            <xs:enumeration value="IS_SUBTITLING_OF"/>
            <xs:enumeration value="IS_SUPPLEMENT_OF"/>
            <xs:enumeration value="IS_TECHNICAL_EDIT_OF"/>
            <xs:enumeration value="IS_TECHNICAL_RELEASE_OF"/>
            <xs:enumeration value="IS_THEATRICAL_CUT_OF"/>
            <xs:enumeration value="IS_THEATRICAL_EDITING_OF"/>
            <xs:enumeration value="IS_TRAILER_OF"/>
            <xs:enumeration value="IS_VERSION_OF"/>
            <xs:enumeration value="IS_VIDEO_EDITING_OF"/> 
            <xs:enumeration value="IS_VIDEOEDITING_OF"/>
            <xs:enumeration value="IS_WALLPAPER_OF"/>
            <xs:enumeration value="IS_WATERMARK_OF"/>
            <xs:enumeration value="IS_3D_OF"/>            
        </xs:restriction>
    </xs:simpleType>
        
    <xs:simpleType name="ImageDimension"> 
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN">     </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="_2D"/>
            <xs:enumeration value="_3D"/>
            <xs:enumeration value="_4D"/>           
        </xs:restriction>
    </xs:simpleType>
    
    <xs:simpleType name="ImageDefinition"> 
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN">     </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="HD_1080I_P"/>
            <xs:enumeration value="HD_720P"/>
            <xs:enumeration value="LD_240P_360P_ETC"/>
            <xs:enumeration value="SD_480I_P_576I_P_ETC"/>
            <xs:enumeration value="ULTRA_HD_2160P"/>
            <xs:enumeration value="ULTRA_HD_4320P"/>
            <xs:enumeration value="UNLISTED"/>
            <xs:enumeration value="_16MM_FILM_PRINT"/>
            <xs:enumeration value="_2K"/>
            <xs:enumeration value="_35MM_FILM_PRINT"/>
            <xs:enumeration value="_4K"/>
            <xs:enumeration value="_70MM_FILM_PRINT"/>
            <xs:enumeration value="_8K"/>
            
        </xs:restriction>
    </xs:simpleType>
    
    
    <xs:simpleType name="ImageAspectRatio"> 
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN">     </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="OTHER"/>
            <xs:enumeration value="_1_1"/>
            <xs:enumeration value="_137_1_ACADEMY"/>
            <xs:enumeration value="_144_1_IMAX"/>
            <xs:enumeration value="_14_9"/>
            <xs:enumeration value="_166_1_STD_THEATRICAL_EU"/>
            <xs:enumeration value="_16_9"/>
            <xs:enumeration value="_185_1_STD_THEATRICAL_US"/>
            <xs:enumeration value="_2401_ANAMORPHIC"/>
            <xs:enumeration value="_4_3"/>
            
        </xs:restriction>
    </xs:simpleType>
    
    
    <xs:simpleType name="MediaFixation"> 
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN">     </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="BETAMAX"/>
            <xs:enumeration value="BLU_RAY"/>
            <xs:enumeration value="DIGITAL_CINEMA_PACKAGE_DCP"/>
            <xs:enumeration value="DIGITAL_FILE_STREAM"/>
            <xs:enumeration value="DVD"/>
            <xs:enumeration value="FILM_PRINT"/>
            <xs:enumeration value="HD_DVD"/>
            <xs:enumeration value="OTHER_OPTICAL_DISK"/>
            <xs:enumeration value="OTHER_TAPE"/>
            <xs:enumeration value="OTHER_UNLISTED_MEDIA"/>
            <xs:enumeration value="VHS"/>
                        
        </xs:restriction>
    </xs:simpleType>
    
    <xs:simpleType name="ContainerFormat"> 
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN">     </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="ASF"/>
            <xs:enumeration value="AVI"/>
            <xs:enumeration value="DIVX"/>
            <xs:enumeration value="DV"/>
            <xs:enumeration value="FLV"/>
            <xs:enumeration value="HCT"/>
            <xs:enumeration value="MJPEG"/>
            <xs:enumeration value="MJ2"/>
            <xs:enumeration value="MKV"/>
            <xs:enumeration value="MOV"/>
            <xs:enumeration value="MPEG"/>
            <xs:enumeration value="MPG"/>
            <xs:enumeration value="MP4"/>
            <xs:enumeration value="M4V"/>
            <xs:enumeration value="OGG"/>
            <xs:enumeration value="QUICKTIME"/>
            <xs:enumeration value="RAW"/>
            <xs:enumeration value="REAL_NETWORKS"/>
            <xs:enumeration value="RIFF"/>
            <xs:enumeration value="VOB"/>
            <xs:enumeration value="WMV"/>
            <xs:enumeration value="_3GP"/>
            <xs:enumeration value="_3GP2"/>
            
        </xs:restriction>
    </xs:simpleType>
   
   
    <xs:simpleType name="DistributionChannel">
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN"> </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="CATCHUPTV"/>
            <xs:enumeration value="DIGITAL_SIGNAGE"/>
            <xs:enumeration value="ELECTRONIC_SELL_THROUGH"/>
            <xs:enumeration value="EVENTS_MARKET_EXHIBITIONS_FESTIVALS_ETC"/>
            <xs:enumeration value="HOME_VIDEO"/>
            <xs:enumeration value="HOSTING"/>
            <xs:enumeration value="INTERNET_WEB"/>
            <xs:enumeration value="LINEAR_BROADCASTING"/>
            <xs:enumeration value="MOBILE"/>
            <xs:enumeration value="NEAR_VOD"/>
            <xs:enumeration value="NOT_FOR_DISTRIBUTION"/>
            <xs:enumeration value="OTHER"/>
            <xs:enumeration value="S_VOD"/>
            <xs:enumeration value="THEATRE_CINEMA"/>
            <xs:enumeration value="VIDEO_GAMES"/>
            <xs:enumeration value="VIDEO_ON_DEMAND"/>
            
            
        </xs:restriction>
    </xs:simpleType>
    
    <xs:simpleType name="DistributionPlatform">
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN"> </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="AIRLINE"/>
            <xs:enumeration value="ANALOGUE_TERRESTRIAL"/>
            <xs:enumeration value="ARCHIVE"/>
            <xs:enumeration value="BOATS"/>
            <xs:enumeration value="CABLE"/>
            <xs:enumeration value="CATCHUPTV"/>
            <xs:enumeration value="DIGITAL_SIGNAGE"/>
            <xs:enumeration value="DIGITAL_TERRESTRIAL"/>
            <xs:enumeration value="ELECTRONIC_SELL_THROUGH"/>
            <xs:enumeration value="EVENTS_MARKET_EXHIBITIONS_FESTIVALS_ETC"/>
            <xs:enumeration value="HOME_VIDEO"/>
            <xs:enumeration value="HOSTING"/>
            <xs:enumeration value="HOTELS"/>
            <xs:enumeration value="INTERNAL"/>
            <xs:enumeration value="INTERNET_WEB"/>
            <xs:enumeration value="IPTV"/>
            <xs:enumeration value="LINEAR_BROADCASTING"/>
            <xs:enumeration value="MOBILE"/>
            <xs:enumeration value="MULTIPLE_CABLE_SATELLITE_ETC"/>
            <xs:enumeration value="NEAR_VOD"/>
            <xs:enumeration value="NOT_FOR_DISTRIBUTION"/>
            <xs:enumeration value="OTHER"/>
            <xs:enumeration value="RENTAL"/>
            <xs:enumeration value="SATELITE"/>
            <xs:enumeration value="SATELLITE"/>
            <xs:enumeration value="SELL"/>
            <xs:enumeration value="SELL_THRU"/>
            <xs:enumeration value="STREAMING"/>
            <xs:enumeration value="S_VOD"/>
            <xs:enumeration value="TECHNICAL_INTERMEDIATE_VERSION"/>
            <xs:enumeration value="THEATRE_CINEMA"/>
            <xs:enumeration value="VIDEO_GAMES"/>
            <xs:enumeration value="VIDEO_ON_DEMAND"/>
            
        </xs:restriction>
    </xs:simpleType>
            
    <xs:complexType name="Ratings">
        <xs:sequence>
            <xs:annotation>
                <xs:documentation xml:lang="EN"> </xs:documentation>
            </xs:annotation>
            <xs:element name="Rating" type="Rating" maxOccurs="unbounded"/>
        </xs:sequence>
    </xs:complexType>
    
    <xs:complexType name="Rating">
        <xs:sequence>
            <xs:element name="RatingCountry" type="country:CountryType" />
            <xs:element name="RatingSystemCode" type="RatingSystemCode" />
            <xs:element name="RatingCode" type="RatingCode" />
        </xs:sequence>
    </xs:complexType>
      
    <xs:simpleType name="RatingSystemCode">
        <xs:annotation>
            <xs:documentation/>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="ALBERTA"/>
            <xs:enumeration value="BBFC"/>
            <xs:enumeration value="BCFCO"/>
            <xs:enumeration value="CCC"/>
            <xs:enumeration value="CCE"/>
            <xs:enumeration value="CERO"/>
            <xs:enumeration value="CHVRS"/>
            <xs:enumeration value="CICF_IVF"/>
            <xs:enumeration value="CNC"/>
            <xs:enumeration value="DJCTQ"/>
            <xs:enumeration value="EIRIN"/>
            <xs:enumeration value="ESRB"/>
            <xs:enumeration value="FBFC"/>
            <xs:enumeration value="FILM"/>
            <xs:enumeration value="FPB"/>
            <xs:enumeration value="FSK"/>
            <xs:enumeration value="GIO"/>
            <xs:enumeration value="ICAA"/>
            <xs:enumeration value="IFCB"/>
            <xs:enumeration value="IFCO"/>
            <xs:enumeration value="KIJWIJZER"/>
            <xs:enumeration value="KMRB"/>
            <xs:enumeration value="KRS"/>
            <xs:enumeration value="LSF"/>
            <xs:enumeration value="MARITIME"/>
            <xs:enumeration value="MCCYP"/>
            <xs:enumeration value="MEDIETILSYNET"/>
            <xs:enumeration value="MFCB"/>
            <xs:enumeration value="MOC"/>
            <xs:enumeration value="MPAA"/>
            <xs:enumeration value="NFRC"/>
            <xs:enumeration value="OFLC"/>
            <xs:enumeration value="OFRB"/>
            <xs:enumeration value="OTHER"/>
            <xs:enumeration value="PEGI"/>
            <xs:enumeration value="QUEBEC"/>
            <xs:enumeration value="RTC"/>
            <xs:enumeration value="SBB"/>
            <xs:enumeration value="SMAIS"/>
            <xs:enumeration value="TVPG"/>
            <xs:enumeration value="USK"/>
            <xs:enumeration value="VET"/>            
        </xs:restriction>
    </xs:simpleType>
    
    <xs:simpleType name="RatingCode">
        <xs:annotation>
            <xs:documentation/>
        </xs:annotation>
        <xs:restriction base="xs:string">
         <xs:enumeration value="A"/>
            <xs:enumeration value="A"/>
            <xs:enumeration value="AA"/>
            <xs:enumeration value="AB"/>
            <xs:enumeration value="ADULT"/>
            <xs:enumeration value="ADULT_ACCOMPANIMENT"/>
            <xs:enumeration value="AG"/>
            <xs:enumeration value="AL"/>
            <xs:enumeration value="ALL"/>
            <xs:enumeration value="ALL_AGES"/>
            <xs:enumeration value="ALLE"/>
            <xs:enumeration value="AO"/>
            <xs:enumeration value="ATP"/>
            <xs:enumeration value="B"/>
            <xs:enumeration value="BO"/>
            <xs:enumeration value="BTL"/>
            <xs:enumeration value="B__15"/>
            <xs:enumeration value="C"/>
            <xs:enumeration value="D"/>
            <xs:enumeration value="E"/>
            <xs:enumeration value="EC"/>
            <xs:enumeration value="ESPECIALMENTE_RECOMENDADO"/>
            <xs:enumeration value="E10PLUS"/>
            <xs:enumeration value="FAMILY"/>
            <xs:enumeration value="FSK_0"/>
            <xs:enumeration value="FSK_12"/>
            <xs:enumeration value="FSK_16"/>
            <xs:enumeration value="FSK_18"/>
            <xs:enumeration value="FSK_6"/>
            <xs:enumeration value="G"/>
            <xs:enumeration value="GENERAL"/>
            <xs:enumeration value="G_P"/>
            <xs:enumeration value="G8PLUS"/>
            <xs:enumeration value="IC__14"/>
            <xs:enumeration value="IM__18"/>
            <xs:enumeration value="K"/>
            <xs:enumeration value="KEINE_JUGENDFREIGABE"/>
            <xs:enumeration value="KK"/>
            <xs:enumeration value="KNT_ENA"/>
            <xs:enumeration value="KT_EA"/>
            <xs:enumeration value="K__11"/>
            <xs:enumeration value="K__12"/>
            <xs:enumeration value="K__13"/>
            <xs:enumeration value="K__15"/>
            <xs:enumeration value="K__17"/>
            <xs:enumeration value="K__18"/>
            <xs:enumeration value="K__7"/>
            <xs:enumeration value="L"/>
            <xs:enumeration value="LH"/>
            <xs:enumeration value="LIVRE"/>
            <xs:enumeration value="M"/>
            <xs:enumeration value="MA15PLUS"/>
            <xs:enumeration value="M_12"/>
            <xs:enumeration value="M_12__P"/>
            <xs:enumeration value="M_12__Q"/>
            <xs:enumeration value="M15PLUS"/>
            <xs:enumeration value="M_16"/>
            <xs:enumeration value="M_16__P"/>
            <xs:enumeration value="M_16__Q"/>
            <xs:enumeration value="M_18"/>
            <xs:enumeration value="M18"/>
            <xs:enumeration value="M_18__P"/>
            <xs:enumeration value="M_18__Q"/>
            <xs:enumeration value="M_4"/>
            <xs:enumeration value="M_4__P"/>
            <xs:enumeration value="M_4__Q"/>
            <xs:enumeration value="M_6"/>
            <xs:enumeration value="M_6__P"/>
            <xs:enumeration value="M_6__Q"/>
            <xs:enumeration value="N_A"/>
            <xs:enumeration value="NA"/>
            <xs:enumeration value="NC__15"/>
            <xs:enumeration value="NC__17"/>
            <xs:enumeration value="NO_RATING"/>
            <xs:enumeration value="NR"/>
            <xs:enumeration value="P"/>
            <xs:enumeration value="PARENTAL_GUIDANCE"/>
            <xs:enumeration value="PG"/>
            <xs:enumeration value="PG__12"/>
            <xs:enumeration value="PG__13"/>
            <xs:enumeration value="PT"/>
            <xs:enumeration value="R"/>
            <xs:enumeration value="R_A"/>
            <xs:enumeration value="RATING_PENDING"/>
            <xs:enumeration value="RC"/>
            <xs:enumeration value="RESTRICTED"/>
            <xs:enumeration value="RP"/>
            <xs:enumeration value="R__13"/>
            <xs:enumeration value="R13"/>
            <xs:enumeration value="R__15"/>
            <xs:enumeration value="R15"/>
            <xs:enumeration value="R16"/>
            <xs:enumeration value="R__18"/>
            <xs:enumeration value="R18"/>
            <xs:enumeration value="R18PLUS"/>
            <xs:enumeration value="R21"/>
            <xs:enumeration value="S"/>
            <xs:enumeration value="SPIO_JK"/>
            <xs:enumeration value="SU"/>
            <xs:enumeration value="T"/>
            <xs:enumeration value="TE"/>
            <xs:enumeration value="TV__G"/>
            <xs:enumeration value="TV__MA"/>
            <xs:enumeration value="TV__MA__L"/>
            <xs:enumeration value="TV__MA__L__S"/>
            <xs:enumeration value="TV__MA__L__S__V"/>
            <xs:enumeration value="TV__MA__L__V"/>
            <xs:enumeration value="TV__MA__S"/>
            <xs:enumeration value="TV__MA__S__V"/>
            <xs:enumeration value="TV__MA__V"/>
            <xs:enumeration value="TV__NONE"/>
            <xs:enumeration value="TV__PG"/>
            <xs:enumeration value="TV__PG__D"/>
            <xs:enumeration value="TV__PG__D__L"/>
            <xs:enumeration value="TV__PG__D__L__S"/>
            <xs:enumeration value="TV__PG__D__L__S__V"/>
            <xs:enumeration value="TV__PG__D__L__V"/>
            <xs:enumeration value="TV__PG__D__S"/>
            <xs:enumeration value="TV__PG__D__S__V"/>
            <xs:enumeration value="TV__PG__D__V"/>
            <xs:enumeration value="TV__PG__L"/>
            <xs:enumeration value="TV__PG__L__S"/>
            <xs:enumeration value="TV__PG__L__S__V"/>
            <xs:enumeration value="TV__PG__L__V"/>
            <xs:enumeration value="TV__PG__S"/>
            <xs:enumeration value="TV__PG__S__V"/>
            <xs:enumeration value="TV__PG__V"/>
            <xs:enumeration value="TV__Y"/>
            <xs:enumeration value="TV__Y7"/>
            <xs:enumeration value="TV__Y7__FV"/>
            <xs:enumeration value="TV__14"/>
            <xs:enumeration value="TV__14__D"/>
            <xs:enumeration value="TV__14__D__L"/>
            <xs:enumeration value="TV__14__D__L__S"/>
            <xs:enumeration value="TV__14__D__L__S__V"/>
            <xs:enumeration value="TV__14__D__L__V"/>
            <xs:enumeration value="TV__14__D__S"/>
            <xs:enumeration value="TV__14__D__S__V"/>
            <xs:enumeration value="TV__14__D__V"/>
            <xs:enumeration value="TV__14__L"/>
            <xs:enumeration value="TV__14__L__S"/>
            <xs:enumeration value="TV__14__L__S__V"/>
            <xs:enumeration value="TV__14__L__V"/>
            <xs:enumeration value="TV__14__S"/>
            <xs:enumeration value="TV__14__S__V"/>
            <xs:enumeration value="TV__14__V"/>
            <xs:enumeration value="U"/>
            <xs:enumeration value="U_A"/>
            <xs:enumeration value="VM14"/>
            <xs:enumeration value="VM18"/>
            <xs:enumeration value="X"/>
            <xs:enumeration value="XXX"/>
            <xs:enumeration value="X18PLUS"/>
            <xs:enumeration value="Z"/>
            <xs:enumeration value="_10"/>
            <xs:enumeration value="_11"/>
            <xs:enumeration value="_11PLUS"/>
            <xs:enumeration value="__12"/>
            <xs:enumeration value="_12"/>
            <xs:enumeration value="_12A"/>
            <xs:enumeration value="_12PLUS"/>
            <xs:enumeration value="_13"/>
            <xs:enumeration value="_13PLUS"/>
            <xs:enumeration value="_14"/>
            <xs:enumeration value="_14A"/>
            <xs:enumeration value="_15"/>
            <xs:enumeration value="_15A"/>
            <xs:enumeration value="_15PLUS"/>
            <xs:enumeration value="__16"/>
            <xs:enumeration value="_16"/>
            <xs:enumeration value="_16PLUS"/>
            <xs:enumeration value="__18"/>
            <xs:enumeration value="_18"/>
            <xs:enumeration value="_18A"/>
            <xs:enumeration value="_18PA"/>
            <xs:enumeration value="_18PL"/>
            <xs:enumeration value="_18PLUS"/>
            <xs:enumeration value="_18_S"/>
            <xs:enumeration value="_18SG"/>
            <xs:enumeration value="_18SX"/>
            <xs:enumeration value="_18_V"/>
            <xs:enumeration value="_3"/>
            <xs:enumeration value="_3PLUS"/>
            <xs:enumeration value="_4PLUS"/>
            <xs:enumeration value="_6"/>
            <xs:enumeration value="_6PLUS"/>
            <xs:enumeration value="_7"/>
            <xs:enumeration value="_7PLUS"/>
            <xs:enumeration value="_9"/>
            
        </xs:restriction>
    </xs:simpleType>
    
    <xs:complexType name="ContentAlerts">
        <xs:sequence>
            <xs:annotation>
                <xs:documentation xml:lang="EN"> </xs:documentation>
            </xs:annotation>
            <xs:element name="ContentAlert" type="ContentAlert" maxOccurs="unbounded"/>
        </xs:sequence>
    </xs:complexType>
    
    <xs:simpleType name="ContentAlert">
        <xs:restriction base="xs:string">
            <xs:annotation>
                <xs:documentation xml:lang="EN"> </xs:documentation>
            </xs:annotation>
            <xs:enumeration value="ALCOHOL"/>
            <xs:enumeration value="BLASPHEMY"/>
            <xs:enumeration value="BLOOD"/>
            <xs:enumeration value="DISCRIMINATION"/>
            <xs:enumeration value="DRUG"/>
            <xs:enumeration value="FEAR"/>
            <xs:enumeration value="GAMBLING"/>
            <xs:enumeration value="GORE"/>
            <xs:enumeration value="LANGUAGE"/>
            <xs:enumeration value="MATURE"/>
            <xs:enumeration value="MISCHIEF"/>
            <xs:enumeration value="NUDITY"/>
            <xs:enumeration value="OTHER"/>
            <xs:enumeration value="PREJUDICE"/>
            <xs:enumeration value="RACIAL_HATRED"/>
            <xs:enumeration value="SEXUAL"/>
            <xs:enumeration value="TOBACCO"/>
            <xs:enumeration value="VIOLENCE"/>
            <xs:enumeration value="WAR"/>            
        </xs:restriction>
    </xs:simpleType>
</xs:schema>