My favorites | Sign in
Project Home
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 12: coverage elements
1 person starred this issue and may be notified of changes. Back to list
Status:  Fixed
Owner:  htobon
Closed:  Oct 2010
Cc:  daniel.amariles88, wixner@gmail.com


 
Project Member Reported by htobon, Oct 4, 2010
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
yes
Status: Accepted
Oct 4, 2010
Project Member #2 htobon
fixed in r152.
Status: Fixed

Powered by Google Project Hosting