From 3c11406f99a9719706e962eb1a66c3eb04b06f7b Mon Sep 17 00:00:00 2001 From: chicoreus Date: Mon, 7 Mar 2022 09:58:52 -0500 Subject: [PATCH] Initial files for project, including a TestOfTestSpreadsheetUtility to convert the rows in @Tasilee's data sheet in the spreadsheet of tests into a csv file suitable for input into a test harness. Supporting https://github.com/tdwg/bdq/issues/189 used to generate https://github.com/tdwg/bdq/blob/master/tg2/core/TG2_test_validation_data.csv --- .gitignore | 4 + pom.xml | 92 ++ .../filteredpush/qc/bdqtestrunner/Runner.java | 32 + .../TestOfTestSpreasheetUtility.java | 346 +++++ .../resources/Test_data_10_2022-03-06.csv | 997 ++++++++++++++ src/main/resources/Test_data_7_2022-02-26.csv | 1180 +++++++++++++++++ src/main/resources/Test_data_9_2022-03-04.csv | 997 ++++++++++++++ src/main/resources/log4j2.xml | 17 + .../qc/bdqtestrunner/AllTests.java | 13 + src/test/resources/log4j2-test.xml | 14 + 10 files changed, 3692 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/org/filteredpush/qc/bdqtestrunner/Runner.java create mode 100644 src/main/java/org/filteredpush/qc/bdqtestrunner/TestOfTestSpreasheetUtility.java create mode 100644 src/main/resources/Test_data_10_2022-03-06.csv create mode 100644 src/main/resources/Test_data_7_2022-02-26.csv create mode 100644 src/main/resources/Test_data_9_2022-03-04.csv create mode 100644 src/main/resources/log4j2.xml create mode 100644 src/test/java/org/filteredpush/qc/bdqtestrunner/AllTests.java create mode 100644 src/test/resources/log4j2-test.xml diff --git a/.gitignore b/.gitignore index 0e13eeb..fb0f72f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +output.csv +.classpath +.project +.settings/ target/ pom.xml.tag pom.xml.releaseBackup diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..6d1b74e --- /dev/null +++ b/pom.xml @@ -0,0 +1,92 @@ + + 4.0.0 + + org.filteredpush + bdqtestrunner + 0.0.1-SNAPSHOT + jar + + bdqtestrunner + http://maven.apache.org + + + UTF-8 + + + + + + commons-logging + commons-logging + 1.2 + + + org.apache.logging.log4j + log4j-core + 2.17.1 + + + commons-cli + commons-cli + 1.4 + + + org.apache.commons + commons-csv + 1.6 + + + + junit + junit + 3.8.1 + test + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + true + true + 1.8 + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + 8 + + + + attach-javadocs + + jar + + + + + + + diff --git a/src/main/java/org/filteredpush/qc/bdqtestrunner/Runner.java b/src/main/java/org/filteredpush/qc/bdqtestrunner/Runner.java new file mode 100644 index 0000000..580180e --- /dev/null +++ b/src/main/java/org/filteredpush/qc/bdqtestrunner/Runner.java @@ -0,0 +1,32 @@ +/** + * Runner.java + * + * Copyright 2022 President and Fellows of Harvard College + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.filteredpush.qc.bdqtestrunner; + +/** + * Runner, run tests on TDWG BDQ TG2 Test implementations. + * + * @author mole + * + */ +public class Runner +{ + public static void main( String[] args ) + { + System.out.println( "Not Yet Implemented" ); + } +} diff --git a/src/main/java/org/filteredpush/qc/bdqtestrunner/TestOfTestSpreasheetUtility.java b/src/main/java/org/filteredpush/qc/bdqtestrunner/TestOfTestSpreasheetUtility.java new file mode 100644 index 0000000..88f9064 --- /dev/null +++ b/src/main/java/org/filteredpush/qc/bdqtestrunner/TestOfTestSpreasheetUtility.java @@ -0,0 +1,346 @@ +/** + * TestOfTestSpreasheetUtility.java + */ +package org.filteredpush.qc.bdqtestrunner; + +import java.io.File; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.IOException; +import java.io.Reader; +import java.net.URISyntaxException; +import java.net.URL; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; +import java.util.Iterator; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.SortedSet; +import java.util.TreeSet; + +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVPrinter; +import org.apache.commons.csv.CSVRecord; +import org.apache.commons.csv.QuoteMode; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +/** + * @author mole + * + */ +public class TestOfTestSpreasheetUtility { + + private static final Log logger = LogFactory.getLog(TestOfTestSpreasheetUtility.class); + + public static Map getInformationElements() { + Map result = new LinkedHashMap(); + result.put("bdq:annotation","bdq:annotation"); + result.put("bdq:sourceAuthority","bdq:sourceAuthority"); + result.put("dc:type","dc:type"); + result.put("dcterms:license","dcterms:license"); + result.put("dwc:acceptedNameUsageID","dwc:acceptedNameUsageID"); + result.put("dwc:basisOfRecord","dwc:basisOfRecord"); + result.put("dwc:class","dwc:class"); + result.put("dwc:continent","dwc:continent"); + result.put("dwc:coordinateUncertaintyInMeters","dwc:coordinateUncertaintyInMeters"); + result.put("dwc:country","dwc:country"); + result.put("dwc:countryCode","dwc:countryCode"); + result.put("dwc:county","dwc:county"); + result.put("dwc:dataGeneralizations","dwc:dataGeneralizations"); + result.put("dwc:dateIdentified","dwc:dateIdentified"); + result.put("dwc:day","dwc:day"); + result.put("dwc:decimalLatitude","dwc:decimalLatitude"); + result.put("dwc:decimalLongitude","dwc:decimalLongitude"); + result.put("dwc:endDayOfYear","dwc:endDayOfYear"); + result.put("dwc:establishmentMeans","dwc:establishmentMeans"); + result.put("dwc:eventDate","dwc:eventDate"); + result.put("dwc:family","dwc:family"); + result.put("dwc:genus","dwc:genus"); + result.put("dwc:geodeticDatum","dwc:geodeticDatum"); + result.put("dwc:higherClassification","dwc:higherClassification"); + result.put("dwc:higherGeography","dwc:higherGeography"); + result.put("dwc:higherGeographyID","dwc:higherGeographyID"); + result.put("dwc:infraspecificEpithet","dwc:infraspecificEpithet"); + result.put("dwc:island","dwc:island"); + result.put("dwc:islandGroup","dwc:islandGroup"); + result.put("dwc:kingdom","dwc:kingdom"); + result.put("dwc:locality","dwc:locality"); + result.put("dwc:locationID","dwc:locationID"); + result.put("dwc:maximumDepthInMeters","dwc:maximumDepthInMeters"); + result.put("dwc:maximumElevationInMeters","dwc:maximumElevationInMeters"); + result.put("dwc:minimumDepthInMeters","dwc:minimumDepthInMeters"); + result.put("dwc:minimumElevationInMeters","dwc:minimumElevationInMeters"); + result.put("dwc:month","dwc:month"); + result.put("dwc:municipality","dwc:municipality"); + result.put("dwc:occurrenceID","dwc:occurrenceID"); + result.put("dwc:occurrenceStatus","dwc:occurrenceStatus"); + result.put("dwc:order","dwc:order"); + result.put("dwc:originalNameUsageID","dwc:originalNameUsageID"); + result.put("dwc:parentNameUsageID","dwc:parentNameUsageID"); + result.put("dwc:phylum","dwc:phylum"); + result.put("dwc:scientificName","dwc:scientificName"); + result.put("dwc:scientificNameAuthorship","dwc:scientificNameAuthorship"); + result.put("dwc:scientificNameID","dwc:scientificNameID"); + result.put("dwc:specificEpithet","dwc:specificEpithet"); + result.put("dwc:startDayOfYear","dwc:startDayOfYear"); + result.put("dwc:stateProvince","dwc:stateProvince"); + result.put("dwc:subgenus","dwc:subgenus"); + result.put("dwc:taxon","dwc:taxon"); + result.put("dwc:taxonConceptID","dwc:taxonConceptID"); + result.put("dwc:taxonID","dwc:taxonID"); + result.put("dwc:taxonRank","dwc:taxonRank"); + result.put("dwc:verbatimCoordinateSystem","dwc:verbatimCoordinateSystem"); + result.put("dwc:verbatimCoordinates","dwc:verbatimCoordinates"); + result.put("dwc:verbatimDepth","dwc:verbatimDepth"); + result.put("dwc:verbatimElevation","dwc:verbatimElevation"); + result.put("dwc:verbatimEventDate","dwc:verbatimEventDate"); + result.put("dwc:verbatimLatitude","dwc:verbatimLatitude"); + result.put("dwc:verbatimLocality","dwc:verbatimLocality"); + result.put("dwc:verbatimLongitude","dwc:verbatimLongitude"); + result.put("dwc:verbatimSRS","dwc:verbatimSRS"); + result.put("dwc:vernacularName","dwc:vernacularName"); + result.put("dwc:waterbody","dwc:waterbody"); + result.put("dwc:year","dwc:year"); + + return result; + } + + /** + * + */ + public TestOfTestSpreasheetUtility() { + // TODO Auto-generated constructor stub + } + + private static void parseSourceSpreadsheet() throws IOException, URISyntaxException { + + List classList = new ArrayList(); + classList.add("MEASURE"); + classList.add("VALIDATION"); + classList.add("AMENDMENT"); + classList.add("ISSUE"); + List validationResponseStatusTerms = new ArrayList(); + validationResponseStatusTerms.add("RUN_HAS_RESULT"); + validationResponseStatusTerms.add("INTERNAL_PREREQUISITES_NOT_MET"); + validationResponseStatusTerms.add("EXTERNAL_PREREQUISITES_NOT_MET"); + List validationResponseResultTerms = new ArrayList(); + validationResponseResultTerms.add("COMPLIANT"); + validationResponseResultTerms.add("NOT_COMPLIANT"); + List amendmentResponseStatusTerms = new ArrayList(); + amendmentResponseStatusTerms.add("AMENDED"); + amendmentResponseStatusTerms.add("NOT_AMENDED"); + amendmentResponseStatusTerms.add("INTERNAL_PREREQUISITES_NOT_MET"); + amendmentResponseStatusTerms.add("EXTERNAL_PREREQUISITES_NOT_MET"); + + Map outputRow = new LinkedHashMap(); + outputRow.put("LineNumber", ""); + outputRow.put("LineForTest", ""); + outputRow.put("GitHubIssueNo", ""); + outputRow.put("GUID", ""); + outputRow.put("Label", ""); + outputRow.put("Response.Status", ""); + outputRow.put("Response.Result", ""); + outputRow.put("Response.Comment", ""); + outputRow.put("Explanation", ""); + + Map terms = new HashMap(); + Map outterms = new HashMap(); + String filename = "/Test_data_7_2022-02-26.csv"; + filename = "/Test_data_9_2022-03-04.csv"; + filename = "/Test_data_10_2022-03-06.csv"; + URL urlinfile = TestOfTestSpreasheetUtility.class.getResource(filename); + File inputfile = new File(urlinfile.toURI()); + Reader in = new FileReader(inputfile); + CSVPrinter printer = new CSVPrinter(new FileWriter("output.csv"), CSVFormat.DEFAULT.withQuoteMode(QuoteMode.ALL)); + CSVParser records = CSVFormat.DEFAULT.withFirstRecordAsHeader().parse(in); + Map header = records.getHeaderMap(); + int line = 2; // first line in spreadsheet, header is 1. + int errors = 0; + for (CSVRecord record : records) { + outputRow.put("LineNumber",Integer.toString(line)); + outputRow.put("LineForTest",record.get("Line #")); + outputRow.put("GitHubIssueNo",record.get("Number")); + outputRow.put("GUID",record.get("GUID")); + String testType = record.get("Output Type"); + if (!classList.contains(testType)) { + errors ++; + System.out.println("Error in " + Integer.toString(line) + " unrecognized test class: " + testType); + } + outputRow.put("Label",testType + "_" + record.get("Label")); + String responseStatus = record.get("Response.Status").trim(); + outputRow.put("Response.Status", responseStatus); + outputRow.put("Response.Result", record.get("Response.Result")); + outputRow.put("Response.Comment", record.get("Comment")); + outputRow.put("Explanation", record.get("Explanation")); + Iterator iin = getInformationElements().keySet().iterator(); + while (iin.hasNext()) { + outputRow.put(iin.next(),""); + } + Map resultTermValues = new HashMap(); + + if (testType.equals("VALIDATION") && !validationResponseStatusTerms.contains(responseStatus)) { + System.out.println("Error in " + Integer.toString(line) + " unrecognized response.status " +responseStatus + " for " + testType); + errors++; + } + if (testType.equals("MEASURE") && !validationResponseStatusTerms.contains(responseStatus)) { + System.out.println("Error in " + Integer.toString(line) + " unrecognized response.status " +responseStatus + " for " + testType); + errors++; + } + if (testType.equals("AMENDMENT") && !amendmentResponseStatusTerms.contains(responseStatus)) { + System.out.println("Error in " + Integer.toString(line) + " unrecognized response.status " +responseStatus + " for " + testType); + errors++; + } + + + // {GitHub Issue=0, Number=1, GUID=2, Output Type=3, Label=4, Dimension=5, + // Line #=6, Input Fields=7, Output Fields=8, Response.Status=9, Response.Result=10, + // Comment=11, Explanation=12} + //System.out.print(Integer.toString(line) + " " + record.get("GUID") + " "); + String inputfields = record.get("Input Fields"); + // handle a couple of special cases for splitting on comma: + inputfields = inputfields.replace("Desmarest, 1804", "Desmarest| 1804)"); + inputfields = inputfields.replace(" 10m, ", " 10m| "); + List bits = Arrays.asList(inputfields.split(",")); + if (bits.isEmpty()) { + System.out.println("Error in " + Integer.toString(line) + " " +inputfields); + errors++; + } + Iterator i = bits.iterator(); + while (i.hasNext()) { + String bit = i.next(); + List subbits = Arrays.asList(bit.split("=")); + if (subbits.size()!=2) { + System.out.println("Error in " + Integer.toString(line) + " " + bit ); + errors++; + } else { + // System.out.print(subbits.get(0) + " " + subbits.get(1)); + String term = subbits.get(0).trim(); + terms.put(term, term); + String value = subbits.get(1).trim(); + if (!value.startsWith("\"") || !value.endsWith("\"")) { + System.out.println("Error in " + Integer.toString(line) + " " + bit); + errors++; + } else { + // output + if (outputRow.containsKey(term)) { + String cleanedValue = value; + // handle a couple of special cases for splitting on comma: + cleanedValue = cleanedValue.replace("Desmarest| 1804", "Desmarest, 1804)"); + cleanedValue = cleanedValue.replace(" 10m| ", " 10m, "); + // trim off leading/trailing quotes. + if (cleanedValue.charAt(0)=='"') { + cleanedValue = cleanedValue.substring(1); + } + if (cleanedValue.charAt(cleanedValue.length()-1)=='"') { + cleanedValue = cleanedValue.substring(0,cleanedValue.length()-1); + } + outputRow.put(term, cleanedValue); + } + } + } + } + String outfields = record.get("Output Fields"); + List outbits = Arrays.asList(outfields.split(",")); + i = outbits.iterator(); + while (i.hasNext()) { + String bit = i.next(); + List subbits = Arrays.asList(bit.split("=")); + if (bit.trim().length()>0 && subbits.size()!=2) { + System.out.println("Error in Output " + Integer.toString(line) + " " + bit ); + errors++; + } else if (bit.trim().length() > 0) { + // System.out.print(subbits.get(0) + " " + subbits.get(1)); + String term = subbits.get(0).trim(); + outterms.put(term, term); + String value = subbits.get(1).trim(); + if (!value.startsWith("\"") || !value.endsWith("\"")) { + System.out.println("Error in Output " + Integer.toString(line) + " " + bit); + errors++; + } else { + // output + if (outputRow.containsKey(term)) { + String cleanedValue = value; + // handle a couple of special cases for splitting on comma: + cleanedValue = cleanedValue.replace("Desmarest| 1804", "Desmarest, 1804)"); + cleanedValue = cleanedValue.replace(" 10m| ", " 10m, "); + // trim off leading/trailing quotes. + if (cleanedValue.charAt(0)=='"') { + cleanedValue = cleanedValue.substring(1); + } + if (cleanedValue.charAt(cleanedValue.length()-1)=='"') { + cleanedValue = cleanedValue.substring(0,cleanedValue.length()-1); + } + resultTermValues.put(term, cleanedValue); + } + } + } + } + + if (line==2) { + printer.printRecord(outputRow.keySet()); + } + if (resultTermValues.size()>0) { + // convert + String resultVals = "{"; + Iterator iout = resultTermValues.keySet().iterator(); + String separator = ""; + while (iout.hasNext()) { + String key = iout.next(); + resultVals = resultVals + separator + '"' + key + '"'+':'+'"'+ resultTermValues.get(key).replace("\"", "\\"+"\"") + '"'; + separator = ","; + } + resultVals = resultVals.concat("}"); + outputRow.put("Response.Result", resultVals); + } + if (resultTermValues.size()>0 && outputRow.get("Response.Status") != "AMENDED" ) { + System.out.println("Error in Output " + Integer.toString(line) + " key:value pairs present when Response.Status is not AMENDED"); + errors++; + } + printer.printRecord(outputRow.values()); + line++; + } + + printer.close(); + + Set keyset = terms.keySet(); + SortedSet keys = new TreeSet(); + keys.addAll(keyset); + Iterator i = keys.iterator(); + while (i.hasNext()) { + System.out.println(i.next()); + } + Set outkeyset = outterms.keySet(); + SortedSet outkeys = new TreeSet(); + outkeys.addAll(outkeyset); + i = keys.iterator(); + while (i.hasNext()) { + System.out.println(i.next()); + } + System.out.println("Errors: " + Integer.toString(errors)); + + } + + /** + * @param args + * @throws IOException + */ + public static void main(String[] args) { + // TODO Auto-generated method stub + + try { + parseSourceSpreadsheet(); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } catch (URISyntaxException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + +} diff --git a/src/main/resources/Test_data_10_2022-03-06.csv b/src/main/resources/Test_data_10_2022-03-06.csv new file mode 100644 index 0000000..5deece1 --- /dev/null +++ b/src/main/resources/Test_data_10_2022-03-06.csv @@ -0,0 +1,997 @@ +"GitHub Issue","Number","GUID","Output Type","Label","Dimension","Line #","Input Fields","Output Fields","Response.Status","Response.Result","Comment","Explanation" +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",1,"dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",2,"dwc:countryCode=""GL""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",3,"dwc:countryCode=""GRL""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is NOT a valid ISO (ISO 3166-1-alpha-2 country codes) value ", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",4,"dwc:countryCode=""XX""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is NOT a valid ISO (ISO 3166-1-alpha-2 country codes) value ", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",5,"dwc:countryCode=""Austria""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is NOT a valid ISO (ISO 3166-1-alpha-2 country codes) value ", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",6,"dwc:countryCode=""US""",,"RUN_HAS_RESULT","COMPLIANT","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",7,"dwc:countryCode=""CL""",,"RUN_HAS_RESULT","COMPLIANT","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",8,"dwc:countryCode=""AR""",,"RUN_HAS_RESULT","COMPLIANT","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",9,"dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",1,"dwc:country=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:country is EMPTY", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",2,"dwc:country=""Eswatini""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is a valid country name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",3,"dwc:country=""Swaziland""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",4,"dwc:country=""Yugoslavia""",,"RUN_HAS_RESULT","COMPLIANT","Yugoslavia is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",5,"dwc:country=""Congo""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",6,"dwc:country=""United States Minor Outlying Islands""",,"RUN_HAS_RESULT","NOT_COMPLIANT","""United States Minor Outlying Islands"" is not a valid COUNTRY in The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",7,"dwc:country=""México""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is a valid country name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",1,"dwc:phylum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:phylum is EMPTY", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",2,"dwc:phylum="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:phylum consists of white space", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",3,"dwc:phylum=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:phylum is EMPTY", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",4,"dwc:phylum=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylum is NULL, ""Null"", ""null"". ""/n"", ""9999"" etc.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",5,"dwc:phylum=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylum does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",6,"dwc:phylum=""Trachyophyta""",,"RUN_HAS_RESULT","COMPLIANT","dwc:phylum has an equivalent at the rank of Phylum in the bdq:sourceAuthority. GBIF.org uses Trachyophyta for the Phylum including ferns", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",7,"dwc:phylum=""Trachyophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylum does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority. The Australian Plant Census uses Charophyta for the Phylum including ferns", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",8,"dwc:phylum=""Charophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylum does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority. GBIF.org uses Charophyta at classification level above Phylum", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",9,"dwc:phylum=""Charophyta""",,"RUN_HAS_RESULT","COMPLIANT","dwc:phylum has an equivalent at the rank of Phylum in the bdq:sourceAuthority. The Australian Plant Census uses Charophyta as Phylum in the kingdom Plantae.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",10,"dwc:phylum=""Chordata""",,"RUN_HAS_RESULT","COMPLIANT","dwc:phylum has an equivalent at the rank of Phylum in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",11,"dwc:phylum=""chordate""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylumdoes not have an equivalent at the rank of Phylum in the bdq:sourceAuthority.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",12,"dwc:phylum=""dwc:phylum""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylumdoes not have an equivalent at the rank of Phylum in the bdq:sourceAuthority.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",13,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","The bdq:sourceAuthority was not available or unreachable", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",1,"dwc:occurrenceID=""https://www.inaturalist.org/observations/43047701""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID conforms to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",2,"dwc:occurrenceID=""42""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",3,"dwc:occurrenceID=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",4,"dwc:occurrenceID=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to a GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",5,"dwc:occurrenceID=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to a GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",6,"dwc:occurrenceID=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceID is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",7,"dwc:occurrenceID="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",8,"dwc:occurrenceID=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",9,"dwc:occurrenceID=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to a GUID structure", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",1,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input fields are EMPTY.", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",2,"dwc:minimumDepthInMeters=""0"", dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT",, +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",3,"dwc:minimumDepthInMeters=""1"", dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumDepthInMeters > dwc:maximumDepthInMeters", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",4,"dwc:minimumDepthInMeters=""-1"", dwc:maximumDepthInMeters=""-1""",,"INTERNAL_PREREQUISITES_NOT_MET",,"The values of dwc:minimumDepthInMeters or dwc:maximumDepthInMeters are not zero or a positive number", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",5,"dwc:minimumDepthInMeters=""1200"", dwc:maximumDepthInMeters=""1200""",,"RUN_HAS_RESULT","COMPLIANT",, +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",6,"dwc:minimumDepthInMeters=""100"", dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumDepthInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",7,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""1200""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",8,"dwc:minimumDepthInMeters=""100"", dwc:maximumDepthInMeters=""50""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumDepthInMeters > maximumDepthInMeters", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",1,"dwc:dateIdentified=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:dateIdentified is EMPTY", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",2,"dwc:dateIdentified=""X""",,"NOT_AMENDED",,"dwc:dateIdentified contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",3,"dwc:dateIdentified=""10-28""",,"NOT_AMENDED",,"dwc:dateIdentified contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",4,"dwc:dateIdentified=""2021-28-10""","dwc:dateIdentified=""2021-10-28""","AMENDED","dwc:dateIdentified=""2021-10-28""","dwc:dateIdentified contains an interpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",5,"dwc:dateIdentified=""21-10-28""","dwc:dateIdentified=""2021-10-28""","AMENDED","dwc:dateIdentified=""2021-10-28""","dwc:dateIdentified contains an interpretable value. Amendment based on dwc:year=""2021""", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",6,"dwc:dateIdentified=""2021/10/28""","dwc:dateIdentified=""2021-10-28""","AMENDED","dwc:dateIdentified=""2021-10-28""","dwc:dateIdentified contains an interpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",7,"dwc:dateIdentified=""2021/04/03""",,"NOT_AMENDED",,"dwc:dateIdentified contains an ambiguous value. Date could be 3rd of April or 4th of May", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",7,"dwc:eventDate=""2021/04/03""",,"NOT_AMENDED",,"dwc:dateIdentified contains an ambiguous value. Date could be 3rd of April or 4th of May", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",1,"dwc:family=""Agaricaceae""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"The bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",2,"dwc:family=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:family is EMPTY or MISSING", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",3,"dwc:family=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:family is EMPTY", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",4,"dwc:family="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:family is EMPTY or white space", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",5,"dwc:family=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",6,"dwc:family=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",7,"dwc:family=""Agaricaceae""",,"RUN_HAS_RESULT","COMPLIANT","bdq:family has an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",8,"dwc:family=""Agaricaceae""",,"RUN_HAS_RESULT","COMPLIANT","bdq:family has Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",9,"dwc:family=""Agaricacae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",10,"dwc:family=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","bdq:family has an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",11,"dwc:family=""kangaroos""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",12,"dwc:family=""Macropods""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",13,"dwc:family=""dwc:family""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",1,"bdq:annotation=""dwc:locality does not match dwc:decimalLatitude""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",2,"bdq:annotation=""blah""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",3,"bdq:annotation=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",4,"bdq:annotation=""…""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",5,"bdq:annotation=""?""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",6,"bdq:annotation="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","bdq:annotation is EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",7,"bdq:annotation=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","bdq:annotation is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",8,"bdq:annotation=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_NOTIFIED","bdq:annotation is EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",9,"bdq:annotation=""[null]""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",10,"bdq:annotation=""bdq:annotation""",,"RUN_HAS_RESULT","NOT_NOTIFIED","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",1,"dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",2,"dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is in range", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",3,"dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is in range", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",4,"dwc:decimalLongitude=""121.0534 W""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is NOT a number", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",5,"dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLongitude >180", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",6,"dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLongitude <-180", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",7,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is in range", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",8,"dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is in range", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",1," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"All input fields are EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",2," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatutide is not EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",3," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""139.923""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",4," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatutide and dwc:decimalLongitude are not EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",5," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""23 degrees 42.72 minutes south"", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimLatitude and dwc:verbatimLongitude and dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",6," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude=""x"", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimLatitude and dwc:verbatimLongitude were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",7," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""23 degrees south 185 degrees east"", dwc:verbatimCoordinateSystem="""", dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",8," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""x"", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",9," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS=""EPSG:4326"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_AMENDED",,"dwc:verbatimCoordinateSystem is EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",10,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_AMENDED",,"dwc:verbatimCoordinateSRS is EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",11,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:verbatimSRS=""WDGB21"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_AMENDED",,"dwc:verbatimSRS contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",12,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimSRS=""EPSG:4326"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_AMENDED",,"Input fields contain ambiguous values", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",13,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139.92"", dwc:verbatimSRS=""EPSG:4326"", dwc:verbatimCoordinateSystem=""decimal degrees""","dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatim=""EPSG:4326""","AMENDED","dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatim=""EPSG:4326""","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",1,"dwc:eventDate=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields are EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",3,"dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",4,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",5,"dwc:eventDate=""1949-09-16T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",6,"dwc:eventDate=""1949-12-09T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",7,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",8,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",9,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",10,"dwc:eventDate=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",11,"dwc:eventDate=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",12,"dwc:eventDate=""1963-03-08T4""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",13,"dwc:eventDate=""1963-03-08T14:0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",14,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",15,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",16,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",17,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",18,"dwc:eventDate=""1962-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",19,"dwc:eventDate=""1964-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",20,"dwc:eventDate=""1963-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",21,"dwc:eventDate=""63""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",22,"dwc:eventDate=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",23,"dwc:eventDate=""1949-01-01""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",3,"dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",4,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",5,"dwc:eventDate=""1949-09-16T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",6,"dwc:eventDate=""1949-12-09T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",7,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",8,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",9,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",10,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",11,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",12,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",13,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",14,"dwc:eventDate=""2300-11-01T10:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate is NOT_IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",15,"dwc:eventDate=""0032-11-01T10:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate is NOT_IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",16,"dwc:eventDate=""1963-03-08T14:67-0600""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",17,"dwc:eventDate=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",18,"dwc:eventDate=""1963-03-08T4""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",19,"dwc:eventDate=""1963-03-08T14:0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",20,"dwc:eventDate=""63""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",21,"dwc:eventDate=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",1,"dcterms:license=""CC BY""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license matches a term in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",2,"dcterms:license=""GPL""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",3,"dcterms:license=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",4,"dcterms:license=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",5,"dcterms:license=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",6,"dcterms:license=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dcterms:license is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",7,"dcterms:license="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dcterms:license is EMPTY", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",8,"dcterms:license=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dcterms:license is EMPTY", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",9,"dcterms:license=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",10,"dcterms:license=""CC BY""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",1,"dwc:minimumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters is EMPTY""", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",2,"dwc:minimumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is IN_RANGE", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",3,"dwc:minimumElevationInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is IN_RANGE", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",4,"dwc:minimumElevationInMeters=""-500""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumElevationInMeters is NOT_IN_RANGE", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",5,"dwc:minimumElevationInMeters=""8860""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumElevationInMeters is NOT_IN_RANGE", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",6,"dwc:minimumElevationInMeters=""400 ft""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters is not a NUMBER", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",1,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All location fields are EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",2,"dwc:locationID=""https://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD19"", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",3,"dwc:locationID="""", dwc:higherGeographyID=""http://vocab.getty.edu/tgn/1002020"", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",4,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent=""Africa"", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",5,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody=""Southern Ocean"", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",6,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup=""Antipodes Islands"", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",7,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island=""Robinson Crusoe Island"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",8,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",9,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",10,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",11,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",12,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",13,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",14,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",15,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",16,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",17,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",18,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",19,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",20,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",21,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",22,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",23,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",24,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",25,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",26,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Neuquén"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",27,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",28,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",29,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",30,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",1,"dc:type=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",2,"dc:type=""X""",,"NOT_AMENDED",,"dc:type contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",3,"dc:type=""evnt""","dc:type=""Event""","AMENDED","dc:type=""Event""","dc:type contains an interpretable value", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",1,"dwc:country=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country is EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",2,"dwc:country=""Eswatini""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",3,"dwc:country=""Swaziland""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",4,"dwc:country=""Yugoslavia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",5,"dwc:country=""Congo""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",6,"dwc:country=""United States Minor Outlying Islands""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum="""" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude, dwc:decimalLongitude, dwc:geodeticDatum are EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",2,"dwc:decimalLatitude="""", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",3,"dwc:decimalLatitude=""-23.721"", dwc:decimalLongitude="""", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",4,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum="""" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",5,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDX93"" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:geodeticDatum uninterpretable", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",6,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ","dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""WGS84"" ","AMENDED","dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""WGS84"" ","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",7,"dwc:decimalLatitude=""-93.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"NOT_AMENDED",,"dwc:decimalLatitude was out of range", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",8,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitide contains uninterpretable value", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",9,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ","dwc:decimalLatitude=""-31.606985"", dwc:decimalLongitude=""129.776695"", dwc:geodeticDatum=""AGD66"" ","AMENDED","dwc:decimalLatitude=""-31.6056085"", dwc:decimalLongitude=""129.7780869"", dwc:geodeticDatum=""EPSG4326"" ","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",1,"dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",2,"dwc:scientificName="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",3,"dwc:scientificName=""[non printing-characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT",, +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",4,"dwc:scientificName=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",5,"dwc:scientificName=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",6,"dwc:scientificName=""Wallabia bicolor""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",7,"dwc:scientificName=""Wallabia bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",8,"dwc:scientificName=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",9,"dwc:scientificName=""Walabia""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority. This may be corrected at the AMENDMENT stage using fuzzy matching?", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",10,"dwc:scientificName=""bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",11,"dwc:scientificName=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",12,"dwc:scientificName=""wallaby""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",13,"dwc:scientificName=""Hakea decurrens ssp. physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",14,"dwc:scientificName=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",15,"dwc:scientificName=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority. The Australian Plant Census includes undescribed taxa using a formula so that they can be added to legislation etc", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",16,"dwc:scientificName=""dwc:scientificName""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",17,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","The bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",1,"dwc:occurrenceID=""https://www.inaturalist.org/observations/43047701""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID conforms to GUID structure", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",2,"dwc:occurrenceID=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",3,"dwc:occurrenceID="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",4,"dwc:occurrenceID=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",5,"dwc:occurrenceID=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID is not EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",6,"dwc:occurrenceID=""---""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID is not EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",7,"dwc:occurrenceID=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID is not EMPTY", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",1,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","The bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",2,"dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",3,"dwc:countryCode=""Australia""","dwc:countryCode=""AU""","AMENDED","dwc:countryCode=""AU""","dwc:countryCode contains an interpretable value", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",4,"dwc:countryCode=""Aust.""",,"NOT_AMENDED",,"dwc:countryCode contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",5,"dwc:countryCode=""x""",,"NOT_AMENDED",,"dwc:countryCode contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",1,"dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",1,"dwc:year="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",1,"dwc:year=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",2,"dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",3,"dwc:year=""194x""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",4,"dwc:year=""1952""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",5,"dwc:year=""9999""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",6,"dwc:year=""1599""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",7,"dwc:year=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",8,"dwc:year=""XXXX""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",1,"dwc:countryCode="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",2,"dwc:countryCode=""GL"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude and dwc:decimalLongitude EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",3,"dwc:countryCode=""GRL"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude and dwc:decimalLongitude EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",4,"dwc:countryCode="""", dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",5,"dwc:countryCode="""", dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",6,"dwc:countryCode=""CL"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Coordinates are in Argentina, not Chile", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",7,"dwc:countryCode=""AR"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","Coordinates match dwc:countryCode", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",8,"dwc:countryCode=""MX"", dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","Coordinates match dwc:countryCode", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",2,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",3,"dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",4,"dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude annot be interpreted as a number", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",5,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Orcinus orca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The species is marine and the location is an inland lake.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",6,"dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Puma concolor""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Aegla neuquensis""",,"RUN_HAS_RESULT","COMPLIANT","The species is freshwater aquatic and the coordinates fall in a lake and thus COMPLIANT", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",2,"dwc:eventDate=""X""",,"INTERNAL_PREREQUISITES_NOT_MET",,"eventDate contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",3,"dwc:eventDate=""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z""",,"NOT_AMENDED",,"dwc:eventDate spans more than one year", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",4,"dwc:eventDate=""2007-03""","dwc:year=""2007"", dwc:month=""3""","AMENDED","dwc:year=""2007"", dwc:month=""3""","dwc:eventDate contains an interpretable value, assuming we treat dwc:eventDate as year-month", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",5,"dwc:eventDate=""2021-10-29"", dwc:year=""2021""","dwc:month=""10"", dwc:day=""29""","AMENDED","dwc:month=""10"", dwc:day=""29""","dwc:eventDate contains an interpretable value", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",6,"dwc:eventDate=""2021-01-15/2021-02-02""","dwc:startDayOfYear=""15"", dwc:endDayOfYear=""33""","AMENDED","dwc:startDayOfYear=""15"", dwc:endDayOfYear=""33""","dwc:eventDate contains an interpretable value", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",1,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",2,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude="""", dwc:countryCode=""AU""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",3,"dwc:decimalLatitude="""", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",4,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude and dwc:countryCode are EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",5,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AX""",,"NOT_AMENDED",,"dwc:countryCode is uninterpretable", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",6,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""185.87"", dwc:countryCode=""AU""",,"NOT_AMENDED",,"dwc:decimalLongitude is out of range", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",7,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""",,"NOT_AMENDED",,"dwc:decimalLatitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",8,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""","dwc:decimalLatitude=""-25.46""","AMENDED","dwc:decimalLatitude=""-25.46""","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",1,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimDepth is EMPTY", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",2,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimDepth contains an uninterpretable value. ""x"" is ambiguous as either ""10"" or ""No"" or ""unknown""", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",3,"dwc:minimumDepthInMeters=""25"", dwc:maximumDepthInMeters=""100"", dwc:verbatimDepth=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Output fields are both not EMPTY", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",4,"dwc:minimumDepthInMeters=""11"", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""Min depth 10m""",,"NOT_AMENDED",,"Input and output fields are conflicting", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",5,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""11"", dwc:verbatimDepth=""Max depth 100m""",,"NOT_AMENDED",,"Input and output fields are conflicting", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",6," dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""11"", dwc:verbatimDepth=""Min depth 10m""","dwc:minimumDepthInMeters=""10""","AMENDED","dwc:minimumDepthInMeters=""10""","dwc:verbatimDepth contains an interpretable value", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",7,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""10feet""","dwc:minimumDepthInMeters=""3.048"", dwc:maximumDepthInMeters=""3.048""","AMENDED","dwc:minimumDepthInMeters=""3.048"", dwc:maximumDepthInMeters=""3.048""","dwc:verbatimDepth contains interpretable value", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",8,"dwc:verbatimDepth=""Mindepth 10m, maxdepth=100""","dwc:minimumDepthInMeters=""10"", dwc:maximumDepthInMeters=""100""","AMENDED","dwc:minimumDepthInMeters=""10"", dwc:maximumDepthInMeters=""100""","dwc:verbatimDepth contains interpretable value", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",9,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""25.8-34.9m""","dwc:minimumDepthInMeters=""25.8"", dwc:maximumDepthInMeters=""34.9""","AMENDED","dwc:minimumDepthInMeters=""25.8"", dwc:maximumDepthInMeters=""34.9""","dwc:verbatimDepth contains interpretable values", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",1,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",2,"dwc:stateProvince=""San Isidro"", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude, dwc:decimalLongitude and dwc:geodeticDatum are EMPTY", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",3,"dwc:stateProvince="""", dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:stateProvince is EMPTY", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",4,"dwc:stateProvince="""", dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:stateProvince is EMPTY", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",5,"dwc:stateProvince=""Rio Negro"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","COMPLIANT","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",6,"dwc:stateProvince=""Neuquén"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Input fields contain interpretable values but coordinates don't match dwc:stateProvince", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",1,"dwc:taxon="""", dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""", dwc:scientificNameAuthorship="""", dwc:taxonRank=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All taxon fields are EMPTY", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",2,"dwc:taxon=""https://api.gbif.org/v1/species?name=Puma%20concolor"", dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""", dwc:scientificNameAuthorship="""", dwc:taxonRank=""""","dwc:taxonID=""gbif:2435099""","AMENDED","dwc:taxonID=""gbif:2435099""","dw:taxon contains an interpretable value", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",3,"dwc:taxon="""", dwc:taxonID=""https://api.gbif.org/v1/species?name=Puma%20concord"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""", dwc:scientificNameAuthorship="""", dwc:taxonRank=""""",,"NOT_AMENDED",,"dwc:taxonID contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",4,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority unavailable", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",5,"dwc:taxon="""", dwc:taxonID=""https://api.gbif.org/v1/species"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""", dwc:scientificNameAuthorship="""", dwc:taxonRank=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All of dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family, dwc:genus and dwc:scientificName are EMPTY","WE NEED SOME MORE TEST SCENARIOS HERE" +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",1,"dwc:basisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",2,"dwc:basisOfRecord=""PreservedSpec""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",3,"dwc:basisOfRecord=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",4,"dwc:basisOfRecord=""…""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",5,"dwc:basisOfRecord=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",6,"dwc:basisOfRecord="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",7,"dwc:basisOfRecord=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord is EMPTY","THIS RAISES AN ISSUE: Strictly, [npc] means NOT_EMPTY?" +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",8,"dwc:basisOfRecord=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",9,"dwc:basisOfRecord=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",10,"dwc:basisOfRecord=""dwc:basisOfRecord""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",1,"dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:geodeticDatum is EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",2,"dwc:geodeticDatum=""UTM""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum doesn't match values in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",3,"dwc:geodeticDatum=""WGS84""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",4,"dwc:geodeticDatum=""epsg:4326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",5,"dwc:geodeticDatum=""6326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",6,"dwc:geodeticDatum=""7030""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum doesn't match values in bdq:sourceAuthority, 1730 (epsg:1730) is an ellipsoid not a datum", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",7,"dwc:geodeticDatum=""23032""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum doesn't match values in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",8,"dwc:geodeticDatum=""ED50""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",9,"dwc:geodeticDatum=""International 1924""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum doesn't match values in bdq:sourceAuthority. International 1924 is an Ellipsoid not a Datum", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",10,"dwc:geodeticDatum=""4326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",1,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority unavailable", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",2,"dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",3,"dwc:geodeticDatum=""x""",,"NOT_AMENDED",,"dwc:geodeticDatum contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",4,"dwc:geodeticDatum=""WGS8""",,"NOT_AMENDED",,"dwc:geodeticDatum contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",5,"dwc:geodeticDatum=""WGS84""","dwc:geodeticDatum=""EPSG:4326""","AMENDED","dwc:geodeticDatum=""EPSG:4326""","dwc:geodeticDatum contains a valid code in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",6,"dwc:geodeticDatum=""epsg:4326""",,"NOT_AMENDED",,"dwc:geodeticDatum contains a valid code in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",2,"dwc:eventDate=""X""","dwc:eventDate=""X""","NOT_AMENDED","dwc:eventDate=""X""","dwc:eventDate contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",3,"dwc:eventDate=""10-28""","dwc:eventDate=""10-28""","NOT_AMENDED","dwc:eventDate=""10-28""","dwc:eventDate contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",4,"dwc:eventDate=""2021-28-10""","dwc:eventDate=""2021-28-10""","NOT_AMENDED","dwc:eventDate=""2021-28-10""","dwc:eventDate contains an interpretable value. Assuming year-day-month input format", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",5,"dwc:eventDate=""21-10-28""","dwc:eventDate=""21-10-28""","NOT_AMENDED","dwc:eventDate=""21-10-28""","dwc:eventDate contains an ambiguous value. Amendment based on dwc:year=""2021""", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",6,"dwc:eventDate=""2021/10/28""","dwc:eventDate=""2021-28-10""","AMENDED","dwc:eventDate=""2021-28-10""","dwc:eventDate contains an interpretable value", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",1,"dwc:country="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",2,"dwc:country=""Eswatini"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",3,"dwc:country=""Swaziland"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",4,"dwc:country="""", dwc:countryCode=""GL""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:country EMPTY", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",5,"dwc:country="""", dwc:countryCode=""Austria""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:country EMPTY", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",6,"dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country does not match dwc:countryCode", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",7,"dwc:country=""México"", dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country matches dwc:countryCode", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",8,"dwc:country=""Australia"", dwc:countryCode=""AU""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country matches dwc:countryCode", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",1,"dwc:basisOfRecord=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",2,"dwc:basisOfRecord=""X""",,"NOT_AMENDED",,"dwc:basisOfRecord contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",3,"dwc:basisOfRecord=""Pres.spec""","dwc:basisOfRecord=""PreservedSpecimen""","AMENDED","dwc:basisOfRecord=""PreservedSpecimen""","dwc:basisOfRecord contains interpretable value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",3,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",4,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",5,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",6,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",7,"dwc:eventDate=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",8,"dwc:eventDate=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",9,"dwc:eventDate=""1963-03-08T4""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",10,"dwc:eventDate=""1963-03-08T14:0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",11,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",12,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",13,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",14,"dwc:eventDate=""63""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",15,"dwc:eventDate=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",1,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",2,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00-0600"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day, dwc:month, dwc:year, dwc:startDayOfYear and dwc:endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",3,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00-0600"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day, dwc:month, dwc:year, dwc:startDayOfYear and dwc:endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",4,"dwc:day=""15"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",5,"dwc:day=""32"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",6,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month and dwc:year match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",7,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day, dwc:month and dwc:year do not match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",8,"dwc:day="""", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month and dwc:year match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",9,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-12-09T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except eventDate and verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",10,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear and dwc:endDayOfYear match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",11,"dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year matches dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",12,"dwc:day=""16"", dwc:month=""8"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month does not match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",13,"dwc:day=""16"", dwc:month=""9"", dwc:year=""1948"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year does not match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",14,"dwc:day=""2"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate=""1949-01-01"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month, dwc:startDayOfYear and endDayfYear does not match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",1,"dwc:verbatimElevation="""", dwc:minimumElevationInMeters=""25"", dwc:maximumElevationInMeters=""100""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimElevation is EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",2,"dwc:verbatimElevation=""x"", dwc:minimumElevationInMeters=""25"", dwc:maximumElevationInMeters=""100""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters and dwc:maximumElevationInMeters are not EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",3,"dwc:verbatimElevation=""Min Elevation 10m"", dwc:minimumElevationInMeters=""11"", dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters is not EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",4,"dwc:verbatimElevation=""Max Elevation 100m"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""110""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumElevationInMeters is not EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",5,"dwc:verbatimElevation=""Min Elevation 10m"", dwc:minimumElevationInMeters=""11"", dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters is not EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",6,"dwc:verbatimElevation=""10feet"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""3.048"", dwc:maximumElevationInMeters=""3.048""","AMENDED","dwc:minimumElevationInMeters=""3.048"", dwc:maximumElevationInMeters=""3.048""","dwc:verbatimElevation contains an interpretable value", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",7,"dwc:verbatimElevation=""MinElevation 10m, maxElevation=100"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""10"", dwc:maximumElevationInMeters=""100""","AMENDED","dwc:minimumElevationInMeters=""10"", dwc:maximumElevationInMeters=""100""","dwc:verbatimElevation contains an interpretable value", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",8,"dwc:verbatimElevation=""356-369m"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""356"", dwc:maximumElevationInMeters=""369""","AMENDED","dwc:minimumElevationInMeters=""356"", dwc:maximumElevationInMeters=""369""","dwc:verbatimElevation contains an interpretable value", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",9,"dwc:verbatimElevation=""19375"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""5905.5"", dwc:maximumElevationInMeters=""5905.5""","AMENDED","dwc:minimumElevationInMeters=""5905.5"", dwc:maximumElevationInMeters=""5905.5""","dwc:verbatimElevation contains an interpretable value as is assumed to be in feet", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",1,"dwc:dateIdentified=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:dateIdentified is EMPTY ", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",2,"dwc:dateIdentified=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:dateIdentified is EMPTY ", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",3,"dwc:dateIdentified=""1963-03-08X14:07-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",4,"dwc:dateIdentified=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",5,"dwc:dateIdentified=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",6,"dwc:dateIdentified=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",7,"dwc:dateIdentified=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",8,"dwc:dateIdentified=""1963-03-08T4""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",9,"dwc:dateIdentified=""1963-03-08T14:0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",10,"dwc:dateIdentified=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",11,"dwc:dateIdentified=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",12,"dwc:dateIdentified=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",13,"dwc:dateIdentified=""63""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",14,"dwc:dateIdentified=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",15,"dwc:dateIdentified=""2021_06_03T24:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date. 24 no longer allowed in the hours position.", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",16,"dwc:dateIdentified=""X""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",1,"dwc:taxonID=""http://api.gbif.org/v1/species/8102122"", dwc:scientificName=""""","dwc:scientificName=""Harpullia pendula F.Muell.""","AMENDED","dwc:scientificName=""Harpullia pendula F.Muell.""","dwc:taxonID contains an interpretable value", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",2,"dwc:taxonID=""http://api.gbif.org/v1/species/8a"", dwc:scientificName=""""",,"NOT_AMENDED",,"dwc:taxonID does not contain an interpretable value", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",3,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"bdq:sourceAuthority is unavailable", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",4,"dwc:taxonID=""http://api.gbif.org/v1/species/"", dwc:scientificName=""""",,"NOT_AMENDED",,"dwc:taxonID does not contain an interpretable value", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",5,"dwc:taxonID="""", dwc:scientificName=""Harpullia pendula F.Muell.""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",1,"dwc:dataGeneralizations=""placed on quarter degree grid""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",2,"dwc:dataGeneralizations=""blah""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",3,"dwc:dataGeneralizations=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",4,"dwc:dataGeneralizations=""…""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",5,"dwc:dataGeneralizations=""?""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",6,"dwc:dataGeneralizations="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:dataGeneralizations is EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",7,"dwc:dataGeneralizations=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:dataGeneralizations is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",8,"dwc:dataGeneralizations=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:dataGeneralizations is EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",9,"dwc:dataGeneralizations=""[null]""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",10,"dwc:dataGeneralizations=""dwc:dataGeneralizations""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",1,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority not available", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",2,"dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude and dwc:decimalLongitude are EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",2,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""135.43"", dwc:countryCode=""AX""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",3,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",4,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",5,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""185.43"", dwc:countryCode=""""",,"NOT_AMENDED",,"dwc:decimalLongitude is out of range", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",6,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",7,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""x"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",8,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""135.43"", dwc:countryCode=""""","dwc:countryCode=""AU""","AMENDED","dwc:countryCode=""AU""","dwc:decimalLatitude and dwc:decimalLongitude contain interpretable values", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",9,"dwc:decimalLatitude=""-41.195924"", dwc:decimalLongitude=""-71.253562"", dwc:countryCode=""""","dwc:countryCode=""AR""","AMENDED","dwc:countryCode=""AR""","dwc:decimalLatitude and dwc:decimalLongitude contain interpretable values", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",1,"dwc:occurrenceStatus=""""","dwc:occurrenceStatus=""present""","AMENDED","dwc:occurrenceStatus=""present""","dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",2,"dwc:occurrenceStatus=""[non-printing characters]""","dwc:occurrenceStatus=""present""","AMENDED","dwc:occurrenceStatus=""present""","dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",3,"dwc:occurrenceStatus=""X""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",4,"dwc:occurrenceStatus=""1""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",5,"dwc:occurrenceStatus=""absent""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",1,"dwc:dateIdentified="""", dwc:eventDate=""1949_0915T11:34""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",2,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",3,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",4,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified before dwc:eventDate", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",5,"dwc:dateIdentified="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",6,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",7,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",8,"dwc:dateIdentified=""1963-03-08T14:67-0600"", dwc:eventDate=""1963-03-08T14:67-0600""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",9,"dwc:dateIdentified=""1963-03-08T14:07Z"", dwc:eventDate=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",10,"dwc:dateIdentified=""1963-03-08T4"", dwc:eventDate=""1963-03-08T4""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",11,"dwc:dateIdentified=""1963-03-08T14:0"", dwc:eventDate=""1963-03-08T14:0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",12,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",13,"dwc:dateIdentified=""1963-03-08"", dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",14,"dwc:dateIdentified=""1963-03"", dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",15,"dwc:dateIdentified=""1963"", dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",16,"dwc:dateIdentified=""1963"", dwc:eventDate=""1962-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",17,"dwc:dateIdentified=""1963"", dwc:eventDate=""1964-11-01T10:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified before dwc:eventDate", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",18,"dwc:dateIdentified=""1963"", dwc:eventDate=""1963-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",19,"dwc:dateIdentified=""63"", dwc:eventDate=""63""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",20,"dwc:dateIdentified=""0"", dwc:eventDate=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",21,"dwc:dateIdentified="""", dwc:eventDate=""1949-09-16T12:34""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",22,"dwc:dateIdentified=""2021_06_03T24:00"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY.", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",1,"dwc:class=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:class is EMPTY", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",3,"dwc:class=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",4,"dwc:class=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",5,"dwc:class=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:class is EMPTY", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",6,"dwc:class=""Insecta""",,"RUN_HAS_RESULT","COMPLIANT","dwc:class has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",7,"dwc:class=""Insecta""",,"RUN_HAS_RESULT","COMPLIANT","dwc:class has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",8,"dwc:class=""Insetca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",9,"dwc:class=""Insetca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",10,"dwc:class=""Magnoliopsida""",,"RUN_HAS_RESULT","COMPLIANT","dwc:class has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",11,"dwc:class=""Magnoliopsida""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority. Parameterized Source Authority has Dicotyledonae instead of Magnoliopsida", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",12,"dwc:class=""Magnoliophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority. Magnoliophyta is a Phylum - not a Class", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",13,"dwc:class=""herps""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",14,"dwc:class=""Dicotyledoneae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority. Parameterized Source Authority has Dicotyledonae instead of Magnoliopsida", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",15,"dwc:class=""Dicotyledoneae""",,"RUN_HAS_RESULT","COMPLIANT","dwc:class has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",16,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","the bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",1,"dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum is EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",2,"dwc:geodeticDatum=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum is EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",3,"dwc:geodeticDatum=""UTM""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",4,"dwc:geodeticDatum=""WGS84""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",5,"dwc:geodeticDatum=""epsg:4326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",6,"dwc:geodeticDatum=""6326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",7,"dwc:geodeticDatum=""7030""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",8,"dwc:geodeticDatum=""23032""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",9,"dwc:geodeticDatum=""ED50""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",10,"dwc:geodeticDatum=""International 1924""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",11,"dwc:geodeticDatum=""4326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",12,"dwc:geodeticDatum=""X""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",1,"dwc:decimalLatitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",1,"dwc:decimalLatitude=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",2,"dwc:decimalLatitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",3,"dwc:decimalLatitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",4,"dwc:decimalLatitude=""41.0554 N""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is not interpretable as a number", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",5,"dwc:decimalLatitude=""121.0534""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatitude is in not in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",6,"dwc:decimalLatitude=""-99.2314""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatitude is in not in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",8,"dwc:decimalLatitude=""18.835941""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",9,"dwc:decimalLatitude=""41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",1,"dwc:kingdom=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:kingdom is EMPTY", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",2,"dwc:kingdom=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:kingdom is EMPTY", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",3,"dwc:kingdom=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",4,"dwc:kingdom=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",5,"dwc:kingdom="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:kingdom is EMPTY", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",6,"dwc:kingdom=""Animalia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:kingdom has an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",7,"dwc:kingdom=""Metazoa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:kingdom has an equivalent at the rank of Kingdom in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",8,"dwc:kingdom=""Metazoa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",9,"dwc:kingdom=""animals""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority. This may be fixed using fuzzy matching at the AMENDMENT stage", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",10,"dwc:kingdom=""Fungi""",,"RUN_HAS_RESULT","COMPLIANT","dwc:kingdom has an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",11,"dwc:kingdom=""fungus""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",12,"dwc:kingdom=""dwc:kingdom""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",13,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",1,"dwc:scientificName=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",2,"dwc:scientificName="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",3,"dwc:scientificName=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",4,"dwc:scientificName=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",5,"dwc:scientificName=""---""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",6,"dwc:scientificName=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",7,"dwc:scientificName=""Hakea decurrens ssp. Physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",8,"dwc:scientificName=""Hakea"", dwc:genus=""Hakea""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",9,"dwc:scientificName=""Hakea decurrens""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",10,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",11,"dwc:scientificName=""dwc:scientificName""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",1,"dwc:order=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:order is EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",2,"dwc:order="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:order is EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",3,"dwc:order=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:order is EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",4,"dwc:order=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",5,"dwc:order=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",6,"dwc:order=""Lepidoptera""",,"RUN_HAS_RESULT","COMPLIANT","dwc:order has an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",7,"dwc:order=""Nymphalidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority. Nymphalidae is a family, not an order", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",8,"dwc:order=""butterflies""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",9,"dwc:order=""dwc:order""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",10,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","the bdq:sourceAuthority was not available or unreachable", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",1,"dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",2,"dwc:year=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",3,"dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is in RANGE", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",4,"dwc:year=""194x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is not an interpretable as an integer", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",5,"dwc:year=""1952""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is in RANGE", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",6,"dwc:year=""9999""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is not in RANGE. The value in year has not yet come to pass.", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",7,"dwc:year=""1599""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is not in RANGE. This result assumes the bdq:earliestDate default value of 1600.", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",8,"dwc:year=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is not in RANGE. This result assumes the bdq:earliestDate default value of 1600.", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",9,"dwc:year=""XXXX""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is not an interpretable as an integer", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",10,"dwc:year=""2000""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is in RANGE", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",11,"dwc:year=""1900""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is in RANGE", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",1,"dwc:eventDate=""2021_10_29"", dwc:verbatimEventDate=""February 2022""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",2,"dwc:eventDate="""", dwc:verbatimEventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimEventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",3,"dwc:eventDate="""", dwc:verbatimEventDate=""X""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimEventDate is cannot be interpreted as a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",4,"dwc:eventDate="""", dwc:verbatimEventDate=""Friday 29th Oct. 2021""","dwc:eventDate=""2021-10-29""","AMENDED","dwc:eventDate=""2021-10-29""","dwc:verbatimEventDate contains an interpretable value (assuming some external lookup thesauri)", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",5,"dwc:eventDate="""", dwc:verbatimEventDate=""03/04/2020""",,"NOT_AMENDED",,"dwc:verbatimEventDate is ambiguous", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",2,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"",",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",3,"dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",4,"dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",5,"dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",6,"dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",8,"dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",9,"dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",10,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",11,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is not zero", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",1,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",2,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",3,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",4," dwc:day=""15"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",5," dwc:day=""32"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",6," dwc:day=""x"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",7," dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",8," dwc:day="""", dwc:month="""", dwc:year=""194x"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",9," dwc:day=""15"", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day and dwc:year are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",10," dwc:day=""30"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month and dwc:year are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",11," dwc:day=""x"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month and dwc:year are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",12," dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month, dwc:year and dwc:evendate are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",13," dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month, dwc:year and dwc:evendate are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",14," dwc:day="""", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month, dwc:year and dwc:evendate are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",15," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-12-09T12:34"", dwc:verbatimEventDate=""9/12/1949"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:evendate and dwc:verbatimEventDate are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",16," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""9/15/1949"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:verbatimEventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",17," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear and dwc:endDayOfYear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",18," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""0"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear and dwc:endDayOfYear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",19," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""x"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear and dwc:endDayOfYear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",20," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate, dwc:startDayOfYear and dwc:endDayOfYear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",21," dwc:day=""15"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month, dwc:year, dwc:startDayOfYear and dwc:endDayOfYear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",22," dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month, dwc:year, dwc:startDayOfYear and dwc:endDayOfYear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",23," dwc:day=""15"", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day and dwc:month are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",24," dwc:day="""", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",25," dwc:day="""", dwc:month=""v"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",26," dwc:day="""", dwc:month="""", dwc:year=""2004"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""366"", dwc:endDayOfYear=""366""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year, dwc:startDayOfYear and dwc:endDayOfYear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",27,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""2021-06-03T24:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:verbatimEventDate is not EMPTY","`" +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",28," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""1949-01-15T12:34/"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:verbatimEventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",1,"dc:type=""Event""",,"RUN_HAS_RESULT","COMPLIANT","dc:type matches a term in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",2,"dc:type=""StillerImage""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",3,"dc:type=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",4,"dc:type=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",5,"dc:type=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",6,"dc:type=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",7,"dc:type="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",8,"dc:type=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",9,"dc:type=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",10,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority not available or unreachable", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",11,"dc:type=""dc:type""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",1,"dwc:eventDate=""2021-10-29"", dwc:year="""", dwc:month="""", dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",2,"dwc:eventDate="""", dwc:year="""", dwc:month="""", dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year EMPTY", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",3,"dwc:eventDate="""", dwc:year=""X"", dwc:month="""", dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is an uninterpretable value", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",4,"dwc:eventDate="""", dwc:year=""2021"", dwc:month=""10""","dwc:eventDate=""2021-10""","AMENDED","dwc:eventDate=""2021-10""","dwc:year and dwc:month are interpretable values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",5,"dwc:eventDate="""", dwc:year=""2021"", dwc:month=""10"", dwc:day=""29""","dwc:eventDate=""2021-10-29""","AMENDED","dwc:eventDate=""2021-10-29""","dwc:year, dwc:month and dwc:day are interpretable values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",6,"dwc:eventDate="""", dwc:year=""2021"", dwc:month="""", dwc:day=""29""","dwc:eventDate=""2021-??-29""","AMENDED",,"dwc:year and dwc:day are interpretable values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",7,"dwc:eventDate="""", dwc:year=""2021"", dwc:month=""X"", dwc:day=""29""","dwc:eventDate=""2021-??-29""","AMENDED",,"dwc:year and dwc:day are interpretable values. Dwc:month is ambiguous as either missing or ""10""", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",8,"dwc:eventDate="""", dwc:month=""2021"", dwc:day=""29""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",9,"dwc:eventDate="""", dwc:year=""2021""","dwc:eventDate=""2021""","AMENDED","dwc:eventDate=""2021""","dwc:year is an interpretable value", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",1,"dwc:establishmentMeans=""native""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",2,"dwc:establishmentMeans=""blah""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",3,"dwc:establishmentMeans=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",4,"dwc:establishmentMeans=""…""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",5,"dwc:establishmentMeans=""?""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",6,"dwc:establishmentMeans="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:establishmentMeans is EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",7,"dwc:establishmentMeans=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:establishmentMeans is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",8,"dwc:establishmentMeans=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:establishmentMeans is EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",9,"dwc:establishmentMeans=""[null]""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",10,"dwc:establishmentMeans=""dwc:establishmentMeans""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",1,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",2,"dwc:continent=""Africa"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except continent EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",3,"dwc:continent="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",4,"dwc:continent="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",5,"dwc:continent="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",6,"dwc:continent="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",7,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",9,"dwc:continent="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Administrative geographic terms cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",10,"dwc:continent="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",11,"dwc:continent="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Administrative geographic terms cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",12,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Administrative geographic terms cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",13,"dwc:continent="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",14,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",15,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Neuquén"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",16,"dwc:continent="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",1,"dwc:decimalLongitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",2,"dwc:decimalLongitude=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",3,"dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",4,"dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",5,"dwc:decimalLongitude=""121.0534 W""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",6,"dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",7,"dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",8,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",9,"dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",1,"dwc:countryCode=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",2,"dwc:countryCode=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",3,"dwc:countryCode=""GL""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",4,"dwc:countryCode=""GRL""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",5,"dwc:countryCode=""XX""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",6,"dwc:countryCode=""Austria""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",7,"dwc:countryCode=""US""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",8,"dwc:countryCode=""CL""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",9,"dwc:countryCode=""AR""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",10,"dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",1,"dcterms:license=""CC0 1.0""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",2,"dcterms:license=""corrosive commons""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",3,"dcterms:license=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",4,"dcterms:license=""…""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",5,"dcterms:license=""?""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",6,"dcterms:license="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license is EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",7,"dcterms:license=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",8,"dcterms:license=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license is EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",9,"dcterms:license=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",1,"dwc:scientificName="""", dwc:genus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input terms are EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",2,"dwc:scientificName="""", dwc:genus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input terms are EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",3,"dwc:scientificName="""", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",4,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus="""", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""pyhsocarpa""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:genus is EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",5,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",6,"dwc:scientificName=""Hakea decurrens physocarpa"", dwc:genus="""", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",7,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",8,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","??", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",9,"dwc:scientificName=""Hakea decurrens ssp. ? physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",10,"dwc:scientificName=""Hakea decurrens ssp. Aff. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",11,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",12,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",13,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",14,"dwc:scientificName=""Hakea decurrens ssp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""pyhsocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",15,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""physocarpa"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",16,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet=""physocarpa"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",17,"dwc:scientificName=""Hakea"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",1,"dwc:geodeticDatum=""""","dwc:geodeticDatum=""EPSG:4326""","AMENDED","dwc:geodeticDatum=""EPSG:4326""","dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",2,"dwc:geodeticDatum=""[non-printing characters]""","dwc:geodeticDatum=""EPSG:4326""","AMENDED","dwc:geodeticDatum=""EPSG:4326""","dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",3,"dwc:geodeticDatum=""WGS84""",,"NOT_AMENDED",,"dwc:geodeticDatum contains and interpretable value", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",4,"dwc:geodeticDatum=""x""",,"NOT_AMENDED",,"dwc:geodeticDatum contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",1,"dc:type=""StillImage""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",2,"dc:type=""StillerImage""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",3,"dc:type=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",4,"dc:type=""…""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",5,"dc:type=""?""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",6,"dc:type="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",7,"dc:type=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",8,"dc:type=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",9,"dc:type=""dc:type""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",1,"dwc:basisOfRecord=""Preserved Specimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",2,"dwc:basisOfRecord=""Living Specimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",3,"dwc:basisOfRecord=""Fossil Specimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",4,"dwc:basisOfRecord=""Human Observation""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",5,"dwc:basisOfRecord=""Machine Observation""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",6,"dwc:basisOfRecord=""Taxon""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",7,"dwc:basisOfRecord="" Preserved Specimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",8,"dwc:basisOfRecord=""Preserved Specimen """,,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",9,"dwc:basisOfRecord="" Preserved Specimen """,,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",10,"dwc:basisOfRecord=""Literature""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",11,"dwc:basisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",12,"dwc:basisOfRecord=""dwc:PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes, value appears to be an IRI, these should be mapped to rdf:type", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",13,"dwc:basisOfRecord=""http://rs.tdwg.org/dwc/terms/PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes, value appears to be an IRI, these should be mapped to rdf:type", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",14,"dwc:basisOfRecord=""Preserved Specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes. Extra whitespace", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",15,"dwc:basisOfRecord=""preserved specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes. Incorrect capitalization", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",16,"dwc:basisOfRecord=""Preserved specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes. Incorrect capitalization", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",17,"dwc:basisOfRecord=""preservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes. Standard label not in camel case", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",18,"dwc:basisOfRecord=""Presence""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",19,"dwc:basisOfRecord=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",20,"dwc:basisOfRecord=""9""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",21,"dwc:basisOfRecord=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",22,"dwc:basisOfRecord=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",23,"dwc:basisOfRecord=""present""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:sourceAuthority service is not available, try again later", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",24,"dwc:basisOfRecord="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",25,"dwc:basisOfRecord=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",26,"dwc:basisOfRecord=""basisOfRecord""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",27,"dwc:basisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",28,"dc:type=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",29,"dc:type=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",1,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields are empty or missing", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",2,"dwc:taxonID=""123"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""" ",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",3,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID=""?"", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",4,"dwc:taxonID="""", dwc:scientificNameID=""XVF456"", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",5,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName=""Fred"", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",6,"dwc:taxonID=""taxonID"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",1,"dwc:minimumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",2,"dwc:minimumDepthInMeters=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",3,"dwc:minimumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumDepthInMeters is in range", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",4,"dwc:minimumDepthInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumDepthInMeters is in range", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",5,"dwc:minimumDepthInMeters=""12000""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumDepthInMeters is not in range", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",6,"dwc:minimumDepthInMeters=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is not interpretable as zero or positive value", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",7,"dwc:minimumDepthInMeters=""-100""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is not interpretable as zero or positive value", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",1,"dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",2,"dwc:minimumElevationInMeters=""0"", dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is equal to dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",3,"dwc:minimumElevationInMeters=""1"", dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumElevationInMeters is greater than dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",4,"dwc:minimumElevationInMeters=""-500"", dwc:maximumElevationInMeters=""-500""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is equal to dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",5,"dwc:minimumElevationInMeters=""8860"", dwc:maximumElevationInMeters=""8860""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is equal to dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",6,"dwc:minimumElevationInMeters=""-500"", dwc:maximumElevationInMeters=""500""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is less than dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",1,"dwc:coordinateUncertaintyInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:coordinateUncertaintyInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",2,"dwc:coordinateUncertaintyInMeters=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:coordinateUncertaintyInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",3,"dwc:coordinateUncertaintyInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:coordinateUncertaintyInMeters is out of range", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",4,"dwc:coordinateUncertaintyInMeters=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:coordinateUncertaintyInMeters is out of range", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",5,"dwc:coordinateUncertaintyInMeters=""20037510""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:coordinateUncertaintyInMeters is out of range", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",6,"dwc:coordinateUncertaintyInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:coordinateUncertaintyInMeters is in range", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",7,"dwc:coordinateUncertaintyInMeters=""20037509""",,"RUN_HAS_RESULT","COMPLIANT","dwc:coordinateUncertaintyInMeters is in range", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",1,"dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumElevation is EMPTY", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",1,"dwc:maximumElevationInMeters=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumElevation is EMPTY", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",2,"dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:maximumElevation is in is range", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",3,"dwc:maximumElevationInMeters=""-500""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumElevation is not in range", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",4,"dwc:maximumElevationInMeters=""8860""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumElevation is not in range", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",5,"dwc:maximumElevationInMeters=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maxElevation is not interpretable as a number or is ambiguous", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",1,"dwc:occurrenceStatus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",2,"dwc:occurrenceStatus=""X""",,"NOT_AMENDED",,"Input field contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",3,"dwc:occurrenceStatus=""1""","dwc:occurrenceStatus=""present""","AMENDED","dwc:occurrenceStatus=""present""","Input field contains interpretable value. This may be pushing it a little, but I would have interpreted 1/0 as present/absent", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",1,"dwc:occurrenceStatus=""present""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceStatus matches a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",2,"dwc:occurrenceStatus=""presence""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",3,"dwc:occurrenceStatus=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",4,"dwc:occurrenceStatus=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",5,"dwc:occurrenceStatus=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",6,"dwc:occurrenceStatus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",7,"dwc:occurrenceStatus="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",8,"dwc:occurrenceStatus=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",9,"dwc:occurrenceStatus=""[null]""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",10,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority not available or unreachable", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",1,"dwc:occurrenceStatus=""http://arctos.database.museum/guid/MSB:Mamm:233627""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""http://arctos.database.museum/guid/MSB:Mamm:233627"" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",2,"dwc:occurrenceStatus=""000866d2-c177-4648-a200-ead4007051b9""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""000866d2-c177-4648-a200-ead4007051b9"" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",3,"dwc:occurrenceStatus=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""anyOldTerm"" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",4,"dwc:occurrenceStatus=""…""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""..."" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",5,"dwc:occurrenceStatus=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""..."" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",6,"dwc:occurrenceStatus=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",7,"dwc:occurrenceStatus="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",8,"dwc:occurrenceStatus=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",9,"dwc:occurrenceStatus=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCUURENCESTATUS_EMPTY","OTHER",10,"dwc:occurrenceStatus=""present""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCUURENCESTATUS_EMPTY","OTHER",11,"dwc:occurrenceStatus=""abs""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",1,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority not available", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",2,"dwc:continent="""", dwc:country=""Australia"", dwc:countryCode="""", dwc:stateProvince=""WA"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countryCode=""AU"", dwc:stateProvince=""Western Australia""","AMENDED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countryCode=""AU"", dwc:stateProvince=""Western Australia""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",3,"dwc:continent="""", dwc:country=""Aust"", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""",,"NOT_AMENDED",,"Administrative geographic terms were not amended. dwc:country could be ""Austria"" or ""Australia"". Both have dwc:stateProvince starting with ""T""", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",4,"dwc:continent=""Australasia"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", stateProvince=""Tasmania"", dwc:CountryCode=""AU""","AMENDED","dwc:continent=""Australasia"", dwc:country=""Australia"", stateProvince=""Tasmania"", dwc:CountryCode=""AU""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",5,"dwc:continent=""x"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""",,"NOT_AMENDED",,"Administrative geographic terms were not amended. Dwc:""aust"" is ambiguous", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",6,"dwc:continent=""Australia"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""Sorell""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU"", dwc:stateProvince=""Tasmania""","AMENDED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU"", dwc:stateProvince=""Tasmania""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",7,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""Tasmania"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU""","AMENDED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""Victoria"", dwc:county="""", dwc:municipality=""Sorell""",,"NOT_AMENDED",,"Administrative geographic terms were not amended. dwc:municipality=""Sorell"" is in dwc:stateProvince=""Tasmania"", not ""Victoria""", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",9,"dwc:continent="""", dwc:country=""Australia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""Sorell""","dwc:continent=""Australasia"", dwc:countryCode=""AU"", dwc:stateProvince=""Tasmania""","AMENDED","dwc:continent=""Australasia"", dwc:countryCode=""AU"", dwc:stateProvince=""Tasmania""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",1,"dwc:decimalLatitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatiitude is EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",2,"dwc:decimalLatitude=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatiitude is EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",3,"dwc:decimalLatitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",4,"dwc:decimalLatitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",5,"dwc:decimalLatitude=""41.0554 N""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",6,"dwc:decimalLatitude=""121.0534""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",7,"dwc:decimalLatitude=""-99.2314""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",8,"dwc:decimalLatitude=""-41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",9,"dwc:decimalLatitude=""18.835941""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",10,"dwc:decimalLatitude=""41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",1,"dwc:taxonID=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",2,"dwc:taxonID=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",3,"dwc:taxonID=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",4,"dwc:taxonID=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",5,"dwc:taxonID=""123""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",6,"dwc:taxonID=""8fa58e08-08de-4ac1-b69c-1235340b7001""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",7,"dwc:taxonID=""https://www.gbif.org/species/212""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",8,"dwc:taxonID=""dwc:taxonID""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",1,"dwc:taxonID=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",2,"dwc:taxonID="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",3,"dwc:taxonID=""[non printing-characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",4,"dwc:taxonID=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",5,"dwc:taxonID=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",6,"dwc:taxonID=""Wallabia bicolor""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",7,"dwc:taxonID=""Wallabia bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",8,"dwc:taxonID=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",9,"dwc:taxonID=""bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",10,"dwc:taxonID=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",11,"dwc:taxonID=""wallaby""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",12,"dwc:taxonID=""Hakea decurrens ssp. physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",13,"dwc:taxonID=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",14,"dwc:taxonID=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID has an equivalent in the Parameterized Source Authority. The Australian Plant Census includes undescribed taxa using a formula so that they can be added to legislation", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",15,"dwc:taxonID=""dwc:scientificName""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",16,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was not Available or was unreachable", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",1,"dwc:genus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:genus is EMPTY", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",2,"dwc:genus="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:genus is EMPTY", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",3,"dwc:genus=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:genus is EMPTY", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",4,"dwc:genus=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",5,"dwc:genus=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",7,"dwc:genus=""Egernia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:genus has an equivalent at the rank of Genus in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",8,"dwc:genus=""Egernea""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority. This may be fixed using fuzzy matching at the AMENDMENT stage", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",9,"dwc:genus=""Scincidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority. Scincidae is an family not a genus", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",10,"dwc:genus=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:genus has an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",11,"dwc:genus=""skink""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",12,"dwc:genus=""Lizard""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",13,"dwc:genus=""dwc:genus""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",14,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was not Available or was unreachable", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",1,"dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields are EMPTY", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",2,"dwc:kingdom=""Plantae"", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",3,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",4,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",5,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",6,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",7,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",8,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",9,"dwc:kingdom="""", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",10,"dwc:kingdom="""", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",11,"dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",12,"dwc:kingdom="""", dwc:phylum=""Chordata"", dwc:class="""", dwc:order=""Rhopalocera"", dwc:family=""Muricidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",13,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",14,"dwc:kingdom=""Plantae"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",15,"dwc:kingdom=""Animalia"", dwc:phylum=""Magnoliophyta"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",16,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Magnoliopsida"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",17,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Myrtales"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",18,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",19,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",1,"dwc:day="""", dwc:month="""", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:day is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",2,"dwc:day=""15"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",3,"dwc:day=""32"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",4,"dwc:day=""x"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",5,"dwc:day="""", dwc:month="""", dwc:year=""1949""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",6,"dwc:day="""", dwc:month="""", dwc:year=""1949x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",7,"dwc:day=""15"", dwc:month="""", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",8,"dwc:day=""30"", dwc:month=""2"", dwc:year=""1952""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",9,"dwc:day=""x"", dwc:month=""2"", dwc:year=""1952""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is ambiguous", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",10,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",11,"dwc:day="""", dwc:month=""9"", dwc:year=""1949""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",12,"dwc:day=""15"", dwc:month=""1"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",13,"dwc:day=""15"", dwc:month=""10"", dwc:year=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",14,"dwc:day="""", dwc:month=""10"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",15,"dwc:day="""", dwc:month="""", dwc:year=""9999""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",16,"dwc:day="""", dwc:month="""", dwc:year=""1599""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",17,"dwc:day="""", dwc:month="""", dwc:year=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",18,"dwc:day="""", dwc:month=""0"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",19,"dwc:day="""", dwc:month=""13"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",20,"dwc:day="""", dwc:month=""99"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",21,"dwc:day=""99"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",22,"dwc:day=""29"", dwc:month=""2"", dwc:year=""1952""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range. Leap year", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",23,"dwc:day=""29"", dwc:month=""2"", dwc:year=""2000""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range. Leap year", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",24,"dwc:day=""29"", dwc:month=""2"", dwc:year=""1900""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range. Not a leap year", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",25,"dwc:day=""16"", dwc:month=""8"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",26,"dwc:day=""16"", dwc:month=""9"", dwc:year=""1948""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",27,"dwc:day=""2"", dwc:month=""1"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",1,"dwc:month=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",2,"dwc:month=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",3,"dwc:month=""2""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",4,"dwc:month=""9""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",5,"dwc:month=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",6,"dwc:month=""10""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",7,"dwc:month=""v""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month is ambiguous as ""v"" or ""5""", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",8,"dwc:month=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month is not in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",9,"dwc:month=""13""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month is not in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",10,"dwc:month=""99""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month is not in range", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",1,"dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",2,"dwc:day=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",3,"dwc:day=""-""",,"NOT_AMENDED",,"dwc:day is not a valid interpretable value", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",4,"dwc:day=""#""",,"NOT_AMENDED",,"dwc:day is not a valid interpretable value", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",5,"dwc:day=""X""","dwc:day=""10""","AMENDED","dwc:day=""10""","dwc:day is ambiguous, either a ""X"" or ""10""", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",6,"dwc:day=""IV""","dwc:day=""4""","AMENDED","dwc:day=""4""","dwc:day is ambiguous, either a ""IV"" or ""4""", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",7,"dwc:day=""5th Friday""",,"NOT_AMENDED",,"dwc:day is not a valid interpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",1,"dwc:month=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",2,"dwc:month=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",3,"dwc:month=""-""",,"NOT_AMENDED",,"dwc:month contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",4,"dwc:month=""#""",,"NOT_AMENDED",,"dwc:month contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",5,"dwc:month=""X""",,"NOT_AMENDED",,"dwc:month contains an ambiguous value. Could be ""X"" or ""10""", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",6,"dwc:month=""IV""","dwc:month=""4""","AMENDED","dwc:month=""4""","dwc:month contains aninterpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",7,"dwc:month=""October""","dwc:month=""10""","AMENDED","dwc:month=""10""","dwc:month contains an interpretable value", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",1,"dwc:eventDate="""", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",2,"dwc:eventDate=""1964-11-01T10:00-0600"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",3,"dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",4,"dwc:eventDate="""", dwc:startDayOfYear=""15""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",5,"dwc:eventDate="""", dwc:startDayOfYear=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:startDayOfYear is not in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",6,"dwc:eventDate="""", dwc:startDayOfYear=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:startDayOfYear is ambiguous, either ""X"" or ""No"" or ""10""ot in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",7,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:startDayOfYear=""15""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",8,"dwc:eventDate=""1963-03-08T14:07-0600"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",9,"dwc:eventDate="""", dwc:startDayOfYear=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",10,"dwc:eventDate="""", dwc:startDayOfYear=""365""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",14,"dwc:eventDate="""", dwc:startDayOfYear=""366""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is 366 and dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",1,"dwc:eventDate="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:endDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",3,"dwc:eventDate=""1949-09-15T12:34"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:endDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",4,"dwc:eventDate="""", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:endDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",5,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:endDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",6,"dwc:eventDate="""", dwc:endDayOfYear=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:endDayOfYear is ambiguous, either ""X"" or ""No"" or ""10""ot in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",7,"dwc:eventDate="""", dwc:endDayOfYear=""367""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:endDayOfYear is not in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",8,"dwc:eventDate="""", dwc:endDayOfYear=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:endDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",9,"dwc:eventDate="""", dwc:endDayOfYear=""366""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:endDayOfYear is 366 and dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",1,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear="""", dwc:eventDate=""2021-10-29""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",2,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear, dwc:endDayOfYear EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",3,"dwc:year="""", dwc:startDayOfYear=""X"", dwc:endDayOfYear="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",4,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""X"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",5,"dwc:year=""X"", dwc:startDayOfYear=""5"", dwc:endDayOfYear=""15"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is not interpretable as a valid year", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",6,"dwc:year=""2021"", dwc:startDayOfYear=""5"", dwc:endDayOfYear=""15"", dwc:eventDate=""""","dwc:eventDate=""2021-01-05/2021-01-15""","AMENDED","dwc:eventDate=""2021-01-05/2021-01-15""","dwc:eventDate was interpreted from dwc:year, dwc:startDayOfYear and dwc:endDayOfYear", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",7,"dwc:year=""1901"", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""25"", dwc:eventDate=""""","dwc:eventDate=""1901-01-15/1901-01-25""","AMENDED","dwc:eventDate=""1901-01-15/1901-01-25""","dwc:eventDate was interpreted from dwc:year, dwc:startDayOfYear and dwc:endDayOfYear", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",1,"dcterms:license=""""","dcterms:license=""""","NOT_AMENDED","dcterms:license=""""","dcterms:license EMPTY", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",2,"dcterms:license=""[non-printing characters]""","dcterms:license=""""","NOT_AMENDED","dcterms:license=""""","dcterms:license EMPTY", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",3,"dcterms:license=""X""",,"NOT_AMENDED",,"dcterms:license contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",4,"dcterms:license=""CC0""","dcterms:license=""http://creativecommons.org/publicdomain/zero/1.0/legalcode""","AMENDED","dcterms:license=""http://creativecommons.org/publicdomain/zero/1.0/legalcode""","Input field contains interpretable value", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",5,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",1,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields are EMPTY", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",2,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",3,"dwc:continent=""Africa"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:continent is a valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",4,"dwc:continent="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is a valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",5,"dwc:continent="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country is not valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",6,"dwc:continent="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is a valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",7,"dwc:continent="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country is an ambiguous name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",9,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",10,"dwc:continent="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is not valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",11,"dwc:continent="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is not valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",12,"dwc:continent="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country is not valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",13,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:stateProvince is a valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",14,"dwc:continent="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",15,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode matches dwc:stateProvice according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",16,"dwc:continent="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country matches dwc:countryCode according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",1,"dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:day is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",1,"dwc:day=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:day is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",2,"dwc:day=""15""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",3,"dwc:day=""32""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",4,"dwc:day=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is ambiguous, either ""x"", ""No"" or ""10""", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",5,"dwc:day=""30""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",6,"dwc:day=""99""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",7,"dwc:day=""29""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",8,"dwc:day=""2""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",9,"dwc:day=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",1,"dwc:taxonRank=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",2,"dwc:taxonRank="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",3,"dwc:taxonRank=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",4,"dwc:taxonRank=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",5,"dwc:taxonRank=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",6,"dwc:taxonRank=""ssp.""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",7,"dwc:taxonRank=""subsp.""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",8,"dwc:taxonRank=""cultivar""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",9,"dwc:taxonRank=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",10,"dwc:taxonRank=""12345""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",11,"dwc:taxonRank=""dwc:taxonRank""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",1,"dwc:taxonRank=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonRank is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",2,"dwc:taxonRank="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",3,"dwc:taxonRank=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",4,"dwc:taxonRank=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",5,"dwc:taxonRank=""kingdom""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",6,"dwc:taxonRank=""subkingdom""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",7,"dwc:taxonRank=""superfamily""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",8,"dwc:taxonRank=""species""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",9,"dwc:taxonRank=""especie""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",10,"dwc:taxonRank=""sp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",11,"dwc:taxonRank=""subspecies""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",12,"dwc:taxonRank=""ssp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",13,"dwc:taxonRank=""subsp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",14,"dwc:taxonRank=""cultivar""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",15,"dwc:taxonRank=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",16,"dwc:taxonRank=""dwctaxonRank""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",17,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",1,"dwc:taxonRank=""""",,"NOT_AMENDED",,"dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",2,"dwc:taxonRank=""[non-printing characters]""",,"NOT_AMENDED",,"dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",3,"dwc:taxonRank=""sp.""","dwc:taxonRank=""species""","AMENDED","dwc:taxonRank=""species""","dwc:taxonRank contains an interpretable value according to the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",4,"dwc:taxonRank=""sic.""",,"NOT_AMENDED",,"dwc:taxonRank does not contain an interpretable value according to the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",5,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",1,"dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumDepthInMeters is EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",1,"dwc:maximumDepthInMeters=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumDepthInMeters is EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",2,"dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:maximumDepthInMeters is in range", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",3,"dwc:maximumDepthInMeters=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumDepthInMeters is not in range", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",4,"dwc:maximumDepthInMeters=""1200""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumDepthInMeters is not in range", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",5,"dwc:maximumDepthInMeters=""9999""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumDepthInMeters is not in range", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",6,"dwc:maximumDepthInMeters=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumDepthInMeters is ambiguous as either ""x"", ""no"" or ""10""", +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",1,"dwc:eventDate=""1880-05-08""","bdq:precisionInSeconds=""86400""","RUN_HAS_RESULT","bdq:precisionInSeconds=""86400""",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",2,"dwc:eventDate=""1880-05-08/10""","bdq:precisionInSeconds=""86400""","RUN_HAS_RESULT","bdq:precisionInSeconds=""86400""",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",3,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",4,"dwc:eventDate=""95""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",5,"dwc:eventDate=""X""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",6,"dwc:eventDate=""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z""","bdq:precisionInSeconds=""0.01""","RUN_HAS_RESULT","bdq:precisionInSeconds=""0.01""",, diff --git a/src/main/resources/Test_data_7_2022-02-26.csv b/src/main/resources/Test_data_7_2022-02-26.csv new file mode 100644 index 0000000..5ca602b --- /dev/null +++ b/src/main/resources/Test_data_7_2022-02-26.csv @@ -0,0 +1,1180 @@ +"GitHub Issue","Number","GUID","Output Type","Label","Dimension","Line #","Input Fields","Output Fields","Response.Status","Response.Result","Comment","Explanation" +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",1,"dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.","dwc:countryCode is EMPTY" +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",2,"dwc:countryCode=GL""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",3,"dwc:countryCode=GRL""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except countryCode EMPTY.","dwc:countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value" +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",4,"dwc:countryCode=XX""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except countryCode EMPTY.","dwc:countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value " +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",5,"dwc:countryCode=Austria""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except countryCode EMPTY.","dwc:countryCode is NOT a valid ISO (ISO 3166-1-alpha-2 country codes) value " +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",6,"dwc:countryCode=""US""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country and countryCode EMPTY.","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value" +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",7,"dwc:countryCode=""CL""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.","dwc:countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value " +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",8,"dwc:countryCode=""AR""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.","dwc:countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value " +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",9,"dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.","dwc:countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value " +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",1,"dwc:country=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.","dwc:country is EMPTY" +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",8,"dwc:country=""Eswatini""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",9,"dwc:country=""Swaziland""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",10,"dwc:country=""Yugoslavia""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Yugoslavia is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",11,"dwc:country=""Congo""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country EMPTY. Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",16,"dwc:country=""United States Minor Outlying Islands""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country and countryCode EMPTY.","""United States Minor Outlying Islands"" is not a valid COUNTRY in The Getty Thesaurus of Geographic Names (2021-03-30)." +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",33,"dwc:country=""México""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",1,"dwc:phylum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Genus is EMPTY or missing" +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",2,"dwc:phylum="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Genus is composed of just white space" +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",3,"dwc:phylum=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","[TEMPORARY placeholder to include examples of some non-printing characters]" +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",4,"dwc:phylum=""[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",5,"dwc:phylum=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",6,"dwc:phylum=""Trachyophyta""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Phylum in the bdq:sourceAuthority","GBIF.org uses Trachyophyta for the Phylum including ferns" +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",7,"dwc:phylum=""Trachyophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Phylum in the Parameterized Source Authority","The Australian Plant Census uses Charophyta for the Phylum including ferns. Parameterized Source Authority." +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",8,"dwc:phylum=""Charophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority","GBIF.org uses Charophyta at classification level above Phylum" +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",9,"dwc:phylum=""Charophyta""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Phylum in the Parameterized Source Authority","The Australian Plant Census uses Charophyta as Phylum in the kingdom Plantae. Parameterized Source Authority." +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",10,"dwc:phylum=""Chordata""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Phylum in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",11,"dwc:phylum=""chordate""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",12,"dwc:phylum=""dwc:phylum""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",13,"dwc:phylum=""Chordata""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was not available or unreachable", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",1,"dwc:occurrenceID=""https://www.inaturalist.org/observations/43047701""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID conforms to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",2,"dwc:occurrenceID=""42""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID does not conform to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",3,"dwc:occurrenceID=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID does not conform to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",4,"dwc:occurrenceID=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID does not conform to a GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",5,"dwc:occurrenceID=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID does not conform to a GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",6,"dwc:occurrenceID=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dwc:occurrenceID is EMPTY or missing","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",7,"dwc:occurrenceID="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dwc:occurrenceID is EMPTY","Field is composed of just white space" +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",8,"dwc:occurrenceID=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dwc:occurrenceID is EMPTY","TEMPORARY placeholder - need to add examples of non-printing Characters" +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",1,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",2,"dwc:minimumDepthInMeters=""0"", dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",3,"dwc:minimumDepthInMeters=""1"", dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",4,"dwc:minimumDepthInMeters=""-1"", dwc:maximumDepthInMeters=""-1""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.","The values of dwc:minimumDepthInMeters or dwc:maximumDepthInMeters are not zero or a positive number" +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",5,"dwc:minimumDepthInMeters=""1200"", dwc:maximumDepthInMeters=""1200""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",6,"dwc:minimumDepthInMeters=""100"", dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dwc:dwc:minimumDepthInMeters are EMPTY","dwc:maximumDepthInMeters is EMPTY" +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",7,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""1200""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dwc:dwc:maximumDepthInMeters are EMPTY","dwc:minimumDepthInMeters is EMPTY" +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",8,"dwc:minimumDepthInMeters=""100"", dwc:maximumDepthInMeters=""50""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.","dwc:minimumDepthInMeters > maximumDepthInMeters" +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",1,"dwc:dateIdentified=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:dateIdentified is EMPTY", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",2,"dwc:dateIdentified=""X""","X","NOT_CHANGED",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",3,"dwc:dateIdentified=""10-28""","10-28","NOT_CHANGED",,"input field contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",4,"dwc:dateIdentified=""2021-28-10""","dwc:dateIdentified=""2021-10-28""","CHANGED","dwc:dateIdentified=""2021-10-28""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",5,"dwc:dateIdentified=""21-10-28""","dwc:dateIdentified=""2021-10-28""","CHANGED","dwc:dateIdentified=""2021-10-28""","Input field contains an interpretable value","Amendment based on dwc:year=""2021""" +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",6,"dwc:dateIdentified=""2021/10/28""","dwc:dateIdentified=""2021-10-28""","CHANGED","dwc:dateIdentified=""2021-10-28""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",7,"dwc:dateIdentified=""2021/04/03""",,"NOT_CHANGED",,"Input field contains an ambiguous value","Date could be 3rd of April or 4th of May" +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",7,"dwc:eventData=""2021/04/03""",,"NOT_CHANGED",,"Input field contains an ambiguous value","Date could be 3rd of April or 4th of May" +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",1,"dwc:family=""Agaricaceae""",,"EXTERNAL_PREREQUITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",2,"dwc:family=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Family is EMPTY or missing" +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",3,"dwc:family=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","TEMPORARY placeholder to include examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",4,"dwc:family="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Blank spaces present" +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",5,"dwc:family=[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",6,"dwc:family=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",7,"dwc:family=""Agaricaceae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",8,"dwc:family=""Agaricaceae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has Family in the bdq:sourceAuthority","This may be fixed using fuzzy matching at the AMENDMENT stage. Parameterized Source Authority." +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",9,"dwc:family=""Agaricacae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the Parameterized Source Authority","Parameterized Source Authority." +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",10,"dwc:family=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",11,"dwc:family=""kangaroos""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",12,"dwc:family=""Macropods""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the Parameterized Source Authority","Parameterized Source Authority" +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",13,"dwc:family=""dwc:family""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",1,"bdq:annotation=""dwc:locality does not match dwc:decimalLatitude""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. bdq:annotation is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",2,"bdq:annotation=""blah""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. bdq:annotation is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",3,"bdq:annotation=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. bdq:annotation is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",4,"bdq:annotation=""…""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. bdq:annotation is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",5,"bdq:annotation=""?""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. bdq:annotation is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",6,"bdq:annotation="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. bdq:annotation is EMPTY","Field just includes white space" +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",7,"bdq:annotation=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. bdq:annotation is EMPTY or Missing","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",8,"bdq:annotation=[non-printing characters]",,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. bdq:annotation is EMPTY","TEMPORARY place holder - need to add examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",9,"bdq:annotation=""bdq:annotation""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. bdq:annotation is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",1,"dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",2,"dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",3,"dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",4,"dwc:decimalLongitude=""121.0534 W""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.","dwc:decimalLongitude is NOT a number" +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",5,"dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.","dwc:decimalLongitude >180" +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",6,"dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.","dwc:decimalLongitude <-180" +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",7,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",8,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",9,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",10,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",11,"dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",12,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",13,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",14,"dwc:decimalLongitude=""-71.5310546742521"" ",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",1," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""" +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",," dwc:verbatimLatitude and dwc:verbatimLongitude and dwc:verbatimCoordinates were EMPTY","With VERBATIM, one wonders how much effort will be required." +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",2," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""" +dwc:verbatimSRS="""", dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatutide is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",3," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""" +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""139.923""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLongitude is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",4," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""" +dwc:verbatimSRS="""", dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatutide and dwc:decimalLongitude are NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",5," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""23 degrees 42.72 minutes south"", dwc:verbatimCoordinateSystem="""" +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimLatitude and dwc:verbatimLongitude and dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",6," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude=""x"", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""" +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimLatitude and dwc:verbatimLongitude were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",7," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""23 degrees south 185 degrees east"", dwc:verbatimCoordinateSystem="""", dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",8," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""x"", dwc:verbatimCoordinateSystem="""" +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",9," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem="""" +dwc:verbatimSRS=""EPSG:4326"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_CHANGED",,"dwc:verbatimCoordinateSystem is EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",10,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_CHANGED",,"dwc:verbatimCoordinateSRS is EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",11,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:verbatimSRS=""WDGB21"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_CHANGED",,"dwc:verbatimSRS contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",12,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimSRS=""EPSG:4326"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_CHANGED",,"Input fields contain ambiguous values", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",13,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139.92"", dwc:verbatimSRS=""EPSG:4326"", dwc:verbatimCoordinateSystem=""decimal degrees""","dwc:decimalLatitude=-23.712"", dwc:decimalLongitude=139.923"", dwc:geodeticDatim=""EPSG:4326""","CHANGED","dwc:decimalLatitude=-23.712"", dwc:decimalLongitude=139.923"", dwc:geodeticDatim=""EPSG:4326""","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",1,"dwc:eventDate=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",3,"dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",4,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",5,"dwc:eventDate=""1949-09-16T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",6,"dwc:eventDate=""1949-12-09T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate and verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",7,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",8,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",9,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",10,"dwc:eventDate=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",11,"dwc:eventDate=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",12,"dwc:eventDate=""1963-03-08T4""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",13,"dwc:eventDate=""1963-03-08T14:0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",14,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",15,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",16,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",17,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",18,"dwc:eventDate=""1962-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",19,"dwc:eventDate=""1964-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",20,"dwc:eventDate=""1963-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",21,"dwc:eventDate=""63""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",22,"dwc:eventDate=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",23,"dwc:eventDate=""1949-01-01""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",4,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",5,"dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",14,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",15,"dwc:eventDate=""1949-09-16T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",17,"dwc:eventDate=""1949-12-09T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate and verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",22,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",25,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",26,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",27,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",28,"dwc:eventDate=""1963-03-08T14:67-0600""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",29,"dwc:eventDate=""1963-03-08T14:07Z""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",30,"dwc:eventDate=""1963-03-08T4""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",31,"dwc:eventDate=""1963-03-08T14:0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",32,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",33,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",34,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",35,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",36,"dwc:eventDate=""1962-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY. eventDate in range", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",37,"dwc:eventDate=""1964-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY. eventDate in range", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",38,"dwc:eventDate=""1963-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",39,"dwc:eventDate=""63""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",40,"dwc:eventDate=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",1,"dcterms:license=""CC BY""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dcterms:license matches a term in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",2,"dcterms:license=""GPL""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",3,"dcterms:license=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",4,"dcterms:license=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dcterms:license does not match aterm in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",5,"dcterms:license=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dcterms:license does not match aterm in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",6,"dcterms:license=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dcterms:license is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",7,"dcterms:license="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dcterms:license is EMPTY","Field comprised of just white space" +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",8,"dcterms:license=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dcterms:license is EMPTY","TEMPORARY Placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",9,"dcterms:license=""CC BY""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",1,"dwc:minimumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",18,"dwc:minimumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",19,"dwc:minimumElevationInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",20,"dwc:minimumElevationInMeters=""-500""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumElevationInMeters and maximumElevationInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",21,"dwc:minimumElevationInMeters=""8860""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumElevationInMeters and maximumElevationInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",50,"dwc:minimumElevationInMeters=""400 ft""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.","Value in dwc:minimumElevation is NOT a number" +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",1,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",2,"dwc:locationID=""https://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD19, dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except locationID EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",3,"dwc:locationID="""", dwc:higherGeographyID=""http://vocab.getty.edu/tgn/1002020"", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except higherGeographyID EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",4,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent=""Africa"", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except continent EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",5,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody=""Southern Ocean"", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except waterbody EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",6,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup=""Antipodes Islands"", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except islandGroup EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",7,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island=""Robinson Crusoe Island"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except island EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",8,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",9,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",10,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Yugoslavia is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",11,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",12,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",13,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",14,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",15,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",16,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country and countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",17,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except stateProvince EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",18,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",19,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",20,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",21,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",22,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",23,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",24,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",25,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",26,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Neuquén"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",27,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",28,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",29,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",30,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",1,"dc:type=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input field, dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",2,"dc:type=""X""",,"NOT_CHANGED",,"Input field contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",3,"dc:type=""evnt""","dc:type=""Event""","CHANGED","dc:type=""Event""","Input field contains interpretable value", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",1,"dwc:country=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",2,"dwc:country=""Eswatini""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",3,"dwc:country=""Swaziland""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",4,"dwc:country=""Yugoslavia""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Yugoslavia is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",5,"dwc:country=""Congo""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",6,"dwc:country=""United States Minor Outlying Islands""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country and countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum="""" ",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatitude, dwc:decimalLongitude, dwc:geodeticDatum are EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",2,"dwc:decimalLatitude="""", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",3,"dwc:decimalLatitude=""-23.721"", dwc:decimalLongitude="""", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",4,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum="""" ",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",5,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDX93"" ",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:geodeticDatum uninterpretable", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",6,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ","dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""WGS84"" ","CHANGED","dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""WGS84"" ","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",7,"dwc:decimalLatitude=""-93.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"NOT_CHANGED",,"Input fields contain interpretable values","Conversion not possible as dwc:decimalLatitude was out of range" +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",8,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatitide contains uninterpretable value","Conversion not possible as dwc:decimalLatitude was uninterpretable" +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",9,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ","dwc:decimalLatitude=""-31.606985"", dwc:decimalLongitude=""129.776695"", dwc:geodeticDatum=""AGD66"" ","CHANGED","dwc:decimalLatitude=""-31.6056085"", dwc:decimalLongitude=""129.7780869"", dwc:geodeticDatum=""EPSG4326"" ","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",1,"dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",2,"dwc:scientificName="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Field is composed of just white space" +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",3,"dwc:scientificName=""[non printing-character]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","TEMPORARY placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",4,"dwc:scientificName=[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",5,"dwc:scientificName=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",6,"dwc:scientificName=""Wallabia bicolor""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",7,"dwc:scientificName=""Wallabia bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",8,"dwc:scientificName=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",9,"dwc:scientificName=""Walabia""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority","This may be corrected at the AMENDMENT Stage using fuzzy matching?" +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",10,"dwc:scientificName=""bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",11,"dwc:scientificName=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",12,"dwc:scientificName=""wallaby""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",13,"dwc:scientificName=""Hakea decurrens ssp. physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",14,"dwc:scientificName=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",15,"dwc:scientificName=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the Parameterized Source Authority","The Australian Plant Census includes undescribed taxa using a formula so that they can be added to legislation etc. Parameterized Source Authority." +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",16,"dwc:scientificName=""dwc:scientificName""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",17,"dwc:scientificName=""Wallabia bicolor""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was not Available or was unreachable", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",1,"dwc:occurrenceID=""https://www.inaturalist.org/observations/43047701""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID conforms to GUID structure", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",2,"dwc:occurrenceID=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID EMPTY","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",3,"dwc:occurrenceID="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID is EMPTY","Field is composed entirely of white space" +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",4,"dwc:occurrenceID=[non-printing characters]",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID is EMPTY","TEMPORARY placeholder to include examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",6,"dwc:occurrenceID=""---""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID is not EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",7,"dwc:occurrenceID=""?""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID is not EMPTY", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",1,"bdq:sourceAuthority="" https://invalid/invalidservice"", dwc:countryCode=""AX""",,"EXTERNAL_PREREQUISITES_NOTMET","bdq:sourceAuthority not available",, +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",2,"dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",3,"dwc:countryCode=""Australia""","dwc:countryCode=""AU""","CHANGED","dwc:countryCode=""AU""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",4,"dwc:countryCode=""Aust.""",,"NOT_CHANGED",,"Input field contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",5,"dwc:countryCode=""x""",,"NOT_CHANGED",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",1,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",2,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",3,"dwc:dateIdentified=""1963-03-08X14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",4,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",5,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",6,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",7,"dwc:dateIdentified="""", dwc:day=""32"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",8,"dwc:dateIdentified="""", dwc:day=""x"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",9,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",10,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""194x"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY","JRW: The year term exists and is NOT EMPTY." +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",11,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day and year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",12,"dwc:dateIdentified="""", dwc:day=""30"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",13,"dwc:dateIdentified="""", dwc:day=""x"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",14,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",15,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",16,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",17,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-12-09T12:34"", dwc:verbatimEventDate=""9/12/1949"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except eventDate and verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",18,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""9/15/1949"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",19,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",20,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""0"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",21,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""x"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",22,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",23,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day. Month, year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",24,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day. Month, year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",25,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",26,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",27,"dwc:dateIdentified=""1963-03-08T14"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",28,"dwc:dateIdentified=""1963-03-08T14:67-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:67-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",29,"dwc:dateIdentified=""1963-03-08T14:07Z"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07Z"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",30,"dwc:dateIdentified=""1963-03-08T4"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T4"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",31,"dwc:dateIdentified=""1963-03-08T14:0"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:0"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",32,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",33,"dwc:dateIdentified=""1963-03-08"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",34,"dwc:dateIdentified=""1963-03"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",35,"dwc:dateIdentified=""1963"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",36,"dwc:dateIdentified=""1963"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",37,"dwc:dateIdentified=""1963"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",38,"dwc:dateIdentified=""1963"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-11-01T10:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",39,"dwc:dateIdentified=""63"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""63"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",40,"dwc:dateIdentified=""0"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""0"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",41,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day and month are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",42,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",42,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""v"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",43,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""9999"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",44,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""1599"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",45,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""0"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",46,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""0"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",47,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""13"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",48,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""99"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",49,"dwc:dateIdentified="""", dwc:day=""99"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",50,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""XXXX"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",51,"dwc:dateIdentified="""", dwc:day=""29"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",52,"dwc:dateIdentified="""", dwc:day=""29"", dwc:month=""2"", dwc:year=""2000"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",53,"dwc:dateIdentified="""", dwc:day=""29"", dwc:month=""2"", dwc:year=""1900"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",54,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",55,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""1"", dwc:endDayOfYear=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",56,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""1"", dwc:endDayOfYear=""367""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",57,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""365"", dwc:endDayOfYear=""1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",58,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""366"", dwc:endDayOfYear=""366""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",59,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""2004"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""366"", dwc:endDayOfYear=""366""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",60,"dwc:dateIdentified="""", dwc:day=""16"", dwc:month=""8"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",61,"dwc:dateIdentified="""", dwc:day=""16"", dwc:month=""9"", dwc:year=""1948"", dwc:eventDate=""1949-09-16T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",62,"dwc:dateIdentified="""", dwc:day=""2"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate=""1949-01-01"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",63,"dwc:dateIdentified=""2021_06_03T24:00"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""2021-06-03T24:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",64,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""1949-01-15T12:34/"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",65,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""/1949-01-20T17:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",66,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""1949-01-15/2949-01-20"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",67,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""1500-01-01/2021-06-05"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",1,"dwc:countryCode="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",2,"dwc:countryCode=""GL"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",3,"dwc:countryCode=""GRL""dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",4,"dwc:countryCode=""XX"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",5,"dwc:countryCode=""Austria"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",6,"dwc:countryCode=""US"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except country and countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",7,"dwc:countryCode="""", dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",8,"dwc:countryCode="""", dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",9,"dwc:countryCode="""", dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",10,"dwc:countryCode="""", dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",11,"dwc:countryCode="""", dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",12,"dwc:countryCode="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",13,"dwc:countryCode=""CL"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.","Coordinated fall in Argentina, not Chile" +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",14,"dwc:countryCode=""AR"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",15,"dwc:countryCode=""MX"", dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",16,"dwc:countryCode="""", dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",2,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",3,"dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",4,"dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",5,"dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",6,"dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",8,"dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",9,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Orcinus orca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.","The species is marine and the location is an inland lake." +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",10,"dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Puma concolor""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",11,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Aegla neuquensis""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY."," The species is freshwater aquatic and the coordinates fall in a lake and thus COMPLIANT" +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",2,"dwc:eventDate=""X""","X","INTERNAL_PREREQUISITES_NOTMET",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",3,"dwc:eventDate=""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z""",,"NOT_CHANGED",,"Input field spans more than one year","dwc:year, dwc:month and dwc:day, dwc:startDayOfYear and dwc:endDayOfyear not changed" +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",4,"dwc:eventDate=""2007-03""","dwc:year=""2007"", dwc:month=""3""","CHANGED","dwc:year=""2007"", dwc:month=""3""","Input field contains an interpretable value","Assuming we treat dwc:eventDate as year-month" +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",5,"dwc:eventDate=""2021-10-29"", dwc:year=""2021""","dwc:month=""10"", dwc:day=""29""","CHANGED","dwc:month=""10"", dwc:day=""29""","Input field contains an interpretable value","dwc:year contained a valid value" +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",6,"dwc:eventDate=""2021-01-15/2021-02-02""","dwc:startDayOfYear=""15"", dwc:endDayOfYear=""33""","CHANGED","dwc:startDayOfYear=""15"", dwc:endDayOfYear=""33""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",1,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",2,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude="""", dwc:countryCode=""AU""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",3,"dwc:decimalLatitude="""", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",4,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLongitude and dwc:countryCode are EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",5,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AX""",,"NOT_CHANGED",,"dwc:countryCode is uninterpretable", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",6,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""185.87"", dwc:countryCode=""AU""",,"NOT_CHANGED",,"dwc:decimalLongitude is out of range", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",7,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""",,"NOT_CHANGED",,"dwc:decimalLatitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",8,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""","dwc:decimalLatitude=""-25.46""","CHANGED","dwc:decimalLatitude=""-25.46""","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",1,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"input field is EMPTY", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",2,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""x""",,"INTERNAL_PREREQUISITES_NOTMET",,"Input field contains an uninterpretable value","""x"" is ambiguous as either ""10"" or ""No"" or ""unknown""" +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",3,"dwc:minimumDepthInMeters=""25"", dwc:maximumDepthInMeters=""100"", dwc:verbatimDepth=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"Output fields are both NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",4,"dwc:minimumDepthInMeters=""11"", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""Min depth 10m""",,"NOT_CHANGED",,"Input and output fields are conflicting", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",5,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""11"", dwc:verbatimDepth=""Max depth 100m""",,"NOT_CHANGED",,"Input and output fields are conflicting", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",6," dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""11"", dwc:verbatimDepth=""Min depth 10m""","dwc:minimumDepthInMeters=""10""","CHANGED","dwc:minimumDepthInMeters=""10""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",7,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""10feet""","dwc:minimumDepthInMeters=""3.048"", dwc:maximumDepthInMeters=""3.048""","CHANGED","dwc:minimumDepthInMeters=""3.048"", dwc:maximumDepthInMeters=""3.048""","Input field contains interpretable values", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",8,"dwc:verbatimDepth=""Mindepth 10m, maxdepth=100""","dwc:minimumDepthInMeters=""10"", dwc:maximumDepthInMeters=""100""","CHANGED","dwc:minimumDepthInMeters=""10"", dwc:maximumDepthInMeters=""100""","Input field contains interpretable values", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",9,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""25.8-34.9m""","dwc:minimumDepthInMeters=""25.8"", dwc:maximumDepthInMeters=""34.9""","CHANGED","dwc:minimumDepthInMeters=""25.8"", dwc:maximumDepthInMeters=""34.9""","Input field contains interpretable values", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",1,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",2,"dwc:stateProvince=""San Isidro"", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except stateProvince EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",3,"dwc:stateProvince=""""dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",4,"dwc:stateProvince=""""dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",5,"dwc:stateProvince="""", dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",6,"dwc:stateProvince="""", dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",7,"dwc:stateProvince="""", dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",8,"dwc:stateProvince="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",9,"dwc:stateProvince="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",10,"dwc:stateProvince=""Rio Negro"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",11,"dwc:stateProvince=""Neuquén"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",12,"dwc:stateProvince="""", dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",13,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""UTM""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",14,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""WGS84""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",15,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""epsg:4326""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",16,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""6236""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",17,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""7030""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",18,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""23032""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",19,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""ED50""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",20,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""International 1924""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",21,"dwc:stateProvince="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""4326""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",22,"dwc:stateProvince="""", dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""4326""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",1,"dwc:taxon=""https://api.gbif.org/v1/species?name=Puma%20concolor""","dwc:taxonID=""gbif:2435099""","CHANGED","dwc:taxonID=""gbif:2435099""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",2,"dwc:taxonID=""https://api.gbif.org/v1/species?name=Puma%20concord""",,"NOT_CHANGED",,"Input field contains an uninterpretable value","input value cannot be found" +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",3,"dwc:taxonID=""https://api.gbif.org/v1/species?name=Puma%20concolor""",,"EXTERNAL_PREREQUISITES_NOTMET",,"Input field contains an interpretable value","dq:sourceAuthority unavailable" +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",4,"dwc:taxonID=""https://api.gbif.org/v1/species?name=""",,"INTERNAL_PREREQUISITES_NOTMET",,"All of dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family, dwc:genus and dwc:scientificName are EMPTY", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",5,"dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", and dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"All of dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family, dwc:genus and dwc:scientificName are EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",1,"dwc:abasisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",2,"dwc:abasisOfRecord=""PreservedSpec""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",3,"dwc:abasisOfRecord=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",4,"dwc:abasisOfRecord=""…""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",5,"dwc:abasisOfRecord=""?""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",6,"dwc:abasisOfRecord="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is EMPTY","Field just contains white space" +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",7,"dwc:abasisOfRecord=[non-printing characters]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is EMPTY","TEMPORARY place holder - need to add examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",8,"dwc:abasisOfRecord=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is EMPTY or Missing","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",9,"dwc:abasisOfRecord=""dwc:basisOfRecord""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",1,"dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",39,"dwc:geodeticDatum=""UTM""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",40,"dwc:geodeticDatum=""WGS84""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",41,"dwc:geodeticDatum=""epsg:4326""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",42,"dwc:geodeticDatum=""6326""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",43,"dwc:geodeticDatum=""7030""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except geodeticDatum EMPTY.","1730 (epsg:1730) is an ellipsoid not a datum" +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",44,"dwc:geodeticDatum=""23032""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",45,"dwc:geodeticDatum=""ED50""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",46,"dwc:geodeticDatum=""International 1924""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except geodeticDatum EMPTY.","International 1924 is an Ellipsoid not a Datum" +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",47,"dwc:geodeticDatum=""4326""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",1,"https://endpoint",,"EXTERNAL_PREREQUISITES_NOTMET","bdq:sourceAuthority not available",, +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",2,"dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"input field is EMPTY", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",3,"dwc:geodeticDatum=""x""",,"NOT_CHANGED",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",4,"dwc:geodeticDatum=""WGS8""",,"NOT_CHANGED",,"Input field contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",5,"dwc:geodeticDatum=""WGS84""","dwc:geodeticDatum=""EPSG:4326""","CHANGED","dwc:geodeticDatum=""EPSG:4326""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",6,"dwc:geodeticDatum=""epsg:4326""",,"NOT_CHANGED",,"Input field contains a valid code in the sourceAuthority.", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",2,"dwc:eventDate=""X""","dwc:eventDate=""X""","NOT_CHANGED","dwc:eventDate=""X""","Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",3,"dwc:eventDate=""10-28""","dwc:eventDate=""10-28""","NOT_CHANGED","dwc:eventDate=""10-28""","input field contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",4,"dwc:eventDate=""2021-28-10""","dwc:eventDate=""2021-28-10""","NOT_CHANGED","dwc:eventDate=""2021-28-10""","Input field contains an interpretable value","Assuming year-day-month input format" +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",5,"dwc:eventDate=""21-10-28""","dwc:eventDate=""21-10-28""","NOT_CHANGED","dwc:eventDate=""21-10-28""","input field contains an ambiguous value","Amendment based on dwc:year=""2021""" +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",6,"dwc:eventDate=""2021/10/28""","dwc:eventDate=""2021-28-10""","CHANGED","dwc:eventDate=""2021-28-10""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",1,"dwc:country="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",2,"dwc:country=""Eswatini"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",3,"dwc:country=""Swaziland"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",4,"dwc:country=""Yugoslavia"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except country EMPTY. Yugoslavia is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",5,"dwc:country=""Congo"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except country EMPTY. Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",6,"dwc:country="""", dwc:countryCode=""GL""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",7,"dwc:country="""", dwc:countryCode=""GRL""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",8,"dwc:country="""", dwc:countryCode=""XX""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",9,"dwc:country="""", dwc:countryCode=""Austria""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",10,"dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country and countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",11,"dwc:country="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except stateProvince EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",12,"dwc:country="""", dwc:countryCode=""CL""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",13,"dwc:country="""", dwc:countryCode=""AR""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",14,"dwc:country="""", dwc:countryCode=""AR""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",15,"dwc:country=""México"", dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",1,"dwc:basisOfRecord=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",2,"dwc:basisOfRecord=""X""",,"NOT_CHANGED",,"Input field, dwc:basisOfRecord contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",3,"dwc:basisOfRecord=""Pres.spec""","dwc:basisOfRecord=""PreservedSpecimen""","CHANGED","dwc:basisOfRecord=""PreservedSpecimen""","Input field, dwc:basisOfRecord contains interpretable value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",4,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",5,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",6,"dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",7,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",8,"dwc:eventDate=""1949-09-16T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",9,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",10,"dwc:eventDate=""1949-12-09T12:34""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate and verbatimEventDate are EMPTY","JRW: This test isn't about consistency between eventDate and verbatimEventDate. I would omit the Result.Comment" +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",11,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",12,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",13,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",14,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",15,"dwc:eventDate=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",16,"dwc:eventDate=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",17,"dwc:eventDate=""1963-03-08T4""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",18,"dwc:eventDate=""1963-03-08T14:0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",19,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",20,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",21,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",22,"dwc:eventDate=""1962-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",23,"dwc:eventDate=""1964-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",24,"dwc:eventDate=""1963-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",25,"dwc:eventDate=""63""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",26,"dwc:eventDate=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",27,"eventDate=""1949-01-01""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",1,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",2,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00-0600"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",3,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00-0600"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",4,"dwc:day=""15"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",5,"dwc:day=""32"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",6,"dwc:day=""x"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",7,"dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",8,"dwc:day="""", dwc:month="""", dwc:year=""194x"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",9,"dwc:day=""15"", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day and year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",10,"dwc:day=""30"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",11,"dwc:day=""x"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",12,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",13,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day, month, year and eventDate are EMPTY"," Day doesn't match eventDate day." +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",14,"dwc:day="""", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",15,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-12-09T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except eventDate and verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",16,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",17,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",18,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear=""0"", dwc:endDayOfYear=""20""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",19,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear=""x"", dwc:endDayOfYear=""20""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",20,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",21,"dwc:day=""15"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day. Month, year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",22,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day. Month, year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",23,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07-0600"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",24,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",25,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",26,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:67-0600"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",27,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07Z"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",28,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T4"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",29,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:0"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",30,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",31,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",32,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",33,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",34,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",35,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",36,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-11-01T10:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",37,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""63"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",38,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""0"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",39,"dwc:day=""15"", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day and month are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",40,"dwc:day="""", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",41,"dwc:day="""", dwc:month=""v"", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",42,"dwc:day="""", dwc:month="""", dwc:year=""9999"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",43,"dwc:day="""", dwc:month="""", dwc:year=""1599"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",44,"dwc:day="""", dwc:month="""", dwc:year=""0"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",45,"dwc:day="""", dwc:month=""0"", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",46,"dwc:day="""", dwc:month=""13"", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",47,"dwc:day="""", dwc:month=""99"", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",48,"dwc:day=""99"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",49,"dwc:day="""", dwc:month="""", dwc:year=""XXXX"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",50,"dwc:day=""29"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month and year are EMPTY. Prior to populating eventDate from day, month and year", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",51,"dwc:day=""29"", dwc:month=""2"", dwc:year=""2000"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month and year are EMPTY. Prior to populating eventDate from day, month and year", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",52,"dwc:day=""29"", dwc:month=""2"", dwc:year=""1900"", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month and year are EMPTY. Prior to populating eventDate from day, month and year", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",53,"dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",54,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear=""1"", dwc:endDayOfYear=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",55,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear=""1"", dwc:endDayOfYear=""367""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",56,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear=""365"", dwc:endDayOfYear=""1""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",57,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear=""366"", dwc:endDayOfYear=""366""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",58,"dwc:day="""", dwc:month="""", dwc:year=""2004"", dwc:eventDate="""", dwc:startDayOfYear=""366"", dwc:endDayOfYear=""366""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",59,"dwc:day=""16"", dwc:month=""8"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day, month, year and eventDate are EMPTY","Month doesn't match eventDate month." +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",60,"dwc:day=""16"", dwc:month=""9"", dwc:year=""1948"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day, month, year and eventDate are EMPTY"," Year doesn't match eventDate year." +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",61,"dwc:day=""2"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate=""1949-01-01"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY","Month does not match eventDate month. startDayOfYear does not match eventDate. endDayfYear does not match eventDate." +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",1,"dwc:verbatimElevation="""", dwc:minimumElevationInMeters=""25"", dwc:maximumElevationInMeters=""100""",,"INTERNAL_PREREQUISITES_NOTMET",,"input field is EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",2,"dwc:verbatimElevation=""x"", dwc:minimumElevationInMeters=""25"", dwc:maximumElevationInMeters=""100""",,"INTERNAL_PREREQUISITES_NOTMET",,"Input field contains an uninterpretable value","""x"" is ambiguous as either ""10"" or ""No"" or ""unknown""" +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",3,"dwc:verbatimElevation=""Min Elevation 10m"", dwc:minimumElevationInMeters=""11"", dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"Input and output fields are conflicting", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",4,"dwc:verbatimElevation=""Max Elevation 100m"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""110""",,"INTERNAL_PREREQUISITES_NOTMET",,"Input and output fields are conflicting", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",5,"dwc:verbatimElevation=""Min Elevation 10m"", dwc:maximumElevationInMeters=""11"", dwc:minimumElevationInMeters=""""","dwc:minimumElevationInMeters=""10""","CHANGED","dwc:minimumElevationInMeters=""10""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",6,"dwc:verbatimElevation=""10feet"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""3.048"", dwc:maximumElevationInMeters=""3.048""","CHANGED","dwc:minimumElevationInMeters=""3.048"", dwc:maximumElevationInMeters=""3.048""","Input field contains interpretable values", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",7,"dwc:verbatimElevation=""MinElevation 10m, maxElevation=100"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""10"", dwc:maximumElevationInMeters=""100""","CHANGED","dwc:minimumElevationInMeters=""10"", dwc:maximumElevationInMeters=""100""","Input field contains interpretable values", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",8,"dwc:verbatimElevation=""356-369m"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""356"", dwc:maximumElevationInMeters=""369""","CHANGED","dwc:minimumElevationInMeters=""356"", dwc:maximumElevationInMeters=""369""","Input field contains interpretable values", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",9,"dwc:verbatimElevation=""19375""","dwc:minimumElevationInMeters=""5905.5"", dwc:maximumElevationInMeters=""5905.5""","CHANGED","dwc:minimumElevationInMeters=""5905.5"", dwc:maximumElevationInMeters=""5905.5""","Input field contains interpretable values","Elevation assumed to be in feet not meters" +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",1,"dwc:dateIdentified=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. bdq:dateIdentified is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",2,"dwc:dateIdentified=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",3,"dwc:dateIdentified=""1963-03-08X14:07-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified EMPTY. ""1963-03-08X14:07-0600"" is not a valid ISO 8601-1:2019 date.", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",4,"dwc:dateIdentified=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",5,"dwc:dateIdentified=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",6,"dwc:dateIdentified=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",7,"dwc:dateIdentified=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",8,"dwc:dateIdentified=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",9,"dwc:dateIdentified=""1963-03-08T4""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",10,"dwc:dateIdentified=""1963-03-08T14:0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",11,"dwc:dateIdentified=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",12,"dwc:dateIdentified=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",13,"dwc:dateIdentified=""1963""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",14,"dwc:dateIdentified=""63""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",15,"dwc:dateIdentified=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",16,"dwc:dateIdentified=""2021_06_03T24:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.","24 no longer allowed in the hours position." +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",17,"dwc:dateIdentified=""X""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.","24 no longer allowed in the hours position." +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",1,"dwc:taxonID=""http://api.gbif.org/v1/species/8102122""","dwc:scientificName=""Harpullia pendula F.Muell.""","CHANGED","dwc:scientificName=""Harpullia pendula F.Muell.""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",2,"dwc:taxonID=""http://api.gbif.org/v1/species/8a""",,"NOT_CHANGED",,"Input field contains an uninterpretable value","input value cannot be found" +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",3,"dwc:taxonID=""http://api.gbif.org/v1/species/8102122""",,"EXTERNAL_PREREQUISITES_NOTMET",,"Input field contains an interpretable value","dq:sourceAuthority unavailable" +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",4,"dwc:taxonID=""http://api.gbif.org/v1/species/""",,"INTERNAL_PREREQUISITES_NOTMET",,"Input field is EMPTY", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",5,"dwc:taxonID="""", dwc:scientificName=""Harpullia pendula F.Muell.""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",6,"https://endpoint",,"EXTERNAL_PREREQUISITES_NOTMET",,"bdq:sourceAuthority service was not available", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",1,"dwc:dataGeneralizations=""placed on quarter degree grid""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:dataGeneralizations is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",2,"dwc:dataGeneralizations=""blah""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:dataGeneralizations is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",3,"dwc:dataGeneralizations=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:dataGeneralizations is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",4,"dwc:dataGeneralizations=""…""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:dataGeneralizations is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",5,"dwc:dataGeneralizations=""?""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:dataGeneralizations is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",6,"dwc:dataGeneralizations="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. dwc:dataGeneralizations is EMPTY","Field includes just white space" +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",7,"dwc:dataGeneralizations=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. dwc:dataGeneralizations is EMPTY or Missing","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",8,"dwc:dataGeneralizations=[non-printing characters]",,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. dwc:dataGeneralizations is EMPTY","TEMPORARY place holder - need to add examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",9,"dwc:dataGeneralizations=""dwc:dataGeneralizations""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:dataGeneralizations is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",1,,,"EXTERNAL_PREREQUISITES_NOTMET",,"bdq:sourceAuthority not available", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",2,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""135.43"", dwc:countryCode=""AX""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:countryCode is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",3,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",4,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",5,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""185.43"", dwc:countryCode=""""",,"NOT_CHANGED",,"dwc:decimalLongitude is out of range", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",6,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",7,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""x"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLongitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",8,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""135.43"", dwc:countryCode=""""","dwc:countryCode=""AU""","CHANGED","dwc:countryCode=""AU""","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",1,"dwc:occurrenceStatus=""""","dwc:occurrenceStatus=""present""","CHANGED","dwc:occurrenceStatus=""present""","Input field EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",2,"dwc:occurrenceStatus=""X""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input field contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",3,"dwc:occurrenceStatus=""1""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input field contains interpretable value", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",4,"dwc:occurrenceStatus=""absent""","dwc:occurrenceStatus=""absent""","NOT_CHANGED","dwc:occurrenceStatus=""absent""","Input field contains interpretable value", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",1,"dwc:dateIdentified="""", dwc:eventDate=""1949_0915T11:34""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. bdq:dateIdentified is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",2,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",3,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY. dateIdentified later than eventDate", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",4,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY. dateIdentified earlier than eventDate", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",5,"dwc:dateIdentified="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",6,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",7,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",8,"dwc:dateIdentified=""1963-03-08T14:67-0600"", dwc:eventDate=""1963-03-08T14:67-0600""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY","JRW: I think this should be INTERNAL_PREREQUISITES_NOT_MET as there is not a valid date from which to determine range/" +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",9,"dwc:dateIdentified=""1963-03-08T14:07Z"", dwc:eventDate=""1963-03-08T14:07Z""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY","JRW: I think this should be INTERNAL_PREREQUISITES_NOT_MET as there is not a valid date from which to determine range/" +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",10,"dwc:dateIdentified=""1963-03-08T4"", dwc:eventDate=""1963-03-08T4""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY","JRW: I think this should be INTERNAL_PREREQUISITES_NOT_MET as there is not a valid date from which to determine range." +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",11,"dwc:dateIdentified=""1963-03-08T14:0"", dwc:eventDate=""1963-03-08T14:0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY"," I think this should be INTERNAL_PREREQUISITES_NOT_MET as there is not a valid date from which to determine range/" +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",12,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:eventDate=""1963-03-08T14:07""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",13,"dwc:dateIdentified=""1963-03-08"", dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",14,"dwc:dateIdentified=""1963-03"", dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",15,"dwc:dateIdentified=""1963"", dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",16,"dwc:dateIdentified=""1963"", dwc:eventDate=""1962-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",17,"dwc:dateIdentified=""1963"", dwc:eventDate=""1964-11-01T10:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified and eventDate EMPTY. dateIdentified before eventDate", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",18,"dwc:dateIdentified=""1963"", dwc:eventDate=""1963-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",19,"dwc:dateIdentified=""63"", dwc:eventDate=""63""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",20,"dwc:dateIdentified=""0"", dwc:eventDate=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",21,"dwc:dateIdentified="""", dwc:eventDate=""1949-09-16T12:34""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",22,"dwc:dateIdentified="""", dwc:eventDate=""1949-01-01""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",23,"dwc:dateIdentified=""2021_06_03T24:00"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",1,"dwc:class=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Class is EMPTY or missing" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",2,"dwc:class=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Class only has whitespace" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",3,"dwc:class=[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",4,"dwc:class=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",5,"dwc:class=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the bdq:sourceAuthority","TEMPORARY placeholder to include examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",6,"dwc:class=""Insecta""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",7,"dwc:class=""Insecta""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Class in the Parameterized Source Authority","Paramaterized Source Authority" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",8,"dwc:class=""Insetca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the bdq:sourceAuthority","This may be fixed using fuzzy matching at the AMENDMENT stage" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",9,"dwc:class=""Insetca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the Parameterized Source Authority","Paramaterized Source Authority" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",10,"dwc:class=""Magnoliopsida""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",11,"dwc:class=""Magnoliopsida""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the Parameterized Source Authority","Parameterized Source Authority has Dicotyledonae instead of Magnoliopsida" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",12,"dwc:class=""Magnoliophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the bdq:sourceAuthority","Magnoliophyta is a Phylum - not a Class" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",13,"dwc:class=""herps""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",14,"dwc:class=""Dicotyledoneae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Class in the bdq:sourceAuthority","Parameterized Source Authority has Dicotyledonae instead of Magnoliopsida" +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",15,"dwc:class=""Dicotyledoneae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Class in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",16,"dwc:class=""Insecta""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",1,"dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",39,"dwc:geodeticDatum=""UTM""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",40,"dwc:geodeticDatum=""WGS84""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",41,"dwc:geodeticDatum=""epsg:4326""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",42,"dwc:geodeticDatum=""6326""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",43,"dwc:geodeticDatum=""7030""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",44,"dwc:geodeticDatum=""23032""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",45,"dwc:geodeticDatum=""ED50""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",46,"dwc:geodeticDatum=""International 1924""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except geodeticDatum EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",47,"dwc:geodeticDatum=""4326""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",48,"dwc:geodeticDatum=""X""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",1,"dwc:decimalLatitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",2,"dwc:decimalLatitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",3,"dwc:decimalLatitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",4,"dwc:decimalLatitude=""41.0554 N""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",5,"dwc:decimalLatitude=""121.0534""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",6,"dwc:decimalLatitude=""-99.2314""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",8,"dwc:decimalLatitude=""18.835941""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",9,"dwc:decimalLatitude=""41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",1,"dwc:kingdom=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Kingdom is EMPTY or missing" +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",2,"dwc:kingdom=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","TEMPORARY placeholder to include examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",3,"dwc:kingdom=[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",4,"dwc:kingdom=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",5,"dwc:kingdom="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Kingdom is composed of just white space" +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",6,"dwc:kingdom=""Animalia""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",7,"dwc:kingdom=""Metazoa""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Kingdom in the Parameterized Source Authority","Parameterized Source Authority" +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",8,"dwc:kingdom=""Metazoa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",9,"dwc:kingdom=""animals""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority","This may be fixed using fuzzy matching at the AMENDMENT stage" +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",10,"dwc:kingdom=""Fungi""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",11,"dwc:kingdom=""fungus""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",12,"dwc:kingdom=""dwc:kingdom""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",13,"dwc:kingdom=""Plantae""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",1,"dwc:scientificName=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is EMPTY","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",2,"dwc:scientificName="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is EMPTY","Field is composed entirely of white space" +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",3,"dwc:scientificName=[non-printing characters]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is EMPTY","TEMPORARY placeholder to include examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",4,"dwc:scientificName=[null]",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",5,"dwc:scientificName=""---""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",6,"dwc:scientificName=""?""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",7,"dwc:scientificName=""Hakea decurrens ssp. Physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",8,"dwc:scientificName=""Hakea"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",9,"dwc:scientificName=""Hakea decurrens""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",10,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",11,"dwc:scientificName=""dwc:scientificName""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",1,"dwc:order=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Genus is EMPTY or missing" +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",2,"dwc:order="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Genus is composed of just white space" +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",3,"dwc:order=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","[TEMPORARY placeholder to include examples of some non-printing characters]" +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",4,"dwc:order=[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",5,"dwc:order=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",6,"dwc:order=""Lepidoptera""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",7,"dwc:order=""Nymphalidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Order in the bdq:sourceAuthority","Nymphalidae is a family, not an order" +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",8,"dwc:order=""butterflies""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",9,"dwc:order=""dwc:order""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",10,"dwc:order=""Lepidoptera""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was not available or unreachable", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",1,"dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",9,"dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",10,"dwc:year=""194x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",13,"dwc:year=""1952""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",43,"dwc:year=""9999""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except year are EMPTY","The value in year has not yet come to pass." +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",44,"dwc:year=""1599""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except year are EMPTY"," This result assumes the bdq:earliestDate default value of 1600." +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",45,"dwc:year=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except year are EMPTY","This result assumes the bdq:earliestDate default value of 1600." +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",50,"dwc:year=""XXXX""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY. The value ""XXXX"" is not an integer.", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",52,"dwc:year=""2000""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",53,"dwc:year=""1900""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",1,"dwc:eventDate=""2021_10_29"", dwc:verbatimEventDate=""February 2022""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:eventDate is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",2,"dwc:eventDate="""", dwc:verbatimEventDate=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimEventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",3,"dwc:eventDate="""", dwc:verbatimEventDate=""X""",,"INTERNAL_PREREQUISITES_NOTMET",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",4,"dwc:eventDate="""", dwc:verbatimEventDate=""Friday 29th Oct. 2021""","dwc:eventDate=""2021-10-29""","CHANGED","dwc:eventDate=""2021-10-29""","Input field contains an interpretable value","Assuming some external lookup thesauri" +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",5,"dwc:eventDate="""", dwc:verbatimEventDate=""03/04/2020""",,"NOT_CHANGED",,"dwc:verbatimEventDate is ambiguous", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",2,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"",",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",3,"dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",4,"dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",5,"dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",6,"dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",8,"dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",9,"dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",10,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",11,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",1,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",2,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",3,"dwc:dateIdentified=""1963-03-08X14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except dateIdentified EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",4,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",5,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",6,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. A day alone is insufficient to determine an eventDate", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",7,"dwc:dateIdentified="""", dwc:day=""32"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. A day alone is insufficient to determine an eventDate", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",8,"dwc:dateIdentified="""", dwc:day=""x"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. A day alone is insufficient to determine an eventDate", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",9,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",10,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""194x"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY"," JRW: The year term exists and is NOT EMPTY, those are the only criteria for compliance." +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",11,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day and year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",12,"dwc:dateIdentified="""", dwc:day=""30"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",13,"dwc:dateIdentified="""", dwc:day=""x"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",14,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",15,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",16,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",17,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-12-09T12:34"", dwc:verbatimEventDate=""9/12/1949"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate and verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",18,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""9/15/1949"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",19,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY. startDayOfYear and endDayOfYear and not sufficient for an eventDate", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",20,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""0"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",21,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""x"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",22,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",23,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day. Month, year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",24,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day. Month, year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",25,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",26,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",27,"dwc:dateIdentified=""1963-03-08T14"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",28,"dwc:dateIdentified=""1963-03-08T14:67-0600"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:67-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",29,"dwc:dateIdentified=""1963-03-08T14:07Z"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07Z"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",30,"dwc:dateIdentified=""1963-03-08T4"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T4"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",31,"dwc:dateIdentified=""1963-03-08T14:0"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:0"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",32,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08T14:07"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",33,"dwc:dateIdentified=""1963-03-08"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03-08"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",34,"dwc:dateIdentified=""1963-03"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-03"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",35,"dwc:dateIdentified=""1963"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",36,"dwc:dateIdentified=""1963"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",37,"dwc:dateIdentified=""1963"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",38,"dwc:dateIdentified=""1963"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1963-11-01T10:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",39,"dwc:dateIdentified=""63"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""63"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",40,"dwc:dateIdentified=""0"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""0"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",41,"dwc:dateIdentified="""", dwc:day=""15"", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. A day and month alone are insufficient determine an eventDate", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",42,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. A month alone is insufficient determine an eventDate", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",42,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""v"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY. A month alone is insufficient to determine an eventDate.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",43,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""9999"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",44,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""1599"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",45,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""0"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",46,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""0"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY. A month alone is insufficient to determine an eventDate.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",47,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""13"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY. A month alone is insufficient to determine an eventDate.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",48,"dwc:dateIdentified="""", dwc:day="""", dwc:month=""99"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY. A month alone is insufficient to determine an eventDate.", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",49,"dwc:dateIdentified="""", dwc:day=""99"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. A day alone is insufficient to determine an eventDate", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",50,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""XXXX"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",51,"dwc:dateIdentified="""", dwc:day=""29"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",52,"dwc:dateIdentified="""", dwc:day=""29"", dwc:month=""2"", dwc:year=""2000"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",53,"dwc:dateIdentified="""", dwc:day=""29"", dwc:month=""2"", dwc:year=""1900"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",54,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",55,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""1"", dwc:endDayOfYear=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",56,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""1"", dwc:endDayOfYear=""367""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",57,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""365"", dwc:endDayOfYear=""1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",58,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""366"", dwc:endDayOfYear=""366""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",59,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year=""2004"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""366"", dwc:endDayOfYear=""366""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",60,"dwc:dateIdentified="""", dwc:day=""16"", dwc:month=""8"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",61,"dwc:dateIdentified="""", dwc:day=""16"", dwc:month=""9"", dwc:year=""1948"", dwc:eventDate=""1949-09-16T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",62,"dwc:dateIdentified="""", dwc:day=""2"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate=""1949-01-01"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",63,"dwc:dateIdentified=""2021_06_03T24:00"", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""2021-06-03T24:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except dateIdentified and eventDate EMPTY.","`" +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",64,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""1949-01-15T12:34/"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",65,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""/1949-01-20T17:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",66,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""1949-01-15/2949-01-20"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",67,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""1500-01-01/2021-06-05"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",1,"dc:type=""Event""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dc:type matches a term in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",2,"dc:type=""StillerImage""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",3,"dc:type=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",4,"dc:type=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",5,"dc:type=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",6,"dc:type=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",7,"dc:type="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",8,"dc:type=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",9,"dc:type=""Event""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. bdq:sourceAuthority not available or unreachable", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",10,"dc:type=""dc:type""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",10,"dc:type=""dc:type""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"DCMI service unavailable", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",1,"dwc:eventDate=""2021-10-29""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:eventDate is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",2,"dwc:year=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:year EMPTY", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",3,"dwc:year=""X""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:year contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",4,"dwc:year=""2021"", dwc:month=""10""","dwc:eventDate=""2021-10""","CHANGED","dwc:eventDate=""2021-10""","Input fields contain an interpretable values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",5,"dwc:year=""2021"", dwc:month=""10"", dwc:day=""29""","dwc:eventDate=""2021-10-29""","CHANGED","dwc:eventDate=""2021-10-29""","Input fields contain an interpretable values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",6,"dwc:year=""2021"", dwc:month="""", dwc:day=""29""",,"NOT_CHANGED",,"Input fields contain an ambiguous values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",7,"dwc:year=""2021"", dwc:month=""X"", dwc:day=""29""",,"NOT_CHANGED",,"Input fields contain an ambiguous values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",8,"dwc:month=""2021"", dwc:day=""29""",,"NOT_CHANGED",,"Input fields contain an ambiguous values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",9,"dwc:year=""2021""","dwc:eventDate=""2021""","CHANGED","dwc:eventDate=""2021""","Input fields contain an interpretable values", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",1,"dwc:establishmentMeans=""native""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:establishmentMeans is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",2,"dwc:establishmentMeans=""blah""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:establishmentMeans is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",3,"dwc:establishmentMeans=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:establishmentMeans is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",4,"dwc:establishmentMeans=""…""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:establishmentMeans is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",5,"dwc:establishmentMeans=""?""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:establishmentMeans is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",6,"dwc:establishmentMeans="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. dwc:establishmentMeans is EMPTY","Field just contains whitespace" +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",7,"dwc:establishmentMeans=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. dwc:establishmentMeans is EMPTY or Missing","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",8,"dwc:establishmentMeans=[non-printing characters]",,"RUN_HAS_RESULT","NOT_NOTIFIED","Any human readable explanation, e.g. dwc:establishmentMeans is EMPTY","TEMPORARY place holder - need to add examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",9,"dwc:establishmentMeans=""dwc:establishmentMeans""",,"RUN_HAS_RESULT","NOTIFY","Any human readable explanation, e.g. dwc:establishmentMeans is NOTEMPTY", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",1,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",2,"dwc:continent=""Africa"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except continent EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",3,"dwc:continent="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",4,"dwc:continent="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",5,"dwc:continent="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Yugoslavia is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",6,"dwc:continent="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country EMPTY. Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",7,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",9,"dwc:continent="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",10,"dwc:continent="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",11,"dwc:continent="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country and countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",12,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except stateProvince EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",13,"dwc:continent="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",14,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",15,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Neuquén"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",16,"dwc:continent="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",1,"dwc:decimalLongitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",24,"dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",25,"dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",26,"dwc:decimalLongitude=""121.0534 W""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",27,"dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",28,"dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",29,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",33,"dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",1,"dwc:countryCode=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",2,"dwc:countryCode=""GL""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",3,"dwc:countryCode=""GRL""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",4,"dwc:countryCode=""XX""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",5,"dwc:countryCode=""Austria""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",6,"dwc:countryCode=""US""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country and countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",7,"dwc:countryCode=""CL""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",8,"dwc:countryCode=""AR""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",9,"dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",1,"dcterms:license=""CC0 1.0""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dcterms:license is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",2,"dcterms:license=""corrosive commons""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dcterms:license is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",3,"dcterms:license=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dcterms:license is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",4,"dcterms:license=""…""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dcterms:license is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",5,"dcterms:license=""?""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dcterms:license is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",6,"dcterms:license="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dcterms:license is EMPTY","Filed composed of just white space" +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",7,"dcterms:license=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dcterms:license is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",8,"dcterms:license=[non-printing characters]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dcterms:license is EMPTY","TEMPORARY Placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",1,"dwc:scientificName="""", dwc:genus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided in at least one of the component terms to be validated","All component terms are EMPTY or missing" +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",2,"[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","TEMPORARY placeholder to include examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",3,"dwc:scientificName="""", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided in dwc:scientificName to be validated","dwc:scientificName is EMPTY" +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",4,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus="""", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""pyhsocarpa""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided in dwc:genus to be validated","dwc:genus is EMPTY" +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",5,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",6,"dwc:scientificName=""Hakea decurrens physocarpa"", dwc:genus="""", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",7,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",8,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. a value must be provided in dwc:genus to be validated","dwc:genus is EMPTY" +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",9,"dwc:scientificName=""Hakea decurrens ssp. ? physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",10,"dwc:scientificName=""Hakea decurrens ssp. Aff. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",11,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",12,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",13,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",14,"dwc:scientificName=""Hakea decurrens ssp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""pyhsocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",15,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""physocarpa"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",16,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet=""physocarpa"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",17,"dwc:scientificName=""Hakea"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",1,"dwc:geodeticDatum=""""","dwc:geodeticDatum=""EPSG:4326""","CHANGED","dwc:geodeticDatum=""EPSG:4326""","dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",2,"dwc:geodeticDatum=""WGS84""","dwc:geodeticDatum=""WGS84""","NOT_CHANGED",,"dwc:geodeticDatum contains and interpretable value", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",3,"dwc:geodeticDatum=""x""",,"NOT_CHANGED",,"dwc:geodeticDatum contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",1,"dc:type=""StillImage""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dc:type is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",2,"dc:type=""StillerImage""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dc:type is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",3,"dc:type=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dc:type is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",4,"dc:type=""…""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dc:type is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",5,"dc:type=""?""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dc:type is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",6,"dc:type="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dc:type is EMPTY","Field just composed of white space" +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",7,"dc:type=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dc:type is EMPTY or missing","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",8,"dc:type=[non-printing characters]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dc:type is EMPTY","TEMPORARY placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",9,"dc:type=""dc:type""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dc:type is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",1,"dwc:basisOfRecord=""Preserved Specimen""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",2,"dwc:basisOfRecord=""Living Specimen""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes","Default bdq:sourceAuthority vocabulary is the class terms in DarwinCore, see: https://dwc.tdwg.org/list/" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",3,"dwc:basisOfRecord=""Fossil Specimen""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",4,"dwc:basisOfRecord=""Human Observation""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",5,"dwc:basisOfRecord=""Machine Observation""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",6,"dwc:basisOfRecord=""Taxon""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",7,"dwc:basisOfRecord="" Preserved Specimen""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes","Leading whitespace" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",8,"dwc:basisOfRecord=""Preserved Specimen """,,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes","Trailing whitespace" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",9,"dwc:basisOfRecord="" Preserved Specimen """,,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord matches a standard label of one of the Darwin Core classes","Leading and trailing whitespace" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",10,"dwc:basisOfRecord=""Literature""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",11,"dwc:basisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes","Standard label includes a space" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",12,"dwc:basisOfRecord=""dwc:PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes, value appears to be an IRI, these should be mapped to rdf:type","Standard label does not include the namespace, use rdf:type for IRIs, not dwc:basisOfRecord." +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",13,"dwc:basisOfRecord=""http://rs.tdwg.org/dwc/terms/PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes, value appears to be an IRI, these should be mapped to rdf:type","Standard label does not include the namespace, use rdf:type for IRIs, not dwc:basisOfRecord" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",14,"dwc:basisOfRecord=""Preserved Specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes","Extra whitespace" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",15,"dwc:basisOfRecord=""preserved specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes","Incorrect capitalization" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",16,"dwc:basisOfRecord=""Preserved specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes","Incorrect capitalization" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",17,"dwc:basisOfRecord=""preservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes","Standard label not in camel case" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",18,"dwc:basisOfRecord=""Presence""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",19,"dwc:basisOfRecord=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",20,"dwc:basisOfRecord=""9""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",21,"dwc:basisOfRecord=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",22,"dwc:basisOfRecord=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",23,"dwc:basisOfRecord=""present""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. bdq:sourceAuthority service is not available, try again later", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",24,"dwc:basisOfRecord="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. provided value for dwc:basisOfRecord is EMPTY","provided value comprised of white space" +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",25,"dwc:basisOfRecord=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. provided value for dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",26,"dwc:basisOfRecord=""basisOfRecord""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. provided value for dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",27,"dwc:basisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:basisOfRecord matches term in the specified source authority vocabulary", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",28,"dc:type=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. provided value for dwc:basisOfRecord is EMPTY","TEMPORARY placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",1,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. no terms exist that identify that an entity exists","All fields are empty or missing" +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",2,"dwc:taxonID=""123"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""" ",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",3,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID=""?"", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",4,"dwc:taxonID="""", dwc:scientificNameID=""XVF456"", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",5,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName=""Fred"", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",6,"dwc:taxonID=""taxonID"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",1,"dwc:minimumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",2,"dwc:minimumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",3,"dwc:minimumDepthInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",4,"dwc:minimumDepthInMeters=""12000""",,"RUN_HAS_RESULT","NON_COMPLIANT","All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",5,"dwc:minimumDepthInMeters=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",1,"dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",2,"dwc:minimumElevationInMeters=""0"", dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",3,"dwc:minimumElevationInMeters=""1"", dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",4,"dwc:minimumElevationInMeters=""-500"", dwc:maximumElevationInMeters=""-500""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters and maximumElevationInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",5,"dwc:minimumElevationInMeters=""8860"", dwc:maximumElevationInMeters=""8860""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters and maximumElevationInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",6,"dwc:minimumElevationInMeters=""-500"", dwc:maximumElevationInMeters=""500""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters and maximumElevationInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",1,"dwc:coordinateUncertaintyInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",2,"dwc:coordinateUncertaintyInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except coordinateUncertaintyInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",3,"dwc:coordinateUncertaintyInMeters=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except coordinateUncertaintyInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",4,"dwc:coordinateUncertaintyInMeters=""20037510""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except coordinateUncertaintyInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",5,"dwc:coordinateUncertaintyInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except coordinateUncertaintyInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",6,"dwc:coordinateUncertaintyInMeters=""20037509""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except coordinateUncertaintyInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",1,"dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",2,"dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",3,"dwc:maximumElevationInMeters=""-500""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumElevationInMeters and maximumElevationInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",4,"dwc:maximumElevationInMeters=""8860""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumElevationInMeters and maximumElevationInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",5,"dwc:maximumElevationInMeters=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except minimumElevationInMeters and maximumElevationInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",1,"dwc:occurrenceStatus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input field EMPTY", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",2,"dwc:occurrenceStatus=""X""",,"NOT_CHANGED",,"Input field contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",3,"dwc:occurrenceStatus=""1""","dwc:occurrenceStatus=""present""","CHANGED","dwc:occurrenceStatus=""present""","Input field contains interpretable value","This may be pushing it a little, but I would have interpreted 1/0 as present/absent" +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",1,"dwc:occurrenceStatus=""present""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceStatus matches a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",2,"dwc:occurrenceStatus=""presence""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",3,"dwc:occurrenceStatus=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",4,"dwc:occurrenceStatus=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",5,"dwc:occurrenceStatus=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",6,"dwc:occurrenceStatus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dwc:occurrenceStatus is EMPTY or missing","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",7,"dwc:occurrenceStatus="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dwc:occurrenceStatus is EMPTY","Filed composed of just white space" +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",8,"dwc:occurrenceStatus=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. dwc:occurrenceStatus is EMPTY","TEMPORARY Placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",9,"dwc:occurrenceStatus=""present""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. bdq:sourceAuthority not available or unreachable", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",1,"dwc:occurrenceStatus=""http://arctos.database.museum/guid/MSB:Mamm:233627""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID = ""http://arctos.database.museum/guid/MSB:Mamm:233627"" means the field is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",2,"dwc:occurrenceStatus=""000866d2-c177-4648-a200-ead4007051b9""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID = ""000866d2-c177-4648-a200-ead4007051b9"" means the field is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",3,"dwc:occurrenceStatus=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID = ""anyOldTerm"" means the field is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",4,"dwc:occurrenceStatus=""…""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID = ""..."" means the field is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",5,"dwc:occurrenceStatus=""?""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID = ""..."" means the field is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",6,"dwc:occurrenceStatus=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID is EMPTY or missing","Field is EMPTY or missing" +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",7,"dwc:occurrenceStatus="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID is EMPTY","Field composed of just white space" +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",8,"dwc:occurrenceStatus=[non-printing characters]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceID is EMPTY","TEMPORARY placeholder - need to add examples of noin-preinting characters" +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCUURENCESTATUS_EMPTY","OTHER",9,"dwc:occurrenceStatus=""present""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceStatus is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCUURENCESTATUS_EMPTY","OTHER",10,"dwc:occurrenceStatus=""abs""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:occurrenceStatus is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",1,"dwc:continent="""", dwc:country=""Australia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"EXTERNAL_PREREQUISITES_NOTMET","bdq:sourceAuthority not available",, +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",2,"dwc:continent="""", dwc:country=""Australia"", dwc:countryCode="""", dwc:stateProvince=""WA"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countryCode=""AU"", dwc:stateProvince=""Western Australia""","CHANGED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countryCode=""AU"", dwc:stateProvince=""Western Australia""","Input fields contains interpretable values", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",3,"dwc:continent="""", dwc:country=""Aust"", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""",,"NOT_CHANGED",,"Input field contains ambiguous values","dwc:country could be ""Austria"" or ""Australia"". Both have dwc:stateProvince starting with ""T""" +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",4,"dwc:continent=""Australasia"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", stateProvince=""Tasmania"", dwc:CountryCode=""AU""","CHANGED","dwc:continent=""Australasia"", dwc:country=""Australia"", stateProvince=""Tasmania"", dwc:CountryCode=""AU""","Input fields contains interpretable values", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",5,"dwc:continent=""x"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""",,"NOT_CHANGED",,"Input field contains ambiguous values", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",6,"dwc:continent=""Australia"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""Sorell""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU"", dwc:stateProvince=""Tasmania""","CHANGED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU"", dwc:stateProvince=""Tasmania""","Input fields contains interpretable values", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",7,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""Tasmania"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU""","CHANGED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU""","Input fields contains interpretable values", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""Victoria"", dwc:county="""", dwc:municipality=""Sorell""",,"NOT_CHANGED",,"Input field contains ambiguous values","dwc:munisipality=""Sorell"" is in dwc:stateProvince=""Tasmania"", not ""Victoria""" +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",9,"dwc:continent="""", dwc:country=""Australia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""Sorell""","dwc:continent=""Australasia"", dwc:countryCode=""AU"", dwc:stateProvince=""Tasmania""","CHANGED","dwc:continent=""Australasia"", dwc:countryCode=""AU"", dwc:stateProvince=""Tasmania""","Input fields contains interpretable values", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",1,"dwc:decimalLatitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",2,"dwc:decimalLatitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",3,"dwc:decimalLatitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",4,"dwc:decimalLatitude=""41.0554 N""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",5,"dwc:decimalLatitude=""121.0534""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",6,"dwc:decimalLatitude=""-99.2314""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimaLatitude and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",8,"dwc:decimalLatitude=""18.835941""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",9,"dwc:decimalLatitude=""41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",4,"dwc:taxonId=[null]",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",5,"dwc:taxonId=""?""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",6,"dwc:taxonId=""123""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",7,"dwc:taxonId=""8fa58e08-08de-4ac1-b69c-1235340b7001""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",8,"dwc:taxonId=""https://www.gbif.org/species/212""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",9,"dwc:taxonId=""dwc:taxonID""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",1,"dwc:taxonID=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",2,"dwc:taxonID="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Field is composed of just white space" +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",3,"dwc:taxonID=""[non printing-character]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","TEMPORARY placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",4,"dwc:taxonID=[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",5,"dwc:taxonID=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",6,"dwc:taxonID=""Wallabia bicolor""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",7,"dwc:taxonID=""Wallabia bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",8,"dwc:taxonID=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",10,"dwc:taxonID=""bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",11,"dwc:taxonID=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",12,"dwc:taxonID=""wallaby""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",13,"dwc:taxonID=""Hakea decurrens ssp. physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",14,"dwc:taxonID=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",15,"dwc:taxonID=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the Parameterized Source Authority","The Australian Plant Census includes undescribed taxa using a formula so that they can be added to legislation etc. Parameterized Source Authority." +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",16,"dwc:taxonID=""dwc:scientificName""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",17,"dwc:taxonID=""Wallabia bicolor""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was not Available or was unreachable", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",1,"dwc:genus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Genus is EMPTY or missing" +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",2,"dwc:genus="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Genus has just blank spaces" +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",3,"dwc:genus=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","TEMPORARY placeholder to include examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",4,"dwc:genus=[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",5,"dwc:genus=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",6,"dwc:genus=""Egernia""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",7,"dwc:genus=""Egernia""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Genus in the Parameterized Source Authority","Parameterized Source Authority" +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",8,"dwc:genus=""Egernea""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Genus in the bdq:sourceAuthority","This may be fixed using fuzzy matching at the AMENDMENT stage" +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",9,"dwc:genus=""Scincidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Genus in the bdq:sourceAuthority","Scincidae is an family not a genus" +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",10,"dwc:genus=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",11,"dwc:genus=""skink""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",12,"dwc:genus=""Lizard""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent at the rank of Genus in the Parameterized Source Authority","Parameterized Source Authority" +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",13,"dwc:genus=""dwc:genus""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",14,"dwc:genus=""Egernia""",,"EXTERNAL_PREREQUITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was unavaialble or unreachable", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",1,"dwc:kingdom=[non printing characters], dwc:phylum=[non printing characters], dwc:class=[non printing characters], dwc:order=[non printing characters], dwc:family=[non printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided in one of the fields (kingdon, phylum, class, order, family) to be validated","TEMPORARY placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",2,"dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided in one of the fields (kingdon, phylum, class, order, family) to be validated","All fields (kingdon, phylum, class, order, family) are EMPTY or missing or include just white space" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",3,"dwc:kingdom=""Plantae"", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values are unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",4,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values are unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",5,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values are unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",6,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values re unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",7,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values are unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",8,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values are unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",9,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values are unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",10,"dwc:kingdom="""", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",11,"dwc:kingdom="""", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",12,"dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values unambiguously resolvable by the bdq:sourceAuthority","Not all fields need to be occupied" +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",13,"dwc:kingdom="""", dwc:phylum=""Chordata"", dwc:class="""", dwc:order=""Rhopalocera"", dwc:family=""Muricidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the combinations given cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",14,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the values are unambiguously resolvable by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",15,"dwc:kingdom=""Plantae"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the combinations given cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",16,"dwc:kingdom=""Animalia"", dwc:phylum=""Magnoliophyta"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the combinations given cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",17,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Magnoliopsida"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the combinations given cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",18,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Myrtales"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the combinations given cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",19,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the combinations given cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",20,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",1,"dwc:day="""", dwc:month="""", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. bdq:day is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",2,"dwc:day=""15"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",3,"dwc:day=""32"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. ""32 is out of range"" of possible values.", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",4,"dwc:day=""x"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. ""x"" is not an integer.", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",5,"dwc:day="""", dwc:month="""", dwc:year=""1949""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",6,"dwc:day="""", dwc:month="""", dwc:year=""1949x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",7,"dwc:day=""15"", dwc:month="""", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day and year are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",8,"dwc:day=""30"", dwc:month=""2"", dwc:year=""1952""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day, month and year are EMPTY. Invalid day for February.", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",9,"dwc:day=""x"", dwc:month=""2"", dwc:year=""1952""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month and year are EMPTY. ""x"" is not an integer.", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",10,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",11,"dwc:day="""", dwc:month=""9"", dwc:year=""1949""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",12,"dwc:day=""15"", dwc:month=""1"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day. Month, year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",13,"dwc:day=""15"", dwc:month=""10"", dwc:year=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day and month are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",14,"dwc:day="""", dwc:month=""10"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",15,"dwc:day="""", dwc:month="""", dwc:year=""9999""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",16,"dwc:day="""", dwc:month="""", dwc:year=""1599""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",17,"dwc:day="""", dwc:month="""", dwc:year=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",18,"dwc:day="""", dwc:month=""0"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",19,"dwc:day="""", dwc:month=""13"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",20,"dwc:day="""", dwc:month=""99"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",21,"dwc:day=""99"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",22,"dwc:day="""", dwc:month="""", dwc:year=""XXXX""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",23,"dwc:day=""29"", dwc:month=""2"", dwc:year=""1952""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY"," Leap year." +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",24,"dwc:day=""29"", dwc:month=""2"", dwc:year=""2000""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY","Leap year" +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",25,"dwc:day=""29"", dwc:month=""2"", dwc:year=""1900""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day, month and year are EMPTY","Not a leap year" +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",26,"dwc:day="""", dwc:month="""", dwc:year=""2004""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",27,"dwc:day=""16"", dwc:month=""8"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",28,"dwc:day=""16"", dwc:month=""9"", dwc:year=""1948""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",29,"dwc:day=""2"", dwc:month=""1"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",1,"dwc:month=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",2,"dwc:month=""2""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",3,"dwc:month=""9""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",4,"dwc:month=""1""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day. Month, year, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",5,"dwc:month=""10""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day and month are EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",6,"dwc:month=""v""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY. ""v"" is not a standard month number", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",7,"dwc:month=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY. ""0"" is not a standard month number", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",8,"dwc:month=""13""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY. ""13"" is not a standard month number", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",9,"dwc:month=""99""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month are EMPTY. ""99"" is not a standard month number", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",10,"dwc:month=""8""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",11,"dwc:month=""9""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",1,"dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",2,"dwc:day=""-""","-","NOT_CHANGED",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",3,"dwc:day=""#""","#","NOT_CHANGED",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",4,"dwc:day=""X""","dwc:day=""10""","CHANGED","dwc:day=""10""","Input field contains an interpretable value","Assuming we handle Roman numerals via external lookup?" +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",5,"dwc:day=""IV""","dwc:day=""4""","CHANGED","dwc:day=""4""","Input field contains an interpretable value","Assuming we handle Roman numerals via external lookup?" +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",6,"dwc:day=""5th Friday""","dwc:day=""29""","CHANGED","dwc:day=""29""","Input field contains an interpretable value","Assuming external lookup, and based on dwc:year=""2021"", dwc:month=""10""" +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",1,"dwc:month=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",2,"dwc:month=""-""","-","NOT_CHANGED",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",3,"dwc:month=""#""","#","NOT_CHANGED",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",4,"dwc:month=""X""","dwc:month=""10""","CHANGED","dwc:month=""10""","Input field contains an interpretable value","Assuming we handle Roman numerals via external lookup?" +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",5,"dwc:month=""IV""","dwc:month=""4""","CHANGED","dwc:month=""4""","Input field contains an interpretable value","Assuming we handle Roman numerals via external lookup?" +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",6,"dwc:month=""October""","dwc:month=""10""","CHANGED","dwc:month=""10""","Input field contains an interpretable value","Assuming external lookup" +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",1,"dwc:eventDate="""", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",2,"dwc:eventDate=""1964-11-01T10:00-0600"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",3,"dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",4,"dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",5,"dwc:eventDate="""", dwc:startDayOfYear=""15""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",6,"dwc:eventDate="""", dwc:startDayOfYear=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",7,"dwc:eventDate="""", dwc:startDayOfYear=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",8,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:startDayOfYear=""15""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",9,"dwc:eventDate=""1963-03-08T14:07-0600"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",10,"dwc:eventDate=""1963-03-08T4"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",11,"dwc:eventDate=""0"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",12,"dwc:eventDate="""", dwc:startDayOfYear=""1""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",13,"dwc:eventDate="""", dwc:startDayOfYear=""365""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",14,"dwc:eventDate="""", dwc:startDayOfYear=""366""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY"," No year given to confirm leap year." +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",1,"dwc:eventDate="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",3,"dwc:eventDate=""1964-11-01T10:00-0600"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",4,"dwc:eventDate=""1949-09-15T12:34"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day, month, year and eventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",5,"dwc:eventDate="""", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",6,"dwc:eventDate="""", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",7,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",8,"dwc:eventDate=""1963-03-08T14:07"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",9,"dwc:eventDate=""1963-03-08T14:07Z"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",10,"dwc:eventDate=""63"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",11,"dwc:eventDate=""0"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except dateIdentified and eventDate EMPTY.", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",12,"dwc:eventDate="""", dwc:endDayOfYear=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",13,"dwc:eventDate="""", dwc:endDayOfYear=""367""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",14,"dwc:eventDate="""", dwc:endDayOfYear=""1""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",15,"dwc:eventDate="""", dwc:endDayOfYear=""366""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except startDayOfYear and endDayOfYear are EMPTY"," No year given to confirm leap year." +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",16,"dwc:eventDate=""1949-01-01"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",1,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear="""", dwc:eventDate=""2021-10-29""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is NOT_EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",2,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear, dwc:endDayOfyear EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",3,"dwc:year="""", dwc:startDayOfYear=""X"", dwc:endDayOfYear="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",4,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""X"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",5,"dwc:year=""X"", dwc:startDayOfYear=""5"", dwc:endDayOfyear=""15"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input field contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",6,"dwc:year=""2021"", dwc:startDayOfYear=""5"", dwc:endDayOfyear=""15"", dwc:eventDate=""""","dwc:eventDate=""2021-01-05/2021-01-15""","CHANGED","dwc:eventDate=""2021-01-05/2021-01-15""","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",1,"dcterms:license=""""","dcterms:license=""""","NOT_CHANGED","dcterms:license=""""","Input field EMPTY", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",2,"dcterms:license=""X""",,"NOT_CHANGED",,"Input field contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",3,"dcterms:license=""CC0""","dcterms:license=""http://creativecommons.org/publicdomain/zero/1.0/legalcode""","CHANGED","dcterms:license=""http://creativecommons.org/publicdomain/zero/1.0/legalcode""","Input field contains interpretable value", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",4,"dcterms:license=""CC0""",,"EXTERNAL_PREREQUISTES_NOT_MET",,"bdq:resourceAuthority not available", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",1,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",2,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except locationID EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",3,"dwc:continent=""Africa"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except continent EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",4,"dwc:continent="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",5,"dwc:continent="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country EMPTY. Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",6,"dwc:continent="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except country EMPTY. Yugoslavia is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",7,"dwc:continent="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country EMPTY. Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",9,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",10,"dwc:continent="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",11,"dwc:continent="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",12,"dwc:continent="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except country and countryCode EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",13,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except stateProvince EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",14,"dwc:continent="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",15,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",16,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Neuquén"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, stateProvince, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",17,"dwc:continent="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except countryCode, decimaLatitude, and decimalLongitude EMPTY.", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",1,"dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. bdq:day is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",2,"dwc:day=""15""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",3,"dwc:day=""32""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. ""32"" is not a valid day of any month.", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",4,"dwc:day=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. ""x"" is not a standard day number", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",5,"dwc:day=""30""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",6,"dwc:day=""99""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except day are EMPTY. ""99"" is not a standard day number", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",7,"dwc:day=""29""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except day, month and year are EMPTY", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",8,"dwc:day=""2""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",9,"dwc:day=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except month, year, eventDate, startDayOfYear and endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",1,"dwc:taxonRank=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:taxonRANK is EMPTY or missing","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",2,"dwc:taxonRank="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:taxonRANK is EMPTY or missing","Field composed of just white space" +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",3,"dwc:taxonRank=[non-printing characters]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. dwc:taxonRANK is EMPTY or missing","TEMPORARY placeholder - need to add examples of non-printing characters" +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",4,"dwc:taxonRank=[null]",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",5,"dwc:taxonRank=""?""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",6,"dwc:taxonRank=""ssp.""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",7,"dwc:taxonRank=""subsp.""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",8,"dwc:taxonRank=""cultivar""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",9,"dwc:taxonRank=[anyOldTerm]",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",10,"dwc:taxonRank=""12345""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",11,"dwc:taxonRank=""dwc:taxonRank""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",1,"dwc:taxonRank=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Field is empty or missing" +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",2,"dwc:taxonRank="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","Field consists of just white space" +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",3,"dwc:taxonRank=[non-printing characters]",,"INTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. a value must be provided to be validated","TEMPORARY placeholder to include examples of some non-printing characters" +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",4,"dwc:taxonRank=[Null]",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",5,"dwc:taxonRank=""kingdom""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",6,"dwc:taxonRank=""subkingdom""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",7,"dwc:taxonRank=""superfamily""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",8,"dwc:taxonRank=""species""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",9,"dwc:taxonRank=""especie""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",10,"dwc:taxonRank=""sp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",11,"dwc:taxonRank=""subspecies""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",12,"dwc:taxonRank=""ssp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",13,"dwc:taxonRank=""subsp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",14,"dwc:taxonRank=""cultivar""",,"RUN_HAS_RESULT","COMPLIANT","Any human readable explanation, e.g. the value has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",15,"dwc:taxonRank=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",16,"dwc:taxonRank=""dwctaxonRank""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Any human readable explanation, e.g. the value does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",17,"dwc:taxonRank=""species""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Any human readable explanation, e.g. the bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",1,"dwc:taxonRank=""sp.""","dwc:taxonRank=""species""","CHANGED","dwc:taxonRank=""species""","Input field contains an interpretable value", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",2,"dwc:taxonRank=""sic.""",,"NOT_CHANGED",,"Input field contains an uninterpretable value","input value cannot be found" +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",3,"dwc:taxonRank=""sp.""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"Input field contains an interpretable value","dq:sourceAuthority unavailable" +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",4,"dwc:taxonRank=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input field is EMPTY", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",1,"dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",2,"dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except minimumElevationInMeters, maximumElevationInMeters, minimumDepthInMeters, and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",3,"dwc:maximumDepthInMeters=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",4,"dwc:maximumDepthInMeters=""1200""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",5,"dwc:maximumDepthInMeters=""9999""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",6,"dwc:maximumDepthInMeters=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except minimumDepthInMeters and maximumDepthInMeters EMPTY.", +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",1,"dwc:eventDate=""1880-05-08""","bdq:precisionInSeconds=""86400""","RUN_HAS_RESULT","bdq:precisionInSeconds=""86400""",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",2,"dwc:eventDate=""1880-05-08/10","bdq:precisionInSeconds=""86400""","RUN_HAS_RESULT","bdq:precisionInSeconds=""86400""",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",3,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED","dwc:eventDate EMPTY", +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",4,"dwc:eventDate=""95""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",5,"dwc:eventDate=""X""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",6,"dwc:eventDate=""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z""","bdq:precisionInSeconds=""0.01""","RUN_HAS_RESULT","bdq:precisionInSeconds=""0.01""",, diff --git a/src/main/resources/Test_data_9_2022-03-04.csv b/src/main/resources/Test_data_9_2022-03-04.csv new file mode 100644 index 0000000..6681896 --- /dev/null +++ b/src/main/resources/Test_data_9_2022-03-04.csv @@ -0,0 +1,997 @@ +"GitHub Issue","Number","GUID","Output Type","Label","Dimension","Line #","Input Fields","Output Fields","Response.Status","Response.Result","Comment","Explanation" +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",1,"dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",2,"dwc:countryCode=""GL""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",3,"dwc:countryCode=""GRL""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is NOT a valid ISO (ISO 3166-1-alpha-2 country codes) value ", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",4,"dwc:countryCode=""XX""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is NOT a valid ISO (ISO 3166-1-alpha-2 country codes) value ", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",5,"dwc:countryCode=""Austria""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is NOT a valid ISO (ISO 3166-1-alpha-2 country codes) value ", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",6,"dwc:countryCode=""US""",,"RUN_HAS_RESULT","COMPLIANT","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",7,"dwc:countryCode=""CL""",,"RUN_HAS_RESULT","COMPLIANT","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",8,"dwc:countryCode=""AR""",,"RUN_HAS_RESULT","COMPLIANT","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/20",20,"0493bcfb-652e-4d17-815b-b0cce0742fbe","VALIDATION","COUNTRYCODE_NOTSTANDARD","SPACE",9,"dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","dwc countryCode is a valid ISO (ISO 3166-1-alpha-2 country codes) value", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",1,"dwc:country=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:country is EMPTY", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",2,"dwc:country=""Eswatini""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is a valid country name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",3,"dwc:country=""Swaziland""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Eswatini is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",4,"dwc:country=""Yugoslavia""",,"RUN_HAS_RESULT","COMPLIANT","Yugoslavia is the preferred name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",5,"dwc:country=""Congo""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",6,"dwc:country=""United States Minor Outlying Islands""",,"RUN_HAS_RESULT","NOT_COMPLIANT","""United States Minor Outlying Islands"" is not a valid COUNTRY in The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/21",21,"69b2efdc-6269-45a4-aecb-4cb99c2ae134","VALIDATION","COUNTRY_NOTSTANDARD","SPACE",7,"dwc:country=""México""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is a valid country name according to The Getty Thesaurus of Geographic Names (2021-03-30).", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",1,"dwc:phylum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:phylum is EMPTY", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",2,"dwc:phylum="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:phylum consists of white space", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",3,"dwc:phylum=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:phylum is EMPTY", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",4,"dwc:phylum=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylum is NULL, ""Null"", ""null"". ""/n"", ""9999"" etc.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",5,"dwc:phylum=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylum does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",6,"dwc:phylum=""Trachyophyta""",,"RUN_HAS_RESULT","COMPLIANT","dwc:phylum has an equivalent at the rank of Phylum in the bdq:sourceAuthority. GBIF.org uses Trachyophyta for the Phylum including ferns", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",7,"dwc:phylum=""Trachyophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylum does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority. The Australian Plant Census uses Charophyta for the Phylum including ferns", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",8,"dwc:phylum=""Charophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylum does not have an equivalent at the rank of Phylum in the bdq:sourceAuthority. GBIF.org uses Charophyta at classification level above Phylum", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",9,"dwc:phylum=""Charophyta""",,"RUN_HAS_RESULT","COMPLIANT","dwc:phylum has an equivalent at the rank of Phylum in the bdq:sourceAuthority. The Australian Plant Census uses Charophyta as Phylum in the kingdom Plantae.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",10,"dwc:phylum=""Chordata""",,"RUN_HAS_RESULT","COMPLIANT","dwc:phylum has an equivalent at the rank of Phylum in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",11,"dwc:phylum=""chordate""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylumdoes not have an equivalent at the rank of Phylum in the bdq:sourceAuthority.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",12,"dwc:phylum=""dwc:phylum""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:phylumdoes not have an equivalent at the rank of Phylum in the bdq:sourceAuthority.", +"https://github.com/tdwg/bdq/issues/22",22,"eaad41c5-1d46-4917-a08b-4fd1d7ff5c0f","VALIDATION","PHYLUM_NOTFOUND","NAME",13,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","The bdq:sourceAuthority was not available or unreachable", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",1,"dwc:occurrenceID=""https://www.inaturalist.org/observations/43047701""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID conforms to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",2,"dwc:occurrenceID=""42""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",3,"dwc:occurrenceID=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",4,"dwc:occurrenceID=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to a GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",5,"dwc:occurrenceID=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to a GUID structure", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",6,"dwc:occurrenceID=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceID is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",7,"dwc:occurrenceID="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",8,"dwc:occurrenceID=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/23",23,"3cfe9ab4-79f8-4afd-8da5-723183ef16a3","VALIDATION","OCCURRENCEID_NOTSTANDARD","OTHER",9,"dwc:occurrenceID=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID does not conform to a GUID structure", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",1,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Input fields are EMPTY.", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",2,"dwc:minimumDepthInMeters=""0"", dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT",, +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",3,"dwc:minimumDepthInMeters=""1"", dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumDepthInMeters > dwc:maximumDepthInMeters", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",4,"dwc:minimumDepthInMeters=""-1"", dwc:maximumDepthInMeters=""-1""",,"INTERNAL_PREREQUISITES_NOT_MET",,"The values of dwc:minimumDepthInMeters or dwc:maximumDepthInMeters are not zero or a positive number", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",5,"dwc:minimumDepthInMeters=""1200"", dwc:maximumDepthInMeters=""1200""",,"RUN_HAS_RESULT","COMPLIANT",, +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",6,"dwc:minimumDepthInMeters=""100"", dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumDepthInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",7,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""1200""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/24",24,"8f1e6e58-544b-4365-a569-fb781341644e","VALIDATION","MINDEPTH_GREATERTHAN_MAXDEPTH","SPACE",8,"dwc:minimumDepthInMeters=""100"", dwc:maximumDepthInMeters=""50""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumDepthInMeters > maximumDepthInMeters", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",1,"dwc:dateIdentified=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:dateIdentified is EMPTY", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",2,"dwc:dateIdentified=""X""","X","NOT_AMENDED",,"dwc:dateIdentified contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",3,"dwc:dateIdentified=""10-28""","10-28","NOT_AMENDED",,"dwc:dateIdentified contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",4,"dwc:dateIdentified=""2021-28-10""","dwc:dateIdentified=""2021-10-28""","AMENDED","dwc:dateIdentified=""2021-10-28""","dwc:dateIdentified contains an interpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",5,"dwc:dateIdentified=""21-10-28""","dwc:dateIdentified=""2021-10-28""","AMENDED","dwc:dateIdentified=""2021-10-28""","dwc:dateIdentified contains an interpretable value. Amendment based on dwc:year=""2021""", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",6,"dwc:dateIdentified=""2021/10/28""","dwc:dateIdentified=""2021-10-28""","AMENDED","dwc:dateIdentified=""2021-10-28""","dwc:dateIdentified contains an interpretable value", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",7,"dwc:dateIdentified=""2021/04/03""",,"NOT_AMENDED",,"dwc:dateIdentified contains an ambiguous value. Date could be 3rd of April or 4th of May", +"https://github.com/tdwg/bdq/issues/26",26,"39bb2280-1215-447b-9221-fd13bc990641","AMENDMENT","DATEIDENTIFIED_STANDARDIZED ","TIME",7,"dwc:eventData=""2021/04/03""",,"NOT_AMENDED",,"dwc:dateIdentified contains an ambiguous value. Date could be 3rd of April or 4th of May", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",1,"dwc:family=""Agaricaceae""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"The bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",2,"dwc:family=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:family is EMPTY or MISSING", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",3,"dwc:family=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:family is EMPTY", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",4,"dwc:family="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:family is EMPTY or white space", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",5,"dwc:family=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",6,"dwc:family=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",7,"dwc:family=""Agaricaceae""",,"RUN_HAS_RESULT","COMPLIANT","bdq:family has an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",8,"dwc:family=""Agaricaceae""",,"RUN_HAS_RESULT","COMPLIANT","bdq:family has Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",9,"dwc:family=""Agaricacae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",10,"dwc:family=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","bdq:family has an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",11,"dwc:family=""kangaroos""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",12,"dwc:family=""Macropods""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family does not have an equivalent at the rank of Family in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/28",28,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","FAMILY_NOTFOUND","NAME",13,"dwc:family=""dwc:family""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:family not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",1,"bdq:annotation=""dwc:locality does not match dwc:decimalLatitude""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",2,"bdq:annotation=""blah""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",3,"bdq:annotation=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",4,"bdq:annotation=""…""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",5,"bdq:annotation=""?""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",6,"bdq:annotation="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","bdq:annotation is EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",7,"bdq:annotation=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","bdq:annotation is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",8,"bdq:annotation=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_NOTIFIED","bdq:annotation is EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",9,"bdq:annotation=""[null]""",,"RUN_HAS_RESULT","NOTIFY","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/29",29,"fecaa8a3-bbd8-4c5a-a424-13c37c4bb7b1","NOTIFICATION","ANNOTATION_NOTEMPTY","OTHER",10,"bdq:annotation=""bdq:annotation""",,"RUN_HAS_RESULT","NOT_NOTIFIED","bdq:annotation is not EMPTY", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",1,"dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",2,"dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is in range", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",3,"dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is in range", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",4,"dwc:decimalLongitude=""121.0534 W""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is NOT a number", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",5,"dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLongitude >180", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",6,"dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLongitude <-180", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",7,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is in range", +"https://github.com/tdwg/bdq/issues/30",30,"0949110d-c06b-450e-9649-7c1374d940d1","VALIDATION","DECIMALLONGITUDE_OUTOFRANGE","SPACE",8,"dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is in range", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",1," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"All input fields are EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",2," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatutide is not EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",3," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""139.923""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",4," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:decimalLatutide and dwc:decimalLongitude are not EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",5," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""23 degrees 42.72 minutes south"", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimLatitude and dwc:verbatimLongitude and dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",6," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude=""x"", dwc:verbatimCoordinates="""", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimLatitude and dwc:verbatimLongitude were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",7," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""23 degrees south 185 degrees east"", dwc:verbatimCoordinateSystem="""", dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",8," dwc:verbatimLatitude="""", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""x"", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOTMET",,"dwc:verbatimCoordinates were not interpretable into coordinates as decimal degrees", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",9," dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem="""", +dwc:verbatimSRS=""EPSG:4326"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_AMENDED",,"dwc:verbatimCoordinateSystem is EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",10,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:verbatimSRS="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_AMENDED",,"dwc:verbatimCoordinateSRS is EMPTY", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",11,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:verbatimSRS=""WDGB21"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_AMENDED",,"dwc:verbatimSRS contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",12,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139 degrees 55.38 minutes east"", dwc:verbatimSRS=""EPSG:4326"", dwc:verbatimCoordinateSystem=""decimal degrees"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"NOT_AMENDED",,"Input fields contain ambiguous values", +"https://github.com/tdwg/bdq/issues/32",32,"3c2590c7-af8a-4eb4-af57-5f73ba9d1f8e","AMENDMENT","COORDINATES_FROM_VERBATIM","SPACE",13,"dwc:verbatimLatitude=""-23.712"", dwc:verbatimLongitude="""", dwc:verbatimCoordinates=""139.92"", dwc:verbatimSRS=""EPSG:4326"", dwc:verbatimCoordinateSystem=""decimal degrees""","dwc:decimalLatitude=-23.712"", dwc:decimalLongitude=139.923"", dwc:geodeticDatim=""EPSG:4326""","AMENDED","dwc:decimalLatitude=-23.712"", dwc:decimalLongitude=139.923"", dwc:geodeticDatim=""EPSG:4326""","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",1,"dwc:eventDate=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields are EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",3,"dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",4,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",5,"dwc:eventDate=""1949-09-16T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",6,"dwc:eventDate=""1949-12-09T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",7,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",8,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",9,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",10,"dwc:eventDate=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",11,"dwc:eventDate=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",12,"dwc:eventDate=""1963-03-08T4""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",13,"dwc:eventDate=""1963-03-08T14:0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",14,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",15,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",16,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",17,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",18,"dwc:eventDate=""1962-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",19,"dwc:eventDate=""1964-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",20,"dwc:eventDate=""1963-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",21,"dwc:eventDate=""63""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",22,"dwc:eventDate=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/33",33,"f51e15a6-a67d-4729-9c28-3766299d2985","VALIDATION","EVENTDATE_EMPTY","TIME",23,"dwc:eventDate=""1949-01-01""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventdate is not EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",3,"dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",4,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",5,"dwc:eventDate=""1949-09-16T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",6,"dwc:eventDate=""1949-12-09T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",7,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",8,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",9,"dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",10,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",11,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",12,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",13,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",14,"dwc:eventDate=""2300-11-01T10:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate is NOT_IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",15,"dwc:eventDate=""0032-11-01T10:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate is NOT_IN_RANGE", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",16,"dwc:eventDate=""1963-03-08T14:67-0600""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",17,"dwc:eventDate=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",18,"dwc:eventDate=""1963-03-08T4""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",19,"dwc:eventDate=""1963-03-08T14:0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",20,"dwc:eventDate=""63""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/36",36,"3cff4dc4-72e9-4abe-9bf3-8a30f1618432","VALIDATION","EVENTDATE_OUTOFRANGE","TIME",21,"dwc:eventDate=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",1,"dcterms:license=""CC BY""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license matches a term in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",2,"dcterms:license=""GPL""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",3,"dcterms:license=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",4,"dcterms:license=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",5,"dcterms:license=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",6,"dcterms:license=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dcterms:license is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",7,"dcterms:license="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dcterms:license is EMPTY", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",8,"dcterms:license=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dcterms:license is EMPTY", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",9,"dcterms:license=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/38",38,"3136236e-04b6-49ea-8b34-a65f25e3aba1","VALIDATION","LICENCE_NOTSTANDARD","OTHER",10,"dcterms:license=""CC BY""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",1,"dwc:minimumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters is EMPTY""", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",2,"dwc:minimumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is IN_RANGE", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",3,"dwc:minimumElevationInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is IN_RANGE", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",4,"dwc:minimumElevationInMeters=""-500""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumElevationInMeters is NOT_IN_RANGE", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",5,"dwc:minimumElevationInMeters=""8860""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumElevationInMeters is NOT_IN_RANGE", +"https://github.com/tdwg/bdq/issues/39",39,"0bb8297d-8f8a-42d2-80c1-558f29efe798","VALIDATION","MINELEVATION_OUTOFRANGE","SPACE",6,"dwc:minimumElevationInMeters=""400 ft""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters is not a NUMBER", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",1,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All location fields are EMPTY.", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",2,"dwc:locationID=""https://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD19"", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",3,"dwc:locationID="""", dwc:higherGeographyID=""http://vocab.getty.edu/tgn/1002020"", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",4,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent=""Africa"", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",5,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody=""Southern Ocean"", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",6,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup=""Antipodes Islands"", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",7,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island=""Robinson Crusoe Island"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",8,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",9,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",10,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",11,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",12,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",13,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",14,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",15,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",16,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",17,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",18,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",19,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",20,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",21,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",22,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",23,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",24,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",25,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",26,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Neuquén"", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",27,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum="""", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",28,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",29,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/40",40,"58486cb6-1114-4a8a-ba1e-bd89cfe887e9","VALIDATION","LOCATION_EMPTY","SPACE",30,"dwc:locationID="""", dwc:higherGeographyID="""", dwc:higherGeography="""", dwc:continent="""", dwc:waterbody="""", dwc:islandGroup="""", dwc:island="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality="""", dwc:locality="""", dwc:verbatimLocality="""", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:coordinateUncertaintyInMeters="""", dwc:geodeticDatum=""4326"", dwc:verbatimCoordinates="""", dwc:verbatimLatitude="""", dwc:verbatimLongitude=""""",,"RUN_HAS_RESULT","COMPLIANT","Location not EMPTY", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",1,"dc:type=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",2,"dc:type=""X""",,"NOT_AMENDED",,"dc:type contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/41",41,"bd385eeb-44a2-464b-a503-7abe407ef904","AMENDMENT","DCTYPE_STANDARDIZED","OTHER",3,"dc:type=""evnt""","dc:type=""Event""","AMENDED","dc:type=""Event""","dc:type contains an interpretable value", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",1,"dwc:country=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country is EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",2,"dwc:country=""Eswatini""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",3,"dwc:country=""Swaziland""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",4,"dwc:country=""Yugoslavia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",5,"dwc:country=""Congo""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/42",42,"6ce2b2b4-6afe-4d13-82a0-390d31ade01c","VALIDATION","COUNTRY_EMPTY","SPACE",6,"dwc:country=""United States Minor Outlying Islands""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is not EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum="""" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude, dwc:decimalLongitude, dwc:geodeticDatum are EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",2,"dwc:decimalLatitude="""", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",3,"dwc:decimalLatitude=""-23.721"", dwc:decimalLongitude="""", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",4,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum="""" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",5,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDX93"" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:geodeticDatum uninterpretable", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",6,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ","dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""WGS84"" ","AMENDED","dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""WGS84"" ","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",7,"dwc:decimalLatitude=""-93.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"NOT_AMENDED",,"dwc:decimalLatitude was out of range", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",8,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitide contains uninterpretable value", +"https://github.com/tdwg/bdq/issues/43",43,"620749b9-7d9c-4890-97d2-be3d1cde6da8","AMENDMENT","COORDINATES_CONVERTED","SPACE",9,"dwc:decimalLatitude=""-23.712"", dwc:decimalLongitude=""139.923"", dwc:geodeticDatum=""GDA94"" ","dwc:decimalLatitude=""-31.606985"", dwc:decimalLongitude=""129.776695"", dwc:geodeticDatum=""AGD66"" ","AMENDED","dwc:decimalLatitude=""-31.6056085"", dwc:decimalLongitude=""129.7780869"", dwc:geodeticDatum=""EPSG4326"" ","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",1,"dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",2,"dwc:scientificName="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",3,"dwc:scientificName=""[non printing-characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT",, +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",4,"dwc:scientificName=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",5,"dwc:scientificName=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",6,"dwc:scientificName=""Wallabia bicolor""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",7,"dwc:scientificName=""Wallabia bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",8,"dwc:scientificName=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",9,"dwc:scientificName=""Walabia""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority. This may be corrected at the AMENDMENT stage using fuzzy matching?", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",10,"dwc:scientificName=""bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",11,"dwc:scientificName=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",12,"dwc:scientificName=""wallaby""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",13,"dwc:scientificName=""Hakea decurrens ssp. physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",14,"dwc:scientificName=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",15,"dwc:scientificName=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName has an equivalent in the bdq:sourceAuthority. The Australian Plant Census includes undescribed taxa using a formula so that they can be added to legislation etc", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",16,"dwc:scientificName=""dwc:scientificName""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/46",46,"3f335517-f442-4b98-b149-1e87ff16de45","VALIDATION","SCIENTIFICNAME_NOTFOUND","NAME",17,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","The bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",1,"dwc:occurrenceID=""https://www.inaturalist.org/observations/43047701""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID conforms to GUID structure", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",2,"dwc:occurrenceID=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",3,"dwc:occurrenceID="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",4,"dwc:occurrenceID=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",5,"dwc:occurrenceID=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID is not EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",6,"dwc:occurrenceID=""---""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID is not EMPTY", +"https://github.com/tdwg/bdq/issues/47",47,"c486546c-e6e5-48a7-b286-eba7f5ca56c4","VALIDATION","OCCURRENCEID_EMPTY","OTHER",7,"dwc:occurrenceID=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID is not EMPTY", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",1,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","The bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",2,"dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",3,"dwc:countryCode=""Australia""","dwc:countryCode=""AU""","AMENDED","dwc:countryCode=""AU""","dwc:countryCode contains an interpretable value", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",4,"dwc:countryCode=""Aust.""",,"NOT_AMENDED",,"dwc:countryCode contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/48",48,"fec5ffe6-3958-4312-82d9-ebcca0efb350","AMENDMENT","COUNTRYCODE_STANDARDIZED","SPACE",5,"dwc:countryCode=""x""",,"NOT_AMENDED",,"dwc:countryCode contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",1,"dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",1,"dwc:year="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",1,"dwc:year=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",2,"dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",3,"dwc:year=""194x""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",4,"dwc:year=""1952""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",5,"dwc:year=""9999""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",6,"dwc:year=""1599""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",7,"dwc:year=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/49",49,"c09ecbf9-34e3-4f3e-b74a-8796af15e59f","VALIDATION","YEAR_EMPTY","TIME",8,"dwc:year=""XXXX""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",1,"dwc:countryCode="""", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",2,"dwc:countryCode=""GL"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude and dwc:decimalLongitude EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",3,"dwc:countryCode=""GRL"", dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude and dwc:decimalLongitude EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",4,"dwc:countryCode="""", dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",5,"dwc:countryCode="""", dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",6,"dwc:countryCode=""CL"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Coordinates are in Argentina, not Chile", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",7,"dwc:countryCode=""AR"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","Coordinates match dwc:countryCode", +"https://github.com/tdwg/bdq/issues/50",50,"adb27d29-9f0d-4d52-b760-a77ba57a69c9","VALIDATION","COORDINATES_COUNTRYCODE_INCONSISTENT","SPACE",8,"dwc:countryCode=""MX"", dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","Coordinates match dwc:countryCode", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",2,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",3,"dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",4,"dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W"", dwc:scientificName=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude annot be interpreted as a number", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",5,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Orcinus orca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The species is marine and the location is an inland lake.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",6,"dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Puma concolor""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields except decimalLatitude, decimalLongitude, geodeticDatum, and scientificName EMPTY.", +"https://github.com/tdwg/bdq/issues/51",51,"b9c184ce-a859-410c-9d12-71a338200380","VALIDATION","COORDINATES_TERRESTRIALMARINE","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:scientificName=""Aegla neuquensis""",,"RUN_HAS_RESULT","COMPLIANT","The species is freshwater aquatic and the coordinates fall in a lake and thus COMPLIANT", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",2,"dwc:eventDate=""X""","X","INTERNAL_PREREQUISITES_NOT_MET",,"eventDate contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",3,"dwc:eventDate=""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z""",,"NOT_AMENDED",,"dwc:eventDate spans more than one year", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",4,"dwc:eventDate=""2007-03""","dwc:year=""2007"", dwc:month=""3""","AMENDED","dwc:year=""2007"", dwc:month=""3""","dwc:eventDate contains an interpretable value, assuming we treat dwc:eventDate as year-month", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",5,"dwc:eventDate=""2021-10-29"", dwc:year=""2021""","dwc:month=""10"", dwc:day=""29""","AMENDED","dwc:month=""10"", dwc:day=""29""","dwc:eventDate contains an interpretable value", +"https://github.com/tdwg/bdq/issues/52",52,"710fe118-17e1-440f-b428-88ba3f547d6d","AMENDMENT","EVENT_FROM_EVENTDATE","TIME",6,"dwc:eventDate=""2021-01-15/2021-02-02""","dwc:startDayOfYear=""15"", dwc:endDayOfYear=""33""","AMENDED","dwc:startDayOfYear=""15"", dwc:endDayOfYear=""33""","dwc:eventDate contains an interpretable value", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",1,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",2,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude="""", dwc:countryCode=""AU""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",3,"dwc:decimalLatitude="""", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",4,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude and dwc:countryCode are EMPTY", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",5,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AX""",,"NOT_AMENDED",,"dwc:countryCode is uninterpretable", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",6,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""185.87"", dwc:countryCode=""AU""",,"NOT_AMENDED",,"dwc:decimalLongitude is out of range", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",7,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""",,"NOT_AMENDED",,"dwc:decimalLatitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/54",54,"f2b4a50a-6b2f-4930-b9df-da87b6a21082","AMENDMENT","COORDINATES_TRANSPOSED","SPACE",8,"dwc:decimalLatitude=""25.46"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""AU""","dwc:decimalLatitude=""-25.46""","AMENDED","dwc:decimalLatitude=""-25.46""","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",1,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimDepth is EMPTY", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",2,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimDepth contains an uninterpretable value. ""x"" is ambiguous as either ""10"" or ""No"" or ""unknown""", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",3,"dwc:minimumDepthInMeters=""25"", dwc:maximumDepthInMeters=""100"", dwc:verbatimDepth=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"Output fields are both not EMPTY", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",4,"dwc:minimumDepthInMeters=""11"", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""Min depth 10m""",,"NOT_AMENDED",,"Input and output fields are conflicting", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",5,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""11"", dwc:verbatimDepth=""Max depth 100m""",,"NOT_AMENDED",,"Input and output fields are conflicting", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",6," dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters=""11"", dwc:verbatimDepth=""Min depth 10m""","dwc:minimumDepthInMeters=""10""","AMENDED","dwc:minimumDepthInMeters=""10""","dwc:verbatimDepth contains an interpretable value", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",7,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""10feet""","dwc:minimumDepthInMeters=""3.048"", dwc:maximumDepthInMeters=""3.048""","AMENDED","dwc:minimumDepthInMeters=""3.048"", dwc:maximumDepthInMeters=""3.048""","dwc:verbatimDepth contains interpretable value", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",8,"dwc:verbatimDepth=""Mindepth 10m, maxdepth=100""","dwc:minimumDepthInMeters=""10"", dwc:maximumDepthInMeters=""100""","AMENDED","dwc:minimumDepthInMeters=""10"", dwc:maximumDepthInMeters=""100""","dwc:verbatimDepth contains interpretable value", +"https://github.com/tdwg/bdq/issues/55",55,"c5658b83-4471-4f57-9d94-bf7d0a96900c","AMENDMENT","MINDEPTH-MAXDEPTH_FROM_VERBATIM","SPACE",9,"dwc:minimumDepthInMeters="""", dwc:maximumDepthInMeters="""", dwc:verbatimDepth=""25.8-34.9m""","dwc:minimumDepthInMeters=""25.8"", dwc:maximumDepthInMeters=""34.9""","AMENDED","dwc:minimumDepthInMeters=""25.8"", dwc:maximumDepthInMeters=""34.9""","dwc:verbatimDepth contains interpretable values", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",1,"dwc:stateProvince="""", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",2,"dwc:stateProvince=""San Isidro"", dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude, dwc:decimalLongitude and dwc:geodeticDatum are EMPTY", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",3,"dwc:stateProvince="""", dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:stateProvince is EMPTY", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",4,"dwc:stateProvince="""", dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0"", dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:stateProvince is EMPTY", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",5,"dwc:stateProvince=""Rio Negro"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","COMPLIANT","Input fields contain interpretable values", +"https://github.com/tdwg/bdq/issues/56",56,"f18a470b-3fe1-4aae-9c65-a6d3db6b550c","VALIDATION","COORDINATES_STATE-PROVINCE_INCONSISTENT","SPACE",6,"dwc:stateProvince=""Neuquén"", dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521"", dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Input fields contain interpretable values but coordinates don't match dwc:stateProvince", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",1,"dwc:taxon="""", dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""", dwc:scientificNameAuthorship="""", dwc:taxonRank=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All taxon fields are EMPTY", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",2,"dwc:taxon=""https://api.gbif.org/v1/species?name=Puma%20concolor"", dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""", dwc:scientificNameAuthorship="""", dwc:taxonRank=""""","dwc:taxonID=""gbif:2435099""","AMENDED","dwc:taxonID=""gbif:2435099""","dw:taxon contains an interpretable value", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",3,"dwc:taxon="""", dwc:taxonID=""https://api.gbif.org/v1/species?name=Puma%20concord"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""", dwc:scientificNameAuthorship="""", dwc:taxonRank=""""",,"NOT_AMENDED",,"dwc:taxonID contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",4,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority unavailable", +"https://github.com/tdwg/bdq/issues/57",57,"431467d6-9b4b-48fa-a197-cd5379f5e889","AMENDMENT","TAXONID_FROM_TAXON","NAME",5,"dwc:taxon="""", dwc:taxonID=""https://api.gbif.org/v1/species"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""", dwc:scientificNameAuthorship="""", dwc:taxonRank=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All of dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family, dwc:genus and dwc:scientificName are EMPTY","WE NEED SOME MORE TEST SCENARIOS HERE" +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",1,"dwc:basisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",2,"dwc:basisOfRecord=""PreservedSpec""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",3,"dwc:basisOfRecord=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",4,"dwc:basisOfRecord=""…""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",5,"dwc:basisOfRecord=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",6,"dwc:basisOfRecord="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",7,"dwc:basisOfRecord=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord is EMPTY","THIS RAISES AN ISSUE: Strictly, [npc] means NOT_EMPTY?" +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",8,"dwc:basisOfRecord=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",9,"dwc:abasisOfRecord=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/58",58,"ac2b7648-d5f9-48ca-9b07-8ad5879a2536","VALIDATION","BASISOFRECORD_EMPTY","OTHER",10,"dwc:abasisOfRecord=""dwc:basisOfRecord""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord is not EMPTY", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",1,"dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:geodeticDatum is EMPTY.", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",2,"dwc:geodeticDatum=""UTM""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum doesn't match values in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",3,"dwc:geodeticDatum=""WGS84""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",4,"dwc:geodeticDatum=""epsg:4326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",5,"dwc:geodeticDatum=""6326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",6,"dwc:geodeticDatum=""7030""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum doesn't match values in bdq:sourceAuthority, 1730 (epsg:1730) is an ellipsoid not a datum", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",7,"dwc:geodeticDatum=""23032""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum doesn't match values in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",8,"dwc:geodeticDatum=""ED50""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",9,"dwc:geodeticDatum=""International 1924""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum doesn't match values in bdq:sourceAuthority. International 1924 is an Ellipsoid not a Datum", +"https://github.com/tdwg/bdq/issues/59",59,"7e0c0418-fe16-4a39-98bd-80e19d95b9d1","VALIDATION","GEODETICDATUM_NOTSTANDARD","SPACE",10,"dwc:geodeticDatum=""4326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum matches a value in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",1,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority unavailable", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",2,"dwc:geodeticDatum=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",3,"dwc:geodeticDatum=""x""",,"NOT_AMENDED",,"dwc:geodeticDatum contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",4,"dwc:geodeticDatum=""WGS8""",,"NOT_AMENDED",,"dwc:geodeticDatum contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",5,"dwc:geodeticDatum=""WGS84""","dwc:geodeticDatum=""EPSG:4326""","AMENDED","dwc:geodeticDatum=""EPSG:4326""","dwc:geodeticDatum contains a valid code in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/60",60,"0345b325-836d-4235-96d0-3b5caf150fc0","AMENDMENT","GEODETICDATUM_STANDARDIZED","SPACE",6,"dwc:geodeticDatum=""epsg:4326""",,"NOT_AMENDED",,"dwc:geodeticDatum contains a valid code in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",2,"dwc:eventDate=""X""","dwc:eventDate=""X""","NOT_AMENDED","dwc:eventDate=""X""","dwc:eventDate contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",3,"dwc:eventDate=""10-28""","dwc:eventDate=""10-28""","NOT_AMENDED","dwc:eventDate=""10-28""","dwc:eventDate contains an ambiguous value", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",4,"dwc:eventDate=""2021-28-10""","dwc:eventDate=""2021-28-10""","NOT_AMENDED","dwc:eventDate=""2021-28-10""","dwc:eventDate contains an interpretable value. Assuming year-day-month input format", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",5,"dwc:eventDate=""21-10-28""","dwc:eventDate=""21-10-28""","NOT_AMENDED","dwc:eventDate=""21-10-28""","dwc:eventDate contains an ambiguous value. Amendment based on dwc:year=""2021""", +"https://github.com/tdwg/bdq/issues/61",61,"718dfc3c-cb52-4fca-b8e2-0e722f375da7","AMENDMENT","EVENTDATE_STANDARDIZED","TIME",6,"dwc:eventDate=""2021/10/28""","dwc:eventDate=""2021-28-10""","AMENDED","dwc:eventDate=""2021-28-10""","dwc:eventDate contains an interpretable value", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",1,"dwc:country="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",2,"dwc:country=""Eswatini"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",3,"dwc:country=""Swaziland"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",4,"dwc:country="""", dwc:countryCode=""GL""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:country EMPTY", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",5,"dwc:country="""", dwc:countryCode=""Austria""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:country EMPTY", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",6,"dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country does not match dwc:countryCode", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",7,"dwc:country=""México"", dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country matches dwc:countryCode", +"https://github.com/tdwg/bdq/issues/62",62,"b23110e7-1be7-444a-a677-cdee0cf4330c","VALIDATION","COUNTRY_COUNTRYCODE_INCONSISTENT","SPACE",8,"dwc:country=""Australia"", dwc:countryCode=""AU""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country matches dwc:countryCode", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",1,"dwc:basisOfRecord=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",2,"dwc:basisOfRecord=""X""",,"NOT_AMENDED",,"dwc:basisOfRecord contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/63",63,"07c28ace-561a-476e-a9b9-3d5ad6e35933","AMENDMENT","BASISOFRECORD_STANDARDIZED","OTHER",3,"dwc:basisOfRecord=""Pres.spec""","dwc:basisOfRecord=""PreservedSpecimen""","AMENDED","dwc:basisOfRecord=""PreservedSpecimen""","dwc:basisOfRecord contains interpretable value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",1,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",3,"dwc:eventDate=""1949-09-15T12:34""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",4,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",5,"dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",6,"dwc:eventDate=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",7,"dwc:eventDate=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",8,"dwc:eventDate=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",9,"dwc:eventDate=""1963-03-08T4""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",10,"dwc:eventDate=""1963-03-08T14:0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",11,"dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",12,"dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",13,"dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate contains a valid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",14,"dwc:eventDate=""63""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/66",66,"4f2bf8fd-fc5c-493f-a44c-e7b16153c803","VALIDATION","EVENTDATE_NOTSTANDARD","TIME",15,"dwc:eventDate=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:eventDate contains an invalid value", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",1,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",2,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00-0600"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day, dwc:month, dwc:year, dwc:startDayOfYear and dwc:endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",3,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00-0600"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day, dwc:month, dwc:year, dwc:startDayOfYear and dwc:endDayOfYear are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",4,"dwc:day=""15"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",5,"dwc:day=""32"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",6,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month and dwc:year match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",7,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day, dwc:month and dwc:year do not match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",8,"dwc:day="""", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month and dwc:year match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",9,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-12-09T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except eventDate and verbatimEventDate are EMPTY", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",10,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear and dwc:endDayOfyear match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",11,"dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year matches dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",12,"dwc:day=""16"", dwc:month=""8"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month does not match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",13,"dwc:day=""16"", dwc:month=""9"", dwc:year=""1948"", dwc:eventDate=""1949-09-16T12:34"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year does not match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/67",67,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","EVENTDATE_INCONSISTENT","TIME",14,"dwc:day=""2"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate=""1949-01-01"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month, dwc:startDayOfYear and endDayfYear does not match dwc:eventDate", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",1,"dwc:verbatimElevation="""", dwc:minimumElevationInMeters=""25"", dwc:maximumElevationInMeters=""100""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimElevation is EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",2,"dwc:verbatimElevation=""x"", dwc:minimumElevationInMeters=""25"", dwc:maximumElevationInMeters=""100""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters and dwc:maximumElevationInMeters are not EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",3,"dwc:verbatimElevation=""Min Elevation 10m"", dwc:minimumElevationInMeters=""11"", dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters is not EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",4,"dwc:verbatimElevation=""Max Elevation 100m"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""110""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumElevationInMeters is not EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",5,"dwc:verbatimElevation=""Min Elevation 10m"", dwc:minimumElevationInMeters=""11"", dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumElevationInMeters is not EMPTY", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",6,"dwc:verbatimElevation=""10feet"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""3.048"", dwc:maximumElevationInMeters=""3.048""","AMENDED","dwc:minimumElevationInMeters=""3.048"", dwc:maximumElevationInMeters=""3.048""","dwc:verbatimElevation contains an interpretable value", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",7,"dwc:verbatimElevation=""MinElevation 10m, maxElevation=100"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""10"", dwc:maximumElevationInMeters=""100""","AMENDED","dwc:minimumElevationInMeters=""10"", dwc:maximumElevationInMeters=""100""","dwc:verbatimElevation contains an interpretable value", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",8,"dwc:verbatimElevation=""356-369m"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""356"", dwc:maximumElevationInMeters=""369""","AMENDED","dwc:minimumElevationInMeters=""356"", dwc:maximumElevationInMeters=""369""","dwc:verbatimElevation contains an interpretable value", +"https://github.com/tdwg/bdq/issues/68",68,"2d638c8b-4c62-44a0-a14d-fa147bf9823d","AMENDMENT","MINELEVATION-MAXELEVATION_FROM_VERBATIM","SPACE",9,"dwc:verbatimElevation=""19375"", dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""","dwc:minimumElevationInMeters=""5905.5"", dwc:maximumElevationInMeters=""5905.5""","AMENDED","dwc:minimumElevationInMeters=""5905.5"", dwc:maximumElevationInMeters=""5905.5""","dwc:verbatimElevation contains an interpretable value as is assumed to be in feet", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",1,"dwc:dateIdentified=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:dateIdentified is EMPTY ", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",2,"dwc:dateIdentified=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:dateIdentified is EMPTY ", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",3,"dwc:dateIdentified=""1963-03-08X14:07-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",4,"dwc:dateIdentified=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",5,"dwc:dateIdentified=""1963-03-08T14""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",6,"dwc:dateIdentified=""1963-03-08T14:67-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",7,"dwc:dateIdentified=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",8,"dwc:dateIdentified=""1963-03-08T4""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",9,"dwc:dateIdentified=""1963-03-08T14:0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",10,"dwc:dateIdentified=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",11,"dwc:dateIdentified=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",12,"dwc:dateIdentified=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",13,"dwc:dateIdentified=""63""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",14,"dwc:dateIdentified=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",15,"dwc:dateIdentified=""2021_06_03T24:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date. 24 no longer allowed in the hours position.", +"https://github.com/tdwg/bdq/issues/69",69,"66269bdd-9271-4e76-b25c-7ab81eebe1d8","VALIDATION","DATEIDENTIFIED_NOTSTANDARD","TIME",16,"dwc:dateIdentified=""X""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified is not a valid ISO 8601-1:2019 date", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",1,"dwc:taxonID=""http://api.gbif.org/v1/species/8102122"", dwc:scientificName=""""","dwc:scientificName=""Harpullia pendula F.Muell.""","AMENDED","dwc:scientificName=""Harpullia pendula F.Muell.""","dwc:taxonID contains an interpretable value", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",2,"dwc:taxonID=""http://api.gbif.org/v1/species/8a"", dwc:scientificName=""""",,"NOT_AMENDED",,"dwc:taxonID does not contain an interpretable value", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",3,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET",,"bdq:sourceAuthority is unavailable", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",4,"dwc:taxonID=""http://api.gbif.org/v1/species/"", dwc:scientificName=""""",,"NOT_AMENDED",,"dwc:taxonID does not contain an interpretable value", +"https://github.com/tdwg/bdq/issues/71",71,"f01fb3f9-2f7e-418b-9f51-adf50f202aea","AMENDMENT","SCIENTIFICNAME_FROM_TAXONID ","NAME",5,"dwc:taxonID="""", dwc:scientificName=""Harpullia pendula F.Muell.""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",1,"dwc:dataGeneralizations=""placed on quarter degree grid""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",2,"dwc:dataGeneralizations=""blah""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",3,"dwc:dataGeneralizations=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",4,"dwc:dataGeneralizations=""…""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",5,"dwc:dataGeneralizations=""?""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",6,"dwc:dataGeneralizations="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:dataGeneralizations is EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",7,"dwc:dataGeneralizations=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:dataGeneralizations is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",8,"dwc:dataGeneralizations=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:dataGeneralizations is EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",9,"dwc:dataGeneralizations=""[null]""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/72",72,"13d5a10e-188e-40fd-a22c-dbaa87b91df2","NOTIFICATION","DATAGENERALIZATIONS_NOTEMPTY","SPACE",10,"dwc:dataGeneralizations=""dwc:dataGeneralizations""",,"RUN_HAS_RESULT","NOTIFY","dwc:dataGeneralizations is not EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",1,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority not available", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",2,"dwc:decimalLatitude="""", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude and dwc:decimalLongitude are EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",2,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""135.43"", dwc:countryCode=""AX""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",3,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",4,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude="""", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",5,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""185.43"", dwc:countryCode=""""",,"NOT_AMENDED",,"dwc:decimalLongitude is out of range", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",6,"dwc:decimalLatitude=""x"", dwc:decimalLongitude=""135.87"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",7,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""x"", dwc:countryCode=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLongitude contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",8,"dwc:decimalLatitude=""-25.23"", dwc:decimalLongitude=""135.43"", dwc:countryCode=""""","dwc:countryCode=""AU""","AMENDED","dwc:countryCode=""AU""","dwc:decimalLatitude and dwc:decimalLongitude contain interpretable values", +"https://github.com/tdwg/bdq/issues/73",73,"8c5fe9c9-4ba9-49ef-b15a-9ccd0424e6ae","AMENDMENT","COUNTRYCODE_FROM_COORDINATES","SPACE",9,"dwc:decimalLatitude=""-41.195924"", dwc:decimalLongitude=""-71.253562"", dwc:countryCode=""""","dwc:countryCode=""AR""","AMENDED","dwc:countryCode=""AR""","dwc:decimalLatitude and dwc:decimalLongitude contain interpretable values", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",1,"dwc:occurrenceStatus=""""","dwc:occurrenceStatus=""present""","AMENDED","dwc:occurrenceStatus=""present""","dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",2,"dwc:occurrenceStatus=""[non-printing characters]""","dwc:occurrenceStatus=""present""","AMENDED","dwc:occurrenceStatus=""present""","dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",3,"dwc:occurrenceStatus=""X""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",4,"dwc:occurrenceStatus=""1""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/75",75,"96667a0a-ae59-446a-bbb0-b7f2b0ca6cf5","AMENDMENT","OCCURRENCESTATUS_ASSUMEDDEFAULT","OTHER",5,"dwc:occurrenceStatus=""absent""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",1,"dwc:dateIdentified="""", dwc:eventDate=""1949_0915T11:34""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",2,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",3,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1962-11-01T10:00-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",4,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1964-11-01T10:00-0600""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified before dwc:eventDate", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",5,"dwc:dateIdentified="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields except day are EMPTY", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",6,"dwc:dateIdentified=""1963-03-08T14:07-0600"", dwc:eventDate=""1963-03-08T14:07-0600""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",7,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",8,"dwc:dateIdentified=""1963-03-08T14:67-0600"", dwc:eventDate=""1963-03-08T14:67-0600""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",9,"dwc:dateIdentified=""1963-03-08T14:07Z"", dwc:eventDate=""1963-03-08T14:07Z""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",10,"dwc:dateIdentified=""1963-03-08T4"", dwc:eventDate=""1963-03-08T4""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",11,"dwc:dateIdentified=""1963-03-08T14:0"", dwc:eventDate=""1963-03-08T14:0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",12,"dwc:dateIdentified=""1963-03-08T14:07"", dwc:eventDate=""1963-03-08T14:07""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",13,"dwc:dateIdentified=""1963-03-08"", dwc:eventDate=""1963-03-08""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",14,"dwc:dateIdentified=""1963-03"", dwc:eventDate=""1963-03""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",15,"dwc:dateIdentified=""1963"", dwc:eventDate=""1963""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",16,"dwc:dateIdentified=""1963"", dwc:eventDate=""1962-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",17,"dwc:dateIdentified=""1963"", dwc:eventDate=""1964-11-01T10:00""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:dateIdentified before dwc:eventDate", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",18,"dwc:dateIdentified=""1963"", dwc:eventDate=""1963-11-01T10:00""",,"RUN_HAS_RESULT","COMPLIANT","dwc:dateIdentified is in range", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",19,"dwc:dateIdentified=""63"", dwc:eventDate=""63""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",20,"dwc:dateIdentified=""0"", dwc:eventDate=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is not a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",21,"dwc:dateIdentified="""", dwc:eventDate=""1949-09-16T12:34""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:dateIdentified is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/76",76,"dc8aae4b-134f-4d75-8a71-c4186239178e","VALIDATION","DATEIDENTIFIED_OUTOFRANGE","TIME",22,"dwc:dateIdentified=""2021_06_03T24:00"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is EMPTY.", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",1,"dwc:class=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:class is EMPTY", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",3,"dwc:class=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",4,"dwc:class=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",5,"dwc:class=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:class is EMPTY", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",6,"dwc:class=""Insecta""",,"RUN_HAS_RESULT","COMPLIANT","dwc:class has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",7,"dwc:class=""Insecta""",,"RUN_HAS_RESULT","COMPLIANT","dwc:class has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",8,"dwc:class=""Insetca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",9,"dwc:class=""Insetca""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",10,"dwc:class=""Magnoliopsida""",,"RUN_HAS_RESULT","COMPLIANT","dwc:class has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",11,"dwc:class=""Magnoliopsida""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority. Parameterized Source Authority has Dicotyledonae instead of Magnoliopsida", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",12,"dwc:class=""Magnoliophyta""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority. Magnoliophyta is a Phylum - not a Class", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",13,"dwc:class=""herps""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",14,"dwc:class=""Dicotyledoneae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:class does not have an equivalent at the rank of Class in the bdq:sourceAuthority. Parameterized Source Authority has Dicotyledonae instead of Magnoliopsida", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",15,"dwc:class=""Dicotyledoneae""",,"RUN_HAS_RESULT","COMPLIANT","dwc:class has an equivalent at the rank of Class in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/77",77,"2cd6884e-3d14-4476-94f7-1191cfff309b","VALIDATION","CLASS_NOTFOUND","NAME",16,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","the bdq:sourceAuthority was not available or was unreachable", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",1,"dwc:geodeticDatum=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum is EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",2,"dwc:geodeticDatum=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:geodeticDatum is EMPTY.", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",3,"dwc:geodeticDatum=""UTM""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",4,"dwc:geodeticDatum=""WGS84""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",5,"dwc:geodeticDatum=""epsg:4326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",6,"dwc:geodeticDatum=""6326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",7,"dwc:geodeticDatum=""7030""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",8,"dwc:geodeticDatum=""23032""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",9,"dwc:geodeticDatum=""ED50""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",10,"dwc:geodeticDatum=""International 1924""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",11,"dwc:geodeticDatum=""4326""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/78",78,"239ec40e-a729-4a8e-ba69-e0bf03ac1c44","VALIDATION","GEODETICDATUM_EMPTY","SPACE",12,"dwc:geodeticDatum=""X""",,"RUN_HAS_RESULT","COMPLIANT","dwc:geodeticDatum has match in bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",1,"dwc:decimalLatitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",1,"dwc:decimalLatitude=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is EMPTY", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",2,"dwc:decimalLatitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",3,"dwc:decimalLatitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",4,"dwc:decimalLatitude=""41.0554 N""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:decimalLatitude is not interpretable as a number", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",5,"dwc:decimalLatitude=""121.0534""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatitude is in not in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",6,"dwc:decimalLatitude=""-99.2314""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatitude is in not in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",8,"dwc:decimalLatitude=""18.835941""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/79",79,"b6ecda2a-ce36-437a-b515-3ae94948fe83","VALIDATION","DECIMALLATITUDE_OUTOFRANGE","SPACE",9,"dwc:decimalLatitude=""41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is in RANGE", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",1,"dwc:kingdom=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:kingdom is EMPTY", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",2,"dwc:kingdom=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:kingdom is EMPTY", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",3,"dwc:kingdom=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",4,"dwc:kingdom=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",5,"dwc:kingdom="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:kingdom is EMPTY", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",6,"dwc:kingdom=""Animalia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:kingdom has an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",7,"dwc:kingdom=""Metazoa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:kingdom has an equivalent at the rank of Kingdom in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",8,"dwc:kingdom=""Metazoa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",9,"dwc:kingdom=""animals""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority. This may be fixed using fuzzy matching at the AMENDMENT stage", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",10,"dwc:kingdom=""Fungi""",,"RUN_HAS_RESULT","COMPLIANT","dwc:kingdom has an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",11,"dwc:kingdom=""fungus""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom does not have an equivalent at the rank of Kingdom in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",12,"dwc:kingdom=""dwc:kingdom""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:kingdom not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/81",81,"125b5493-052d-4a0d-a3e1-ed5bf792689e","VALIDATION","KINGDOM_NOTFOUND","NAME",13,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",1,"dwc:scientificName=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",2,"dwc:scientificName="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",3,"dwc:scientificName=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",4,"dwc:scientificName=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",5,"dwc:scientificName=""---""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",6,"dwc:scientificName=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",7,"dwc:scientificName=""Hakea decurrens ssp. Physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",8,"dwc:scientificName=""Hakea"", dwc:genus=""Hakea""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",9,"dwc:scientificName=""Hakea decurrens""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",10,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/82",82,"7c4b9498-a8d9-4ebb-85f1-9f200c788595","VALIDATION","SCIENTIFICNAME_EMPTY","NAME",11,"dwc:scientificName=""dwc:scientificName""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is not EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",1,"dwc:order=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:order is EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",2,"dwc:order="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:order is EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",3,"dwc:order=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:order is EMPTY", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",4,"dwc:order=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",5,"dwc:order=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",6,"dwc:order=""Lepidoptera""",,"RUN_HAS_RESULT","COMPLIANT","dwc:order has an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",7,"dwc:order=""Nymphalidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority. Nymphalidae is a family, not an order", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",8,"dwc:order=""butterflies""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",9,"dwc:order=""dwc:order""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:order does not have an equivalent at the rank of Order in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/83",83,"81cc974d-43cc-4c0f-a5e0-afa23b455aa3","VALIDATION","ORDER_NOTFOUND","NAME",10,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","the bdq:sourceAuthority was not available or unreachable", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",1,"dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",2,"dwc:year=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",3,"dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is in RANGE", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",4,"dwc:year=""194x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is not an interpretable as an integer", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",5,"dwc:year=""1952""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is in RANGE", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",6,"dwc:year=""9999""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is not in RANGE. The value in year has not yet come to pass.", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",7,"dwc:year=""1599""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is not in RANGE. This result assumes the bdq:earliestDate default value of 1600.", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",8,"dwc:year=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:year is not in RANGE. This result assumes the bdq:earliestDate default value of 1600.", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",9,"dwc:year=""XXXX""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is not an interpretable as an integer", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",10,"dwc:year=""2000""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is in RANGE", +"https://github.com/tdwg/bdq/issues/84",84,"ad0c8855-de69-4843-a80c-a5387d20fbc8","VALIDATION","YEAR_OUTOFRANGE","TIME",11,"dwc:year=""1900""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is in RANGE", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",1,"dwc:eventDate=""2021_10_29"", dwc:verbatimEventDate=""February 2022""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",2,"dwc:eventDate="""", dwc:verbatimEventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimEventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",3,"dwc:eventDate="""", dwc:verbatimEventDate=""X""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:verbatimEventDate is cannot be interpreted as a valid ISO 8601 date", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",4,"dwc:eventDate="""", dwc:verbatimEventDate=""Friday 29th Oct. 2021""","dwc:eventDate=""2021-10-29""","AMENDED","dwc:eventDate=""2021-10-29""","dwc:verbatimEventDate contains an interpretable value (assuming some external lookup thesauri)", +"https://github.com/tdwg/bdq/issues/86",86,"6d0a0c10-5e4a-4759-b448-88932f399812","AMENDMENT","EVENTDATE_FROM_VERBATIM","TIME",5,"dwc:eventDate="""", dwc:verbatimEventDate=""03/04/2020""",,"NOT_AMENDED",,"dwc:verbatimEventDate is ambiguous", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",1,"dwc:decimalLatitude="""", dwc:decimalLongitude=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",2,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""0"",",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",3,"dwc:decimalLatitude=""0.0"", dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",4,"dwc:decimalLatitude=""41.0554 N"", dwc:decimalLongitude=""121.0534 W""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",5,"dwc:decimalLatitude=""121.0534"", dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",6,"dwc:decimalLatitude=""-99.2314"", dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",7,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",8,"dwc:decimalLatitude=""18.835941"", dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",9,"dwc:decimalLatitude=""41.0525925872862"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude and dwc:decimalLongitude are not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",10,"dwc:decimalLatitude=""0"", dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not zero", +"https://github.com/tdwg/bdq/issues/87",87,"1bf0e210-6792-4128-b8cc-ab6828aa4871","VALIDATION","COORDINATES_ZERO","SPACE",11,"dwc:decimalLatitude=""-41.0525925872862"", dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatitude is not zero", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",1,"dwc:dateIdentified="""", dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",2,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1962-11-01T10:00-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",3,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1964-11-01T10:00-0600"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",4," dwc:day=""15"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",5," dwc:day=""32"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",6," dwc:day=""x"", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",7," dwc:day="""", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",8," dwc:day="""", dwc:month="""", dwc:year=""194x"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",9," dwc:day=""15"", dwc:month="""", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day and dwc:year are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",10," dwc:day=""30"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month and dwc:year are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",11," dwc:day=""x"", dwc:month=""2"", dwc:year=""1952"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month and dwc:year are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",12," dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month, dwc:year and dwc:evendate are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",13," dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-16T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month, dwc:year and dwc:evendate are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",14," dwc:day="""", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate=""1949-09-15T12:34"", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month, dwc:year and dwc:evendate are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",15," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-12-09T12:34"", dwc:verbatimEventDate=""9/12/1949"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:evendate and dwc:verbatimEventDate are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",16," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""9/15/1949"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:verbatimEventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",17," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear and dwc:endDayOfyear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",18," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""0"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear and dwc:endDayOfyear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",19," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""x"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear and dwc:endDayOfyear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",20," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:eventDate, dwc:startDayOfYear and dwc:endDayOfyear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",21," dwc:day=""15"", dwc:month=""1"", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month, dwc:year, dwc:startDayOfYear and dwc:endDayOfyear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",22," dwc:day=""15"", dwc:month=""9"", dwc:year=""1949"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""15"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day, dwc:month, dwc:year, dwc:startDayOfYear and dwc:endDayOfyear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",23," dwc:day=""15"", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day and dwc:month are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",24," dwc:day="""", dwc:month=""10"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",25," dwc:day="""", dwc:month=""v"", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",26," dwc:day="""", dwc:month="""", dwc:year=""2004"", dwc:eventDate="""", dwc:verbatimEventDate="""", dwc:startDayOfYear=""366"", dwc:endDayOfYear=""366""",,"RUN_HAS_RESULT","COMPLIANT","dwc:year, dwc:startDayOfYear and dwc:endDayOfyear are not EMPTY", +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",27,"dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""2021-06-03T24:00"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:verbatimEventDate is not EMPTY","`" +"https://github.com/tdwg/bdq/issues/88",88,"41267642-60ff-4116-90eb-499fee2cd83f","VALIDATION","EVENT_TEMPORAL_EMPTY","TIME",28," dwc:day="""", dwc:month="""", dwc:year="""", dwc:eventDate="""", dwc:verbatimEventDate=""1949-01-15T12:34/"", dwc:startDayOfYear="""", dwc:endDayOfYear=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:verbatimEventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",1,"dc:type=""Event""",,"RUN_HAS_RESULT","COMPLIANT","dc:type matches a term in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",2,"dc:type=""StillerImage""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",3,"dc:type=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",4,"dc:type=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",5,"dc:type=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",6,"dc:type=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",7,"dc:type="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",8,"dc:type=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",9,"dc:type=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",10,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority not available or unreachable", +"https://github.com/tdwg/bdq/issues/91",91,"cdaabb0d-a863-49d0-bc0f-738d771acba5","VALIDATION","DCTYPE_NOTSTANDARD","OTHER",11,"dc:type=""dc:type""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type does not match terms in DCMI Vocabulary", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",1,"dwc:eventDate=""2021-10-29"", dwc:year="""", dwc:month="""", dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",2,"dwc:eventDate="""", dwc:year="""", dwc:month="""", dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year EMPTY", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",3,"dwc:eventDate="""", dwc:year=""X"", dwc:month="""", dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is an uninterpretable value", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",4,"dwc:eventDate="""", dwc:year=""2021"", dwc:month=""10""","dwc:eventDate=""2021-10""","AMENDED","dwc:eventDate=""2021-10""","dwc:year and dwc:month are interpretable values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",5,"dwc:eventDate="""", dwc:year=""2021"", dwc:month=""10"", dwc:day=""29""","dwc:eventDate=""2021-10-29""","AMENDED","dwc:eventDate=""2021-10-29""","dwc:year, dwc:month and dwc:day are interpretable values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",6,"dwc:eventDate="""", dwc:year=""2021"", dwc:month="""", dwc:day=""29""","dwc:eventDate=""2021-??-29""","AMENDED",,"dwc:year and dwc:day are interpretable values", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",7,"dwc:eventDate="""", dwc:year=""2021"", dwc:month=""X"", dwc:day=""29""","dwc:eventDate=""2021-??-29""","AMENDED",,"dwc:year and dwc:day are interpretable values. Dwc:month is ambiguous as either missing or ""10""", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",8,"dwc:eventDate="""", dwc:month=""2021"", dwc:day=""29""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/93",93,"3892f432-ddd0-4a0a-b713-f2e2ecbd879d","AMENDMENT","EVENTDATE_FROM_YEARMONTHDAY","TIME",9,"dwc:eventDate="""", dwc:year=""2021""","dwc:eventDate=""2021""","AMENDED","dwc:eventDate=""2021""","dwc:year is an interpretable value", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",1,"dwc:establishmentMeans=""native""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",2,"dwc:establishmentMeans=""blah""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",3,"dwc:establishmentMeans=""anyOldTerm""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",4,"dwc:establishmentMeans=""…""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",5,"dwc:establishmentMeans=""?""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",6,"dwc:establishmentMeans="" """,,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:establishmentMeans is EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",7,"dwc:establishmentMeans=""""",,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:establishmentMeans is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",8,"dwc:establishmentMeans=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_NOTIFIED","dwc:establishmentMeans is EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",9,"dwc:establishmentMeans=""[null]""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/94",94,"acc8dff2-d8d1-483a-946d-65a02a452700","NOTIFICATION","ESTABLISHMENTMEANS_NOTEMPTY","OTHER",10,"dwc:establishmentMeans=""dwc:establishmentMeans""",,"RUN_HAS_RESULT","NOTIFY","dwc:establishmentMeans is not EMPTY", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",1,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",2,"dwc:continent=""Africa"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","All input fields except continent EMPTY.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",3,"dwc:continent="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",4,"dwc:continent="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",5,"dwc:continent="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",6,"dwc:continent="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Congo could be Republic of the Congo or Democratic Republic of the Congo.", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",7,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",9,"dwc:continent="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Administrative geographic terms cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",10,"dwc:continent="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",11,"dwc:continent="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Administrative geographic terms cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",12,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","Administrative geographic terms cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",13,"dwc:continent="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",14,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",15,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Neuquén"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/95",95,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","GEOGRAPHY_AMBIGUOUS","SPACE",16,"dwc:continent="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","Administrative geographic terms can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",1,"dwc:decimalLongitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",2,"dwc:decimalLongitude=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLongitude is EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",3,"dwc:decimalLongitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",4,"dwc:decimalLongitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",5,"dwc:decimalLongitude=""121.0534 W""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",6,"dwc:decimalLongitude=""181.0554""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",7,"dwc:decimalLongitude=""-189.5674""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",8,"dwc:decimalLongitude=""-71.5310546742521""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/96",96,"9beb9442-d942-4f42-8b6a-fcea01ee086a","VALIDATION","DECIMALLONGITUDE_EMPTY","SPACE",9,"dwc:decimalLongitude=""-94.4805934""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLongitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",1,"dwc:countryCode=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",2,"dwc:countryCode=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",3,"dwc:countryCode=""GL""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",4,"dwc:countryCode=""GRL""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",5,"dwc:countryCode=""XX""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",6,"dwc:countryCode=""Austria""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",7,"dwc:countryCode=""US""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",8,"dwc:countryCode=""CL""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",9,"dwc:countryCode=""AR""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/98",98,"853b79a2-b314-44a2-ae46-34a1e7ed85e4","VALIDATION","COUNTRYCODE_EMPTY","SPACE",10,"dwc:countryCode=""MX""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",1,"dcterms:license=""CC0 1.0""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",2,"dcterms:license=""corrosive commons""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",3,"dcterms:license=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",4,"dcterms:license=""…""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",5,"dcterms:license=""?""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",6,"dcterms:license="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license is EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",7,"dcterms:license=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",8,"dcterms:license=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dcterms:license is EMPTY", +"https://github.com/tdwg/bdq/issues/99",99,"15f78619-811a-4c6f-997a-a4c7888ad849","VALIDATION","LICENCE_EMPTY","OTHER",9,"dcterms:license=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dcterms:license is not EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",1,"dwc:scientificName="""", dwc:genus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input terms are EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",2,"dwc:scientificName="""", dwc:genus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input terms are EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",3,"dwc:scientificName="""", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:scientificName is EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",4,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus="""", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""pyhsocarpa""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:genus is EMPTY", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",5,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",6,"dwc:scientificName=""Hakea decurrens physocarpa"", dwc:genus="""", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",7,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",8,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","??", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",9,"dwc:scientificName=""Hakea decurrens ssp. ? physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",10,"dwc:scientificName=""Hakea decurrens ssp. Aff. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",11,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""physocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",12,"dwc:scientificName=""Hakea decurrens subsp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet=""decurrens"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",13,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",14,"dwc:scientificName=""Hakea decurrens ssp. physocarpa W.R.Barker"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""pyhsocarpa""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",15,"dwc:scientificName=""Hakea decurrens ssp. physocarpa"", dwc:genus=""Hakea"", dwc:specificEpithet=""physocarpa"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",16,"dwc:scientificName=""Hakea decurrens"", dwc:genus=""Hakea"", dwc:specificEpithet=""physocarpa"", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:scientificName is inconsistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/101",101,"17f03f1f-f74d-40c0-8071-2927cfc9487b","VALIDATION","POLYNOMIAL_INCONSISTENT","NAME",17,"dwc:scientificName=""Hakea"", dwc:genus=""Hakea"", dwc:specificEpithet="""", dwc:infraspecificEpithet=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:scientificName is consistent with atomic parts (dwc:genus, dwc:specificEpithet and dwc:infraspecificEpithet)", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",1,"dwc:geodeticDatum=""""","dwc:geodeticDatum=""EPSG:4326""","AMENDED","dwc:geodeticDatum=""EPSG:4326""","dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",2,"dwc:geodeticDatum=""[non-printing characters]""","dwc:geodeticDatum=""EPSG:4326""","AMENDED","dwc:geodeticDatum=""EPSG:4326""","dwc:geodeticDatum is EMPTY", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",3,"dwc:geodeticDatum=""WGS84""",,"NOT_AMENDED",,"dwc:geodeticDatum contains and interpretable value", +"https://github.com/tdwg/bdq/issues/102",102,"7498ca76-c4d4-42e2-8103-acacccbdffa7","AMENDMENT","GEODETICDATUM_ASSUMEDDEFAULT","SPACE",4,"dwc:geodeticDatum=""x""",,"NOT_AMENDED",,"dwc:geodeticDatum contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",1,"dc:type=""StillImage""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",2,"dc:type=""StillerImage""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",3,"dc:type=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",4,"dc:type=""…""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",5,"dc:type=""?""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",6,"dc:type="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",7,"dc:type=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",8,"dc:type=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dc:type is EMPTY", +"https://github.com/tdwg/bdq/issues/103",103,"374b091a-fc90-4791-91e5-c1557c649169","VALIDATION","DCTYPE_EMPTY","OTHER",9,"dc:type=""dc:type""",,"RUN_HAS_RESULT","COMPLIANT","dc:type is not EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",1,"dwc:basisOfRecord=""Preserved Specimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",2,"dwc:basisOfRecord=""Living Specimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",3,"dwc:basisOfRecord=""Fossil Specimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",4,"dwc:basisOfRecord=""Human Observation""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",5,"dwc:basisOfRecord=""Machine Observation""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",6,"dwc:basisOfRecord=""Taxon""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",7,"dwc:basisOfRecord="" Preserved Specimen""",,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",8,"dwc:basisOfRecord=""Preserved Specimen """,,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",9,"dwc:basisOfRecord="" Preserved Specimen """,,"RUN_HAS_RESULT","COMPLIANT","dwc:basisOfRecord matches a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",10,"dwc:basisOfRecord=""Literature""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",11,"dwc:basisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",12,"dwc:basisOfRecord=""dwc:PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes, value appears to be an IRI, these should be mapped to rdf:type", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",13,"dwc:basisOfRecord=""http://rs.tdwg.org/dwc/terms/PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes, value appears to be an IRI, these should be mapped to rdf:type", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",14,"dwc:basisOfRecord=""Preserved Specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes. Extra whitespace", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",15,"dwc:basisOfRecord=""preserved specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes. Incorrect capitalization", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",16,"dwc:basisOfRecord=""Preserved specimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes. Incorrect capitalization", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",17,"dwc:basisOfRecord=""preservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes. Standard label not in camel case", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",18,"dwc:basisOfRecord=""Presence""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",19,"dwc:basisOfRecord=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",20,"dwc:basisOfRecord=""9""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",21,"dwc:basisOfRecord=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",22,"dwc:basisOfRecord=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",23,"dwc:basisOfRecord=""present""",,"RUN_HAS_RESULT","NOT_COMPLIANT","bdq:sourceAuthority service is not available, try again later", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",24,"dwc:basisOfRecord="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",25,"dwc:basisOfRecord=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",26,"dwc:basisOfRecord=""basisOfRecord""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",27,"dwc:basisOfRecord=""PreservedSpecimen""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",28,"dc:type=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:basisOfRecord is EMPTY", +"https://github.com/tdwg/bdq/issues/104",104,"42408a00-bf71-4892-a399-4325e2bc1fb8","VALIDATION","BASISOFRECORD_NOTSTANDARD","OTHER",29,"dc:type=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:basisOfRecord does not match a standard label of one of the Darwin Core classes", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",1,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","All input fields are empty or missing", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",2,"dwc:taxonID=""123"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName="""" ",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",3,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID=""?"", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",4,"dwc:taxonID="""", dwc:scientificNameID=""XVF456"", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",5,"dwc:taxonID="""", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName=""Fred"", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/105",105,"06851339-843f-4a43-8422-4e61b9a00e75","VALIDATION","TAXON_EMPTY","NAME",6,"dwc:taxonID=""taxonID"", dwc:scientificNameID="""", dwc:acceptedNameUsageID="""", dwc:parentNameUsageID="""", dwc:originalNameUsageID="""", dwc:taxonConceptID="""", dwc:scientificName="""", dwc:higherClassification="""", dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family="""", dwc:genus="""", dwc:subgenus="""", dwc:specificEpithet="""", dwc:infraspecificEpithet="""", dwc:vernacularName=""""",,"RUN_HAS_RESULT","COMPLIANT","at least enough terms exist that identify that an entity exists", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",1,"dwc:minimumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",2,"dwc:minimumDepthInMeters=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",3,"dwc:minimumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumDepthInMeters is in range", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",4,"dwc:minimumDepthInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumDepthInMeters is in range", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",5,"dwc:minimumDepthInMeters=""12000""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumDepthInMeters is not in range", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",6,"dwc:minimumDepthInMeters=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is not interpretable as zero or positive value", +"https://github.com/tdwg/bdq/issues/107",107,"04b2c8f3-c71b-4e95-8e43-f70374c5fb92","VALIDATION","MINDEPTH_OUTOFRANGE","SPACE",7,"dwc:minimumDepthInMeters=""-100""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:minimumDepthInMeters is not interpretable as zero or positive value", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",1,"dwc:minimumElevationInMeters="""", dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY.", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",2,"dwc:minimumElevationInMeters=""0"", dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is equal to dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",3,"dwc:minimumElevationInMeters=""1"", dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:minimumElevationInMeters is greater than dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",4,"dwc:minimumElevationInMeters=""-500"", dwc:maximumElevationInMeters=""-500""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is equal to dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",5,"dwc:minimumElevationInMeters=""8860"", dwc:maximumElevationInMeters=""8860""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is equal to dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/108",108,"d708526b-6561-438e-aa1a-82cd80b06396","VALIDATION","MINELEVATION_GREATERTHAN_MAXELEVATION","SPACE",6,"dwc:minimumElevationInMeters=""-500"", dwc:maximumElevationInMeters=""500""",,"RUN_HAS_RESULT","COMPLIANT","dwc:minimumElevationInMeters is less than dwc: maximumElevationInMeters", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",1,"dwc:coordinateUncertaintyInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:coordinateUncertaintyInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",2,"dwc:coordinateUncertaintyInMeters=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:coordinateUncertaintyInMeters is EMPTY", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",3,"dwc:coordinateUncertaintyInMeters=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:coordinateUncertaintyInMeters is out of range", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",4,"dwc:coordinateUncertaintyInMeters=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:coordinateUncertaintyInMeters is out of range", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",5,"dwc:coordinateUncertaintyInMeters=""20037510""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:coordinateUncertaintyInMeters is out of range", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",6,"dwc:coordinateUncertaintyInMeters=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:coordinateUncertaintyInMeters is in range", +"https://github.com/tdwg/bdq/issues/109",109,"c6adf2ea-3051-4498-97f4-4b2f8a105f57","VALIDATION","COORDINATEUNCERTAINTY_OUTOFRANGE","SPACE",7,"dwc:coordinateUncertaintyInMeters=""20037509""",,"RUN_HAS_RESULT","COMPLIANT","dwc:coordinateUncertaintyInMeters is in range", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",1,"dwc:maximumElevationInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumElevation is EMPTY", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",1,"dwc:maximumElevationInMeters=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumElevation is EMPTY", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",2,"dwc:maximumElevationInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:maximumElevation is in is range", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",3,"dwc:maximumElevationInMeters=""-500""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumElevation is not in range", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",4,"dwc:maximumElevationInMeters=""8860""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumElevation is not in range", +"https://github.com/tdwg/bdq/issues/112",112,"c971fe3f-84c1-4636-9f44-b1ec31fd63c7","VALIDATION","MAXELEVATION_OUTOFRANGE","SPACE",5,"dwc:maximumElevationInMeters=""x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maxElevation is not interpretable as a number or is ambiguous", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",1,"dwc:occurrenceStatus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",2,"dwc:occurrenceStatus=""X""",,"NOT_AMENDED",,"Input field contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/115",115,"f8f3a093-042c-47a3-971a-a482aaaf3b75","AMENDMENT","OCCURRENCESTATUS_STANDARDIZED","OTHER",3,"dwc:occurrenceStatus=""1""","dwc:occurrenceStatus=""present""","AMENDED","dwc:occurrenceStatus=""present""","Input field contains interpretable value. This may be pushing it a little, but I would have interpreted 1/0 as present/absent", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",1,"dwc:occurrenceStatus=""present""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceStatus matches a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",2,"dwc:occurrenceStatus=""presence""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",3,"dwc:occurrenceStatus=""anyOldTerm""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",4,"dwc:occurrenceStatus=""…""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",5,"dwc:occurrenceStatus=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",6,"dwc:occurrenceStatus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",7,"dwc:occurrenceStatus="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",8,"dwc:occurrenceStatus=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:occurrenceStatus is EMPTY", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",9,"dwc:occurrenceStatus=""[null]""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_COMPLIANT","dwc:occurrenceStatus does not match a term in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/116",116,"7af25f1e-a4e2-4ff4-b161-d1f25a5c3e47","VALIDATION","OCCURRENCESTATUS_NOSTANDARD","OTHER",10,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority not available or unreachable", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",1,"dwc:occurrenceStatus=""http://arctos.database.museum/guid/MSB:Mamm:233627""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""http://arctos.database.museum/guid/MSB:Mamm:233627"" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",2,"dwc:occurrenceStatus=""000866d2-c177-4648-a200-ead4007051b9""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""000866d2-c177-4648-a200-ead4007051b9"" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",3,"dwc:occurrenceStatus=""anyOldTerm""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""anyOldTerm"" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",4,"dwc:occurrenceStatus=""…""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""..."" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",5,"dwc:occurrenceStatus=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceID = ""..."" means the field is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",6,"dwc:occurrenceStatus=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",7,"dwc:occurrenceStatus="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",8,"dwc:occurrenceStatus=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:occurrenceID is EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCURRENCESTATUS_EMPTY","OTHER",9,"dwc:occurrenceStatus=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCUURENCESTATUS_EMPTY","OTHER",10,"dwc:occurrenceStatus=""present""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/117",117,"eb4a17f6-6bea-4cdd-93dd-d5a7e9d1eccf","VALIDATION","OCCUURENCESTATUS_EMPTY","OTHER",11,"dwc:occurrenceStatus=""abs""",,"RUN_HAS_RESULT","COMPLIANT","dwc:occurrenceStatus is not EMPTY", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",1,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority not available","bdq:sourceAuthority not available", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",2,"dwc:continent="""", dwc:country=""Australia"", dwc:countryCode="""", dwc:stateProvince=""WA"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countryCode=""AU"", dwc:stateProvince=""Western Australia""","AMENDED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countryCode=""AU"", dwc:stateProvince=""Western Australia""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",3,"dwc:continent="""", dwc:country=""Aust"", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""",,"NOT_AMENDED",,"Administrative geographic terms were not amended. dwc:country could be ""Austria"" or ""Australia"". Both have dwc:stateProvince starting with ""T""", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",4,"dwc:continent=""Australasia"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", stateProvince=""Tasmania"", dwc:CountryCode=""AU""","AMENDED","dwc:continent=""Australasia"", dwc:country=""Australia"", stateProvince=""Tasmania"", dwc:CountryCode=""AU""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",5,"dwc:continent=""x"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince=""T"", dwc:county="""", dwc:municipality=""""",,"NOT_AMENDED",,"Administrative geographic terms were not amended. Dwc:""aust"" is ambiguous", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",6,"dwc:continent=""Australia"", dwc:country=""Aust."", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""Sorell""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU"", dwc:stateProvince=""Tasmania""","AMENDED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU"", dwc:stateProvince=""Tasmania""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",7,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""Tasmania"", dwc:county="""", dwc:municipality=""""","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU""","AMENDED","dwc:continent=""Australasia"", dwc:country=""Australia"", dwc:countrycode=""AU""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""Victoria"", dwc:county="""", dwc:municipality=""Sorell""",,"NOT_AMENDED",,"Administrative geographic terms were not amended. dwc:municipality=""Sorell"" is in dwc:stateProvince=""Tasmania"", not ""Victoria""", +"https://github.com/tdwg/bdq/issues/118",118,"78640f09-8353-411a-800e-9b6d498fb1c9","AMENDMENT","GEOGRAPHY_STANDARDIZED","SPACE",9,"dwc:continent="""", dwc:country=""Australia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""Sorell""","dwc:continent=""Australasia"", dwc:countryCode=""AU"", dwc:stateProvince=""Tasmania""","AMENDED","dwc:continent=""Australasia"", dwc:countryCode=""AU"", dwc:stateProvince=""Tasmania""","Administrative geographic terms were amended to comply with standard values from the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",1,"dwc:decimalLatitude=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatiitude is EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",2,"dwc:decimalLatitude=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:decimalLatiitude is EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",3,"dwc:decimalLatitude=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",4,"dwc:decimalLatitude=""0.0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",5,"dwc:decimalLatitude=""41.0554 N""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",6,"dwc:decimalLatitude=""121.0534""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",7,"dwc:decimalLatitude=""-99.2314""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",8,"dwc:decimalLatitude=""-41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",9,"dwc:decimalLatitude=""18.835941""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/119",119,"7d2485d5-1ba7-4f25-90cb-f4480ff1a275","VALIDATION","DECIMALLATITUDE_EMPTY","SPACE",10,"dwc:decimalLatitude=""41.0525925872862""",,"RUN_HAS_RESULT","COMPLIANT","dwc:decimalLatiitude is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",1,"dwc:taxonId=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",2,"dwc:taxonId=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",3,"dwc:taxonId=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",4,"dwc:taxonId=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",5,"dwc:taxonId=""123""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",6,"dwc:taxonId=""8fa58e08-08de-4ac1-b69c-1235340b7001""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",7,"dwc:taxonId=""https://www.gbif.org/species/212""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/120",120,"401bf207-9a55-4dff-88a5-abcd58ad97fa","VALIDATION","TAXONID_EMPTY","NAME",8,"dwc:taxonId=""dwc:taxonID""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID is not EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",1,"dwc:taxonID=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",2,"dwc:taxonID="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",3,"dwc:taxonID=""[non printing-characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonID is EMPTY", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",4,"dwc:taxonID=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",5,"dwc:taxonID=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent at the rank of Family in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",6,"dwc:taxonID=""Wallabia bicolor""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",7,"dwc:taxonID=""Wallabia bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",8,"dwc:taxonID=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",9,"dwc:taxonID=""bicolor (Desmarest, 1804)""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",10,"dwc:taxonID=""Macropodidae""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",11,"dwc:taxonID=""wallaby""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",12,"dwc:taxonID=""Hakea decurrens ssp. physocarpa""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonID has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",13,"dwc:taxonID=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",14,"dwc:taxonID=""Geranium sp. Pale pink flowers (M.Gray 5847) Vic. Herbarium""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID has an equivalent in the Parameterized Source Authority. The Australian Plant Census includes undescribed taxa using a formula so that they can be added to legislation", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",15,"dwc:taxonID=""dwc:scientificName""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonID not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/121",121,"a82c7e3a-3a50-4438-906c-6d0fefa9e984","VALIDATION","TAXONID_AMBIGUOUS","NAME",16,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was not Available or was unreachable", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",1,"dwc:genus=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:genus is EMPTY", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",2,"dwc:genus="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:genus is EMPTY", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",3,"dwc:genus=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:genus is EMPTY", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",4,"dwc:genus=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",5,"dwc:genus=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",7,"dwc:genus=""Egernia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:genus has an equivalent at the rank of Genus in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",8,"dwc:genus=""Egernea""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority. This may be fixed using fuzzy matching at the AMENDMENT stage", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",9,"dwc:genus=""Scincidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority. Scincidae is an family not a genus", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",10,"dwc:genus=""Wallabia""",,"RUN_HAS_RESULT","COMPLIANT","dwc:genus has an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",11,"dwc:genus=""skink""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",12,"dwc:genus=""Lizard""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus does not have an equivalent at the rank of Genus in the Parameterized Source Authority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",13,"dwc:genus=""dwc:genus""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:genus not found in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/122",122,"3667556d-d8f5-454c-922b-af8af38f613c","VALIDATION","GENUS_NOTFOUND","NAME",14,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was not Available or was unreachable", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",1,"dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields are EMPTY", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",2,"dwc:kingdom=""Plantae"", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",3,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",4,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",5,"dwc:kingdom=""Plantae"", dwc:phylum="""", dwc:class="""", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",6,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",7,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",8,"dwc:kingdom="""", dwc:phylum=""Magnoliophyta"", dwc:class="""", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",9,"dwc:kingdom="""", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order=""Myrtales"", dwc:family=""""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",10,"dwc:kingdom="""", dwc:phylum="""", dwc:class=""Magnoliopsida"", dwc:order="""", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",11,"dwc:kingdom="""", dwc:phylum="""", dwc:class="""", dwc:order=""Myrtales"", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",12,"dwc:kingdom="""", dwc:phylum=""Chordata"", dwc:class="""", dwc:order=""Rhopalocera"", dwc:family=""Muricidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",13,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) can be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",14,"dwc:kingdom=""Plantae"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",15,"dwc:kingdom=""Animalia"", dwc:phylum=""Magnoliophyta"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",16,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Magnoliopsida"", dwc:order=""Coleoptera"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",17,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Myrtales"", dwc:family=""Curculionidae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",18,"dwc:kingdom=""Animalia"", dwc:phylum=""Arthropoda"", dwc:class=""Insecta"", dwc:order=""Coleoptera"", dwc:family=""Myrtaceae""",,"RUN_HAS_RESULT","NOT_COMPLIANT","The combination of values of higher classification taxonomic terms (dwc:kingdom, dwc:phylum, dwc:class, dwc:order, dwc:family) cannot be unambiguously resolved by the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/123",123,"78640f09-8353-411a-800e-9b6d498fb1c9","VALIDATION","CLASSIFICATION_AMBIGUOUS","NAME",19,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",1,"dwc:day="""", dwc:month="""", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:day is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",2,"dwc:day=""15"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",3,"dwc:day=""32"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",4,"dwc:day=""x"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",5,"dwc:day="""", dwc:month="""", dwc:year=""1949""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",6,"dwc:day="""", dwc:month="""", dwc:year=""1949x""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",7,"dwc:day=""15"", dwc:month="""", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",8,"dwc:day=""30"", dwc:month=""2"", dwc:year=""1952""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",9,"dwc:day=""x"", dwc:month=""2"", dwc:year=""1952""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is ambiguous", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",10,"dwc:day=""15"", dwc:month=""9"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",11,"dwc:day="""", dwc:month=""9"", dwc:year=""1949""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",12,"dwc:day=""15"", dwc:month=""1"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",13,"dwc:day=""15"", dwc:month=""10"", dwc:year=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",14,"dwc:day="""", dwc:month=""10"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",15,"dwc:day="""", dwc:month="""", dwc:year=""9999""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",16,"dwc:day="""", dwc:month="""", dwc:year=""1599""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",17,"dwc:day="""", dwc:month="""", dwc:year=""0""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",18,"dwc:day="""", dwc:month=""0"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",19,"dwc:day="""", dwc:month=""13"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",20,"dwc:day="""", dwc:month=""99"", dwc:year=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",21,"dwc:day=""99"", dwc:month="""", dwc:year=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",22,"dwc:day=""29"", dwc:month=""2"", dwc:year=""1952""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range. Leap year", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",23,"dwc:day=""29"", dwc:month=""2"", dwc:year=""2000""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range. Leap year", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",24,"dwc:day=""29"", dwc:month=""2"", dwc:year=""1900""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range. Not a leap year", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",25,"dwc:day=""16"", dwc:month=""8"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",26,"dwc:day=""16"", dwc:month=""9"", dwc:year=""1948""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/125",125,"5618f083-d55a-4ac2-92b5-b9fb227b832f","VALIDATION","DAY_OUTOFRANGE","TIME",27,"dwc:day=""2"", dwc:month=""1"", dwc:year=""1949""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",1,"dwc:month=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",2,"dwc:month=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",3,"dwc:month=""2""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",4,"dwc:month=""9""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",5,"dwc:month=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",6,"dwc:month=""10""",,"RUN_HAS_RESULT","COMPLIANT","dwc:month is in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",7,"dwc:month=""v""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month is ambiguous as ""v"" or ""5""", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",8,"dwc:month=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month is not in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",9,"dwc:month=""13""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month is not in range", +"https://github.com/tdwg/bdq/issues/126",126,"01c6dafa-0886-4b7e-9881-2c3018c98bdc","VALIDATION","MONTH_NOTSTANDARD","TIME",10,"dwc:month=""99""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:month is not in range", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",1,"dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",2,"dwc:day=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:day is EMPTY", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",3,"dwc:day=""-""","-","NOT_AMENDED",,"dwc:day is not a valid interpretable value", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",4,"dwc:day=""#""","#","NOT_AMENDED",,"dwc:day is not a valid interpretable value", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",5,"dwc:day=""X""","dwc:day=""10""","AMENDED","dwc:day=""10""","dwc:day is ambiguous, either a ""X"" or ""10""", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",6,"dwc:day=""IV""","dwc:day=""4""","AMENDED","dwc:day=""4""","dwc:day is ambiguous, either a ""IV"" or ""4""", +"https://github.com/tdwg/bdq/issues/127",127,"b129fa4d-b25b-43f7-9645-5ed4d44b357b","AMENDMENT","DAY_STANDARDIZED","TIME",7,"dwc:day=""5th Friday""",,"NOT_AMENDED",,"dwc:day is not a valid interpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",1,"dwc:month=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",2,"dwc:month=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:month is EMPTY", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",3,"dwc:month=""-""","-","NOT_AMENDED",,"dwc:month contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",4,"dwc:month=""#""","#","NOT_AMENDED",,"dwc:month contains an uninterpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",5,"dwc:month=""X""",,"NOT_AMENDED",,"dwc:month contains an ambiguous value. Could be ""X"" or ""10""", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",6,"dwc:month=""IV""","dwc:month=""4""","AMENDED","dwc:month=""4""","dwc:month contains aninterpretable value", +"https://github.com/tdwg/bdq/issues/128",128,"2e371d57-1eb3-4fe3-8a61-dff43ced50cf","AMENDMENT","MONTH_STANDARDIZED","TIME",7,"dwc:month=""October""","dwc:month=""10""","AMENDED","dwc:month=""10""","dwc:month contains an interpretable value", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",1,"dwc:eventDate="""", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",2,"dwc:eventDate=""1964-11-01T10:00-0600"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",3,"dwc:eventDate=""1949-09-15T12:34"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",4,"dwc:eventDate="""", dwc:startDayOfYear=""15""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",5,"dwc:eventDate="""", dwc:startDayOfYear=""0""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:startDayOfYear is not in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",6,"dwc:eventDate="""", dwc:startDayOfYear=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:startDayOfYear is ambiguous, either ""X"" or ""No"" or ""10""ot in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",7,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:startDayOfYear=""15""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",8,"dwc:eventDate=""1963-03-08T14:07-0600"", dwc:startDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is EMPTY", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",9,"dwc:eventDate="""", dwc:startDayOfYear=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",10,"dwc:eventDate="""", dwc:startDayOfYear=""365""",,"RUN_HAS_RESULT","COMPLIANT","dwc:startDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/130",130,"85803c7e-2a5a-42e1-b8d3-299a44cafc46","VALIDATION","STARTDAYOFYEAR_OUTOFRANGE","TIME",14,"dwc:eventDate="""", dwc:startDayOfYear=""366""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear is 366 and dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",1,"dwc:eventDate="""", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",2,"dwc:eventDate=""1962-11-01T10:00-0600"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:endDayOfyear is EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",3,"dwc:eventDate=""1949-09-15T12:34"", dwc:endDayOfYear=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:endDayOfyear is EMPTY", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",4,"dwc:eventDate="""", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:endDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",5,"dwc:eventDate=""1949-01-15T12:34/1949-01-20T17:00"", dwc:endDayOfYear=""20""",,"RUN_HAS_RESULT","COMPLIANT","dwc:endDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",6,"dwc:eventDate="""", dwc:endDayOfYear=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:endDayOfYear is ambiguous, either ""X"" or ""No"" or ""10""ot in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",7,"dwc:eventDate="""", dwc:endDayOfYear=""367""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:endDayOfYear is not in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",8,"dwc:eventDate="""", dwc:endDayOfYear=""1""",,"RUN_HAS_RESULT","COMPLIANT","dwc:endDayOfYear is in range", +"https://github.com/tdwg/bdq/issues/131",131,"9a39d88c-7eee-46df-b32a-c109f9f81fb8","VALIDATION","ENDDAYOFYEAR_OUTOFRANGE","TIME",9,"dwc:eventDate="""", dwc:endDayOfYear=""366""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:endDayOfYear is 366 and dwc:eventDate is EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",1,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear="""", dwc:eventDate=""2021-10-29""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:eventDate is not EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",2,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:startDayOfYear, dwc:endDayOfyear EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",3,"dwc:year="""", dwc:startDayOfYear=""X"", dwc:endDayOfYear="""", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",4,"dwc:year="""", dwc:startDayOfYear="""", dwc:endDayOfYear=""X"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is EMPTY", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",5,"dwc:year=""X"", dwc:startDayOfYear=""5"", dwc:endDayOfyear=""15"", dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:year is not interpretable as a valid year", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",6,"dwc:year=""2021"", dwc:startDayOfYear=""5"", dwc:endDayOfyear=""15"", dwc:eventDate=""""","dwc:eventDate=""2021-01-05/2021-01-15""","AMENDED","dwc:eventDate=""2021-01-05/2021-01-15""","dwc:eventDate was interpreted from dwc:year, dwc:startDayOfYear and dwc:endDayOfYear", +"https://github.com/tdwg/bdq/issues/132",132,"eb0a44fa-241c-4d64-98df-ad4aa837307b","AMENDMENT","EVENTDATE_FROM_YEARSTARTDAYOFYEARENDDAYOFYEAR","TIME",7,"dwc:year=""1901"", dwc:startDayOfYear=""15"", dwc:endDayOfyear=""25"", dwc:eventDate=""""","dwc:eventDate=""1901-01-15/1901-01-25""","AMENDED","dwc:eventDate=""1901-01-15/1901-01-25""","dwc:eventDate was interpreted from dwc:year, dwc:startDayOfYear and dwc:endDayOfYear", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",1,"dcterms:license=""""","dcterms:license=""""","NOT_AMENDED","dcterms:license=""""","dcterms:license EMPTY", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",2,"dcterms:license=""[non-printing characters]""","dcterms:license=""""","NOT_AMENDED","dcterms:license=""""","dcterms:license EMPTY", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",3,"dcterms:license=""X""",,"NOT_AMENDED",,"dcterms:license contains uninterpretable value ""X""", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",4,"dcterms:license=""CC0""","dcterms:license=""http://creativecommons.org/publicdomain/zero/1.0/legalcode""","AMENDED","dcterms:license=""http://creativecommons.org/publicdomain/zero/1.0/legalcode""","Input field contains interpretable value", +"https://github.com/tdwg/bdq/issues/133",133,"dcbe5bd2-42a0-4aab-bb4d-8f148c6490f8","AMENDMENT","LICENSE_STANDARDIZED","OTHER",5,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",1,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"All input fields are EMPTY", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",2,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",3,"dwc:continent=""Africa"", dwc:country="""", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:continent is a valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",4,"dwc:continent="""", dwc:country=""Eswatini"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is a valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",5,"dwc:continent="""", dwc:country=""Swaziland"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country is not valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",6,"dwc:continent="""", dwc:country=""Yugoslavia"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country is a valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",7,"dwc:continent="""", dwc:country=""Congo"", dwc:countryCode="""", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country is an ambiguous name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",8,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",9,"dwc:continent="""", dwc:country="""", dwc:countryCode=""GRL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",10,"dwc:continent="""", dwc:country="""", dwc:countryCode=""XX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is not valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",11,"dwc:continent="""", dwc:country="""", dwc:countryCode=""Austria"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:countryCode is not valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",12,"dwc:continent="""", dwc:country=""United States Minor Outlying Islands"", dwc:countryCode=""US"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:country is not valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",13,"dwc:continent="""", dwc:country="""", dwc:countryCode="""", dwc:stateProvince=""San Isidro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:stateProvince is a valid name according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",14,"dwc:continent="""", dwc:country="""", dwc:countryCode=""CL"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode is valid according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",15,"dwc:continent="""", dwc:country="""", dwc:countryCode=""AR"", dwc:stateProvince=""Rio Negro"", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:countryCode matches dwc:stateProvice according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/139",139,"9d6f53c0-775b-4579-b7a4-5e5f093aa512","VALIDATION","GEOGRAPHY_NOTSTANDARD","SPACE",16,"dwc:continent="""", dwc:country=""México"", dwc:countryCode=""MX"", dwc:stateProvince="""", dwc:county="""", dwc:municipality=""""",,"RUN_HAS_RESULT","COMPLIANT","dwc:country matches dwc:countryCode according to bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",1,"dwc:day=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:day is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",1,"dwc:day=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"bdq:day is EMPTY or Missing", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",2,"dwc:day=""15""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",3,"dwc:day=""32""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",4,"dwc:day=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is ambiguous, either ""x"", ""No"" or ""10""", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",5,"dwc:day=""30""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",6,"dwc:day=""99""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",7,"dwc:day=""29""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",8,"dwc:day=""2""",,"RUN_HAS_RESULT","COMPLIANT","dwc:day is in range", +"https://github.com/tdwg/bdq/issues/147",147,"47ff73ba-0028-4f79-9ce1-ee7008d66498","VALIDATION","DAY_NOTSTANDARD","TIME",9,"dwc:day=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:day is not in range", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",1,"dwc:taxonRank=""""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",2,"dwc:taxonRank="" """,,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",3,"dwc:taxonRank=""[non-printing characters]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",4,"dwc:taxonRank=""[null]""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",5,"dwc:taxonRank=""?""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",6,"dwc:taxonRank=""ssp.""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",7,"dwc:taxonRank=""subsp.""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",8,"dwc:taxonRank=""cultivar""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",9,"dwc:taxonRank=[anyOldTerm]",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",10,"dwc:taxonRank=""12345""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/161",161,"14da5b87-8304-4b2b-911d-117e3c29e890","VALIDATION","TAXONRANK_EMPTY","NAME",11,"dwc:taxonRank=""dwc:taxonRank""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank is not EMPTY", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",1,"dwc:taxonRank=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonRank is EMPTY or missing", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",2,"dwc:taxonRank="" """,,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",3,"dwc:taxonRank=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",4,"dwc:taxonRank=""[null]""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",5,"dwc:taxonRank=""kingdom""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",6,"dwc:taxonRank=""subkingdom""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",7,"dwc:taxonRank=""superfamily""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",8,"dwc:taxonRank=""species""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",9,"dwc:taxonRank=""especie""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",10,"dwc:taxonRank=""sp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",11,"dwc:taxonRank=""subspecies""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",12,"dwc:taxonRank=""ssp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",13,"dwc:taxonRank=""subsp.""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",14,"dwc:taxonRank=""cultivar""",,"RUN_HAS_RESULT","COMPLIANT","dwc:taxonRank has an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",15,"dwc:taxonRank=""?""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",16,"dwc:taxonRank=""dwctaxonRank""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:taxonRank does not have an equivalent in the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/162",162,"7bdb13a4-8a51-4ee5-be7f-20693fdb183e","VALIDATION","TAXONRANK_NOTSTANDARD","NAME",17,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",1,"dwc:taxonRank=""""",,"NOT_AMENDED",,"dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",2,"dwc:taxonRank=""[non-printing characters]""",,"NOT_AMENDED",,"dwc:taxonRank is EMPTY", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",3,"dwc:taxonRank=""sp.""","dwc:taxonRank=""species""","AMENDED","dwc:taxonRank=""species""","dwc:taxonRank contains an interpretable value according to the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",4,"dwc:taxonRank=""sic.""",,"NOT_AMENDED",,"dwc:taxonRank does not contain an interpretable value according to the bdq:sourceAuthority", +"https://github.com/tdwg/bdq/issues/163",163,"e39098df-ef46-464c-9aef-bcdeee2a88cb","AMENDMENT","TAXONRANK_STANDARDIZED","NAME",5,"bdq:sourceAuthority=""https://invalid/invalidservice""",,"EXTERNAL_PREREQUISITES_NOT_MET","bdq:sourceAuthority was not available","the bdq:sourceAuthority was unavailable or unreachable", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",1,"dwc:maximumDepthInMeters=""""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumDepthInMeters is EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",1,"dwc:maximumDepthInMeters=""[non-printing characters]""",,"INTERNAL_PREREQUISITES_NOT_MET",,"dwc:maximumDepthInMeters is EMPTY.", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",2,"dwc:maximumDepthInMeters=""0""",,"RUN_HAS_RESULT","COMPLIANT","dwc:maximumDepthInMeters is in range", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",3,"dwc:maximumDepthInMeters=""-1""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumDepthInMeters is not in range", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",4,"dwc:maximumDepthInMeters=""1200""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumDepthInMeters is not in range", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",5,"dwc:maximumDepthInMeters=""9999""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumDepthInMeters is not in range", +"https://github.com/tdwg/bdq/issues/187",187,"3f1db29a-bfa5-40db-9fd1-fde020d81939","VALIDATION","MAXDEPTH_OUTOFRANGE","SPACE",6,"dwc:maximumDepthInMeters=""x""",,"RUN_HAS_RESULT","NOT_COMPLIANT","dwc:maximumDepthInMeters is ambiguous as either ""x"", ""no"" or ""10""", +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",1,"dwc:eventDate=""1880-05-08""","bdq:precisionInSeconds=""86400""","RUN_HAS_RESULT","bdq:precisionInSeconds=""86400""",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",2,"dwc:eventDate=""1880-05-08/10""","bdq:precisionInSeconds=""86400""","RUN_HAS_RESULT","bdq:precisionInSeconds=""86400""",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",3,"dwc:eventDate=""""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",4,"dwc:eventDate=""95""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",5,"dwc:eventDate=""X""",,"INTERNAL_PREREQUISITES_NOT_MET","NOT_REPORTED",, +"https://github.com/tdwg/bdq/issues/140",140,"56b6c695-adf1-418e-95d2-da04cad7be53","MEASURE","EVENTDATE_PRECISIONINSECONDS","TIME",6,"dwc:eventDate=""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z""","bdq:precisionInSeconds=""0.01""","RUN_HAS_RESULT","bdq:precisionInSeconds=""0.01""",, diff --git a/src/main/resources/log4j2.xml b/src/main/resources/log4j2.xml new file mode 100644 index 0000000..57742c5 --- /dev/null +++ b/src/main/resources/log4j2.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/java/org/filteredpush/qc/bdqtestrunner/AllTests.java b/src/test/java/org/filteredpush/qc/bdqtestrunner/AllTests.java new file mode 100644 index 0000000..f4f5a3f --- /dev/null +++ b/src/test/java/org/filteredpush/qc/bdqtestrunner/AllTests.java @@ -0,0 +1,13 @@ +package org.filteredpush.qc.bdqtestrunner; + +import org.junit.runner.RunWith; +import org.junit.runners.Suite; +import org.junit.runners.Suite.SuiteClasses; + +@RunWith(Suite.class) +@SuiteClasses({ + }) +public class AllTests { + +} + diff --git a/src/test/resources/log4j2-test.xml b/src/test/resources/log4j2-test.xml new file mode 100644 index 0000000..982809a --- /dev/null +++ b/src/test/resources/log4j2-test.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file