| Issue 12: | coverage elements | |
| 1 person starred this issue and may be notified of changes. | Back to list |
The data type of the following elements should be changed from xs:string to NonEmptyStringType:
In geographicCoverage:
- geographicDescription.
In taxonomicCoverage --> taxonomicClassification:
- taxonRankName
- taxonRankValue
- commonName
GBIF EML Schema:
<xs:element name="geographicCoverage">
...
<xs:element name="geographicDescription" type="xs:string" minOccurs="0">
...
</xs:element>
...
<xs:element name="taxonomicCoverage">
...
<xs:element name="taxonomicClassification" maxOccurs="unbounded">
...
<xs:element name="taxonRankName" type="xs:string" minOccurs="0">
...
<xs:element name="taxonRankValue" type="xs:string">
...
<xs:element name="commonName" type="xs:string" minOccurs="0">
...
</xs:element>
...
</xs:element>
Official EML Schema:
<xs:complexType name="GeographicCoverage">
...
<xs:element name="geographicDescription" type="res:NonEmptyStringType">
...
</xs:complexType>
...
<xs:complexType name="TaxonomicCoverage">
...
<xs:element name="generalTaxonomicCoverage" type="res:NonEmptyStringType" minOccurs="0">
...
<xs:element name="taxonomicClassification" type="TaxonomicClassificationType" maxOccurs="unbounded">
...
<xs:element name="taxonRankName" type="res:NonEmptyStringType" minOccurs="0">
...
<xs:element name="taxonRankValue" type="res:NonEmptyStringType" minOccurs="0">
...
<xs:element name="commonName" type="res:NonEmptyStringType" minOccurs="0" maxOccurs="unbounded">
...
</xs:element>
...
</xs:complexType>
Oct 4, 2010
Project Member
#1
wixner@gmail.com
Status:
Accepted
|