├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── new-term-template.md │ └── term-change-template.md └── workflows │ ├── gh-pages.yml │ └── translation-preview.yml ├── .gitignore ├── LICENSE ├── README.md ├── crowdin.yml ├── dist ├── all_dwc_vertical.csv ├── simple_dwc_horizontal.csv └── simple_dwc_vertical.csv ├── docs ├── CNAME ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _data │ ├── navigation.json │ ├── navigation_ar.json │ ├── navigation_cs.json │ ├── navigation_de.json │ ├── navigation_es.json │ ├── navigation_fr.json │ ├── navigation_ja.json │ ├── navigation_km.json │ ├── navigation_ko.json │ ├── navigation_nl.json │ ├── navigation_pt.json │ ├── navigation_ru.json │ ├── navigation_zh-Hans.json │ └── navigation_zh-Hant.json ├── _includes │ └── footer.html ├── _sass │ └── _custom.scss ├── ar │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── cs │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── de │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── doe │ ├── 2020-10-13.md │ ├── 2021-09-01.md │ └── index.md ├── em │ ├── 2020-10-13.md │ ├── 2021-09-01.md │ ├── 2025-06-12.md │ └── index.md ├── es │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── examples │ ├── template.md │ └── verbatimLabel.md ├── favicon.ico ├── fr │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── index.md ├── ja │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── km │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── ko │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── list │ ├── 2020-08-12.md │ ├── 2020-08-20.md │ ├── 2020-10-13.md │ ├── 2021-03-29.md │ ├── 2021-07-15.md │ ├── 2023-06-28.md │ ├── 2023-07-07.md │ ├── 2023-09-13.md │ ├── 2023-09-18.md │ ├── 2025-06-12.md │ ├── changes.md │ └── index.md ├── namespace │ ├── 2018-08-26.md │ └── index.md ├── nl │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── pt │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── pw │ ├── 2020-10-13.md │ ├── 2021-09-01.md │ ├── 2025-06-12.md │ └── index.md ├── rdf │ ├── 2016-04-25.md │ ├── index.md │ └── rdf-graphical-example.png ├── ru │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md ├── simple │ ├── 2014-11-08.md │ ├── 2021-07-15.md │ └── index.md ├── terms │ └── index.md ├── text │ ├── 2020-09-05.md │ ├── 2021-07-15.md │ ├── diagrams.graffle │ ├── example_text_simpledwc_complete.xml │ ├── extension.png │ ├── index.md │ ├── tdwg_dwc_text.xsd │ └── usage.png ├── xml │ ├── 2014-11-08.md │ ├── 2021-07-15.md │ ├── index.md │ ├── profiles │ │ ├── extension_example.xml │ │ ├── extension_example.xsd │ │ ├── extension_example_simpledwc.xsd │ │ └── germplasm │ │ │ ├── dwc_germplasm.xsd │ │ │ └── dwc_germplasm_0_1.xsd │ ├── tdwg_basetypes.xsd │ ├── tdwg_dwc_class_terms.xsd │ ├── tdwg_dwc_classes.xsd │ ├── tdwg_dwc_extensions.xsd │ ├── tdwg_dwc_simple.xsd │ └── tdwg_dwcterms.xsd ├── zh-Hans │ ├── index.md │ ├── namespace │ │ └── index.md │ ├── rdf │ │ └── index.md │ ├── simple │ │ └── index.md │ ├── text │ │ └── index.md │ └── xml │ │ └── index.md └── zh-Hant │ ├── index.md │ ├── namespace │ └── index.md │ ├── rdf │ └── index.md │ ├── simple │ └── index.md │ ├── text │ └── index.md │ └── xml │ └── index.md └── vocabulary └── term_versions.csv /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-term-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/.github/ISSUE_TEMPLATE/new-term-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/term-change-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/.github/ISSUE_TEMPLATE/term-change-template.md -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/translation-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/.github/workflows/translation-preview.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/crowdin.yml -------------------------------------------------------------------------------- /dist/all_dwc_vertical.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/dist/all_dwc_vertical.csv -------------------------------------------------------------------------------- /dist/simple_dwc_horizontal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/dist/simple_dwc_horizontal.csv -------------------------------------------------------------------------------- /dist/simple_dwc_vertical.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/dist/simple_dwc_vertical.csv -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | dwc.tdwg.org -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/navigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation.json -------------------------------------------------------------------------------- /docs/_data/navigation_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_ar.json -------------------------------------------------------------------------------- /docs/_data/navigation_cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_cs.json -------------------------------------------------------------------------------- /docs/_data/navigation_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_de.json -------------------------------------------------------------------------------- /docs/_data/navigation_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_es.json -------------------------------------------------------------------------------- /docs/_data/navigation_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_fr.json -------------------------------------------------------------------------------- /docs/_data/navigation_ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_ja.json -------------------------------------------------------------------------------- /docs/_data/navigation_km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_km.json -------------------------------------------------------------------------------- /docs/_data/navigation_ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_ko.json -------------------------------------------------------------------------------- /docs/_data/navigation_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_nl.json -------------------------------------------------------------------------------- /docs/_data/navigation_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_pt.json -------------------------------------------------------------------------------- /docs/_data/navigation_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_ru.json -------------------------------------------------------------------------------- /docs/_data/navigation_zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_zh-Hans.json -------------------------------------------------------------------------------- /docs/_data/navigation_zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_data/navigation_zh-Hant.json -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_sass/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/_sass/_custom.scss -------------------------------------------------------------------------------- /docs/ar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ar/index.md -------------------------------------------------------------------------------- /docs/ar/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ar/namespace/index.md -------------------------------------------------------------------------------- /docs/ar/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ar/rdf/index.md -------------------------------------------------------------------------------- /docs/ar/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ar/simple/index.md -------------------------------------------------------------------------------- /docs/ar/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ar/text/index.md -------------------------------------------------------------------------------- /docs/ar/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ar/xml/index.md -------------------------------------------------------------------------------- /docs/cs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/cs/index.md -------------------------------------------------------------------------------- /docs/cs/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/cs/namespace/index.md -------------------------------------------------------------------------------- /docs/cs/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/cs/rdf/index.md -------------------------------------------------------------------------------- /docs/cs/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/cs/simple/index.md -------------------------------------------------------------------------------- /docs/cs/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/cs/text/index.md -------------------------------------------------------------------------------- /docs/cs/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/cs/xml/index.md -------------------------------------------------------------------------------- /docs/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/de/index.md -------------------------------------------------------------------------------- /docs/de/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/de/namespace/index.md -------------------------------------------------------------------------------- /docs/de/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/de/rdf/index.md -------------------------------------------------------------------------------- /docs/de/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/de/simple/index.md -------------------------------------------------------------------------------- /docs/de/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/de/text/index.md -------------------------------------------------------------------------------- /docs/de/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/de/xml/index.md -------------------------------------------------------------------------------- /docs/doe/2020-10-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/doe/2020-10-13.md -------------------------------------------------------------------------------- /docs/doe/2021-09-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/doe/2021-09-01.md -------------------------------------------------------------------------------- /docs/doe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/doe/index.md -------------------------------------------------------------------------------- /docs/em/2020-10-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/em/2020-10-13.md -------------------------------------------------------------------------------- /docs/em/2021-09-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/em/2021-09-01.md -------------------------------------------------------------------------------- /docs/em/2025-06-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/em/2025-06-12.md -------------------------------------------------------------------------------- /docs/em/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/em/index.md -------------------------------------------------------------------------------- /docs/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/es/index.md -------------------------------------------------------------------------------- /docs/es/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/es/namespace/index.md -------------------------------------------------------------------------------- /docs/es/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/es/rdf/index.md -------------------------------------------------------------------------------- /docs/es/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/es/simple/index.md -------------------------------------------------------------------------------- /docs/es/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/es/text/index.md -------------------------------------------------------------------------------- /docs/es/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/es/xml/index.md -------------------------------------------------------------------------------- /docs/examples/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/examples/template.md -------------------------------------------------------------------------------- /docs/examples/verbatimLabel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/examples/verbatimLabel.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/fr/index.md -------------------------------------------------------------------------------- /docs/fr/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/fr/namespace/index.md -------------------------------------------------------------------------------- /docs/fr/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/fr/rdf/index.md -------------------------------------------------------------------------------- /docs/fr/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/fr/simple/index.md -------------------------------------------------------------------------------- /docs/fr/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/fr/text/index.md -------------------------------------------------------------------------------- /docs/fr/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/fr/xml/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ja/index.md -------------------------------------------------------------------------------- /docs/ja/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ja/namespace/index.md -------------------------------------------------------------------------------- /docs/ja/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ja/rdf/index.md -------------------------------------------------------------------------------- /docs/ja/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ja/simple/index.md -------------------------------------------------------------------------------- /docs/ja/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ja/text/index.md -------------------------------------------------------------------------------- /docs/ja/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ja/xml/index.md -------------------------------------------------------------------------------- /docs/km/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/km/index.md -------------------------------------------------------------------------------- /docs/km/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/km/namespace/index.md -------------------------------------------------------------------------------- /docs/km/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/km/rdf/index.md -------------------------------------------------------------------------------- /docs/km/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/km/simple/index.md -------------------------------------------------------------------------------- /docs/km/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/km/text/index.md -------------------------------------------------------------------------------- /docs/km/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/km/xml/index.md -------------------------------------------------------------------------------- /docs/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ko/index.md -------------------------------------------------------------------------------- /docs/ko/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ko/namespace/index.md -------------------------------------------------------------------------------- /docs/ko/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ko/rdf/index.md -------------------------------------------------------------------------------- /docs/ko/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ko/simple/index.md -------------------------------------------------------------------------------- /docs/ko/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ko/text/index.md -------------------------------------------------------------------------------- /docs/ko/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ko/xml/index.md -------------------------------------------------------------------------------- /docs/list/2020-08-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2020-08-12.md -------------------------------------------------------------------------------- /docs/list/2020-08-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2020-08-20.md -------------------------------------------------------------------------------- /docs/list/2020-10-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2020-10-13.md -------------------------------------------------------------------------------- /docs/list/2021-03-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2021-03-29.md -------------------------------------------------------------------------------- /docs/list/2021-07-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2021-07-15.md -------------------------------------------------------------------------------- /docs/list/2023-06-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2023-06-28.md -------------------------------------------------------------------------------- /docs/list/2023-07-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2023-07-07.md -------------------------------------------------------------------------------- /docs/list/2023-09-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2023-09-13.md -------------------------------------------------------------------------------- /docs/list/2023-09-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2023-09-18.md -------------------------------------------------------------------------------- /docs/list/2025-06-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/2025-06-12.md -------------------------------------------------------------------------------- /docs/list/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/changes.md -------------------------------------------------------------------------------- /docs/list/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/list/index.md -------------------------------------------------------------------------------- /docs/namespace/2018-08-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/namespace/2018-08-26.md -------------------------------------------------------------------------------- /docs/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/namespace/index.md -------------------------------------------------------------------------------- /docs/nl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/nl/index.md -------------------------------------------------------------------------------- /docs/nl/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/nl/namespace/index.md -------------------------------------------------------------------------------- /docs/nl/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/nl/rdf/index.md -------------------------------------------------------------------------------- /docs/nl/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/nl/simple/index.md -------------------------------------------------------------------------------- /docs/nl/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/nl/text/index.md -------------------------------------------------------------------------------- /docs/nl/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/nl/xml/index.md -------------------------------------------------------------------------------- /docs/pt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pt/index.md -------------------------------------------------------------------------------- /docs/pt/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pt/namespace/index.md -------------------------------------------------------------------------------- /docs/pt/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pt/rdf/index.md -------------------------------------------------------------------------------- /docs/pt/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pt/simple/index.md -------------------------------------------------------------------------------- /docs/pt/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pt/text/index.md -------------------------------------------------------------------------------- /docs/pt/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pt/xml/index.md -------------------------------------------------------------------------------- /docs/pw/2020-10-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pw/2020-10-13.md -------------------------------------------------------------------------------- /docs/pw/2021-09-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pw/2021-09-01.md -------------------------------------------------------------------------------- /docs/pw/2025-06-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pw/2025-06-12.md -------------------------------------------------------------------------------- /docs/pw/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/pw/index.md -------------------------------------------------------------------------------- /docs/rdf/2016-04-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/rdf/2016-04-25.md -------------------------------------------------------------------------------- /docs/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/rdf/index.md -------------------------------------------------------------------------------- /docs/rdf/rdf-graphical-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/rdf/rdf-graphical-example.png -------------------------------------------------------------------------------- /docs/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ru/index.md -------------------------------------------------------------------------------- /docs/ru/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ru/namespace/index.md -------------------------------------------------------------------------------- /docs/ru/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ru/rdf/index.md -------------------------------------------------------------------------------- /docs/ru/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ru/simple/index.md -------------------------------------------------------------------------------- /docs/ru/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ru/text/index.md -------------------------------------------------------------------------------- /docs/ru/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/ru/xml/index.md -------------------------------------------------------------------------------- /docs/simple/2014-11-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/simple/2014-11-08.md -------------------------------------------------------------------------------- /docs/simple/2021-07-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/simple/2021-07-15.md -------------------------------------------------------------------------------- /docs/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/simple/index.md -------------------------------------------------------------------------------- /docs/terms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/terms/index.md -------------------------------------------------------------------------------- /docs/text/2020-09-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/text/2020-09-05.md -------------------------------------------------------------------------------- /docs/text/2021-07-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/text/2021-07-15.md -------------------------------------------------------------------------------- /docs/text/diagrams.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/text/diagrams.graffle -------------------------------------------------------------------------------- /docs/text/example_text_simpledwc_complete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/text/example_text_simpledwc_complete.xml -------------------------------------------------------------------------------- /docs/text/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/text/extension.png -------------------------------------------------------------------------------- /docs/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/text/index.md -------------------------------------------------------------------------------- /docs/text/tdwg_dwc_text.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/text/tdwg_dwc_text.xsd -------------------------------------------------------------------------------- /docs/text/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/text/usage.png -------------------------------------------------------------------------------- /docs/xml/2014-11-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/2014-11-08.md -------------------------------------------------------------------------------- /docs/xml/2021-07-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/2021-07-15.md -------------------------------------------------------------------------------- /docs/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/index.md -------------------------------------------------------------------------------- /docs/xml/profiles/extension_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/profiles/extension_example.xml -------------------------------------------------------------------------------- /docs/xml/profiles/extension_example.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/profiles/extension_example.xsd -------------------------------------------------------------------------------- /docs/xml/profiles/extension_example_simpledwc.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/profiles/extension_example_simpledwc.xsd -------------------------------------------------------------------------------- /docs/xml/profiles/germplasm/dwc_germplasm.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/profiles/germplasm/dwc_germplasm.xsd -------------------------------------------------------------------------------- /docs/xml/profiles/germplasm/dwc_germplasm_0_1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/profiles/germplasm/dwc_germplasm_0_1.xsd -------------------------------------------------------------------------------- /docs/xml/tdwg_basetypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/tdwg_basetypes.xsd -------------------------------------------------------------------------------- /docs/xml/tdwg_dwc_class_terms.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/tdwg_dwc_class_terms.xsd -------------------------------------------------------------------------------- /docs/xml/tdwg_dwc_classes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/tdwg_dwc_classes.xsd -------------------------------------------------------------------------------- /docs/xml/tdwg_dwc_extensions.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/tdwg_dwc_extensions.xsd -------------------------------------------------------------------------------- /docs/xml/tdwg_dwc_simple.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/tdwg_dwc_simple.xsd -------------------------------------------------------------------------------- /docs/xml/tdwg_dwcterms.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/xml/tdwg_dwcterms.xsd -------------------------------------------------------------------------------- /docs/zh-Hans/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hans/index.md -------------------------------------------------------------------------------- /docs/zh-Hans/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hans/namespace/index.md -------------------------------------------------------------------------------- /docs/zh-Hans/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hans/rdf/index.md -------------------------------------------------------------------------------- /docs/zh-Hans/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hans/simple/index.md -------------------------------------------------------------------------------- /docs/zh-Hans/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hans/text/index.md -------------------------------------------------------------------------------- /docs/zh-Hans/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hans/xml/index.md -------------------------------------------------------------------------------- /docs/zh-Hant/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hant/index.md -------------------------------------------------------------------------------- /docs/zh-Hant/namespace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hant/namespace/index.md -------------------------------------------------------------------------------- /docs/zh-Hant/rdf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hant/rdf/index.md -------------------------------------------------------------------------------- /docs/zh-Hant/simple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hant/simple/index.md -------------------------------------------------------------------------------- /docs/zh-Hant/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hant/text/index.md -------------------------------------------------------------------------------- /docs/zh-Hant/xml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/docs/zh-Hant/xml/index.md -------------------------------------------------------------------------------- /vocabulary/term_versions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/dwc/HEAD/vocabulary/term_versions.csv --------------------------------------------------------------------------------