mirror of https://github.com/tdwg/dwc.git
22 lines
812 B
XML
22 lines
812 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||
|
targetNamespace="http://rs.tdwg.org/dwc/dwcrecord/"
|
||
|
xmlns:dwr="http://rs.tdwg.org/dwc/dwcrecord/"
|
||
|
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||
|
<xs:import namespace="http://rs.tdwg.org/dwc/terms/" schemaLocation="tdwg_dwcclasses.xsd"/>
|
||
|
|
||
|
<xs:annotation>
|
||
|
<xs:documentation>
|
||
|
This schema defines a container for all proper darwin core classes.
|
||
|
</xs:documentation>
|
||
|
</xs:annotation>
|
||
|
|
||
|
<xs:element name="DarwinRecordSet" >
|
||
|
<xs:complexType>
|
||
|
<xs:sequence>
|
||
|
<xs:element ref="dwc:anyClass" maxOccurs="unbounded" minOccurs="0"/>
|
||
|
</xs:sequence>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
|
||
|
</xs:schema>
|