D4Science D4Science Don't have a D4Science account? Create one Could not find what you are looking for? Contact us.

Namespace APIs Resource

A namespace defines a logical grouping for metadata contained in items.

GET /namespaces

Request Parameters
name type description
Authorization header Bearer token, see https://dev.d4science.org/how-to-access-resources
Response Body
media type data type description
application/json string the json array containing the licenses available in the catalogue

Example

Request
GET /namespaces
Content-Type: */*
Accept: application/json
Authorization: ...

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
[
	{
		"id": "ClassificationInformation",
		"title": "Classification Information",
		"name": "ClassificationInformation",
		"description": "Classification Information"
	},
	{
		"id": "LocationInformation",
		"title": "Location Information",
		"name": "LocationInformation",
		"description": "Location Information"
	},
	{
		"id": "ContactInformation",
		"title": "Contact Information",
		"name": "ContactInformation",
		"description": "Contact Information"
	},
	{
		"id": "OtherInformation",
		"title": "Other Information",
		"name": "OtherInformation",
		"description": "Other Information"
	},
	{
		"id": "AvailabilityInformation",
		"title": "Availability Information",
		"name": "AvailabilityInformation",
		"description": "Availability Information"
	}
]