Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 898 Bytes

harvestermetadata.md

File metadata and controls

39 lines (33 loc) · 898 Bytes

Harvesting metadata configuration Endpoints

Back to the list of all defined endpoints

Main Endpoint

/api/config/harvestermetadata

Provide access to the list of harvesting metadata configurations (config based).

Example: https://demo.dspace.org/server/#/server/api/config/harvestermetadata

A sample json response:

{
  "configs": [
    {
       "id": "dc",
       "label": "Simple Dublin Core",
       "nameSpace": "http://www.openarchives.org/OAI/2.0/oai_dc/"
    },
    {
       "id": "qdc",
       "label": "Qualified Dublin Core",
       "nameSpace": "http://purl.org/dc/terms/"
    },
    {
       "id": "dim",
       "label": "DSpace Intermediate Metadata",
       "nameSpace": "http://www.dspace.org/xmlns/dspace/dim"
    }
  ],
  "_links": {
    "self": {
      "href": "https://demo.dspace.org/server/api/config/harvestermetadata"
    }
  }
}