mirror of https://github.com/tdwg/dwc.git
removed old version that caused invalid file
I wanted to run some validation of a file that included the TDWG Basetypes Schema from this repository and it failed because the file is not well formed, because it contained a duplicate attribute version in the xs:schema element (document root element): `<xs:schema version="2021-07-15" [...] version="0.5">` Since the `version="2021-07-15"` was added in the last commit, the old `version="0.5"` is outdated and needs to be removed. The only question is whether the version now needs to be bumped to today's date. So feel free to edit this commit to adjust it accordingly.
This commit is contained in:
parent
c545c438c8
commit
278eeccdd0
|
@ -15,7 +15,7 @@
|
||||||
<xs:schema
|
<xs:schema
|
||||||
version="2021-07-15"
|
version="2021-07-15"
|
||||||
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||||
elementFormDefault="unqualified" version="0.5">
|
elementFormDefault="unqualified">
|
||||||
|
|
||||||
<!-- ============================================================== -->
|
<!-- ============================================================== -->
|
||||||
<!-- Types -->
|
<!-- Types -->
|
||||||
|
|
Loading…
Reference in New Issue