├── .gitignore ├── README.md ├── documents ├── RDA_recommendations.md ├── RDA_technical_examples.md ├── annual_reports │ └── 2018_report.md ├── images │ ├── DSJ_fig_1.png │ ├── domain_diagram.png │ ├── prov_diagram.png │ ├── recomend_diagram.png │ ├── use_case_1.png │ ├── use_case_2.png │ ├── use_case_3.png │ └── vivo.png └── use_cases │ ├── attribution_use_cases.ttl │ └── use_cases.md └── people └── dwc ├── README.md ├── agent_actions_v2020-09-08.xml ├── index.html ├── registry ├── README.md ├── extensions.json └── thesauri.json └── vocubulary ├── action.xml ├── agentIdentifierType.xml ├── agentType.xml └── role.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/README.md -------------------------------------------------------------------------------- /documents/RDA_recommendations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/RDA_recommendations.md -------------------------------------------------------------------------------- /documents/RDA_technical_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/RDA_technical_examples.md -------------------------------------------------------------------------------- /documents/annual_reports/2018_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/annual_reports/2018_report.md -------------------------------------------------------------------------------- /documents/images/DSJ_fig_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/images/DSJ_fig_1.png -------------------------------------------------------------------------------- /documents/images/domain_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/images/domain_diagram.png -------------------------------------------------------------------------------- /documents/images/prov_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/images/prov_diagram.png -------------------------------------------------------------------------------- /documents/images/recomend_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/images/recomend_diagram.png -------------------------------------------------------------------------------- /documents/images/use_case_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/images/use_case_1.png -------------------------------------------------------------------------------- /documents/images/use_case_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/images/use_case_2.png -------------------------------------------------------------------------------- /documents/images/use_case_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/images/use_case_3.png -------------------------------------------------------------------------------- /documents/images/vivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/images/vivo.png -------------------------------------------------------------------------------- /documents/use_cases/attribution_use_cases.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/use_cases/attribution_use_cases.ttl -------------------------------------------------------------------------------- /documents/use_cases/use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/documents/use_cases/use_cases.md -------------------------------------------------------------------------------- /people/dwc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/people/dwc/README.md -------------------------------------------------------------------------------- /people/dwc/agent_actions_v2020-09-08.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/people/dwc/agent_actions_v2020-09-08.xml -------------------------------------------------------------------------------- /people/dwc/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /people/dwc/registry/README.md: -------------------------------------------------------------------------------- 1 | ## Hijacked GBIF Registry for AgentActions -------------------------------------------------------------------------------- /people/dwc/registry/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/people/dwc/registry/extensions.json -------------------------------------------------------------------------------- /people/dwc/registry/thesauri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/people/dwc/registry/thesauri.json -------------------------------------------------------------------------------- /people/dwc/vocubulary/action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/people/dwc/vocubulary/action.xml -------------------------------------------------------------------------------- /people/dwc/vocubulary/agentIdentifierType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/people/dwc/vocubulary/agentIdentifierType.xml -------------------------------------------------------------------------------- /people/dwc/vocubulary/agentType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/people/dwc/vocubulary/agentType.xml -------------------------------------------------------------------------------- /people/dwc/vocubulary/role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/attribution/HEAD/people/dwc/vocubulary/role.xml --------------------------------------------------------------------------------