File: 200411-xmlmime.xsd

package info (click to toggle)
libxml-compile-soap-perl 3.26%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 616 kB
  • sloc: perl: 4,406; makefile: 7
file content (42 lines) | stat: -rw-r--r-- 1,435 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" ?>
<!-- 
   W3C XML Schema defined in the Assigning Media Types to Binary Data in XML
   specification
     http://www.w3.org/TR/xml-media-types

   Copyright (c) 2004 World Wide Web Consortium,
  
   (Massachusetts Institute of Technology, European Research Consortium for
   Informatics and Mathematics, Keio University). All Rights Reserved. This
   work is distributed under the W3C(r) Software License [1] in the hope that
   it will be useful, but WITHOUT ANY WARRANTY; without even the implied
   warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  
   [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
-->

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           xmlns:xmlmime="http://www.w3.org/2004/11/xmlmime"
           targetNamespace="http://www.w3.org/2004/11/xmlmime" >

<xs:attribute name="contentType" type="xs:string" />

<xs:attribute name="expectedMediaType" type="xs:string" />

<xs:complexType name="base64Binary" >
    <xs:simpleContent>
        <xs:extension base="xs:base64Binary" >
            <xs:attribute ref="xmlmime:contentType" />
        </xs:extension>
    </xs:simpleContent>
</xs:complexType>

<xs:complexType name="hexBinary" >
    <xs:simpleContent>
        <xs:extension base="xs:hexBinary" >
            <xs:attribute ref="xmlmime:contentType" />
        </xs:extension>
    </xs:simpleContent>
</xs:complexType>

</xs:schema>