Categories:
Android (1)
Audio (7)
C/C++ (2)
Compression (7)
Database (6)
Document (14)
Email (3)
General (50)
Graphics (17)
Image (8)
Java (1)
Picture (1)
Presentation (7)
Programming (17)
Spreadsheet (11)
Video (8)
Web (13)
Windows (63)
XML (4)
Other Resources:
.XSD - File Extension for XML Schema Files
What is XSD? XSD, short name for XML Schema Definition, is used as the file extension for XML Schema files. .XSD files are text files that can be opened by Notepad or any text editors. See the sample .XSD file included below.
✍: FYIcenter.com
File Extension: .XSD
MIME Type: application/xml, text/xml
File Content: XML Schema
.XSD files are XML Schema files, which contains definitions of rules that apply to XML files for a specific purpose. Here is a sample .XSD XML Schema file containing some simple XML schema definitions:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema elementFormDefault="qualified"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Address">
<xs:complexType>
<xs:sequence>
<xs:element name="Recipient" type="xs:string" />
<xs:element name="House" type="xs:string" />
<xs:element name="Street" type="xs:string" />
<xs:element name="Town" type="xs:string" />
<xs:element name="County" type="xs:string" minOccurs="0" />
<xs:element name="PostCode" type="xs:string" />
<xs:element name="Country">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="IN" />
<xs:enumeration value="DE" />
<xs:enumeration value="ES" />
<xs:enumeration value="UK" />
<xs:enumeration value="US" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
.XSD XML Schema file sample: Click sample.xsd to download.
Since .XSD text files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.
For for information on how to use .XSD XML Schema files, see links below:
2012-07-02, 13280👍, 0💬
Popular Posts:
File extension DAT is used for multimedia files stored on VCD disks. A DAT sample file is provided. ...
What is BIN? BIN, short name for Binary, is used as the file extension for Binary Data files. .BIN f...
What is PPS? PPS, short name for PowerPoint Slide, is used as the file extension for Microsoft Power...
What is PRN? PRN, short name for Printable, is used as the file extension for files padded with spac...
What is MPP? MPP, short name for Microsoft Project Plan, is used as the file extension for Microsoft...