Dataverse
A Dataverse collection (e.g. the NTNU dataverse) in DataverseNO.
EducationHigher EducationUniversityResearchOpen DataNorwayScandinavia
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Internal numeric identifier. |
| alias | string | URL-safe alias of the collection, e.g. ntnu. |
| name | string | Display name of the collection. |
| description | string | Description of the collection. |
| affiliation | string | Affiliated institution. |
| dataverseType | string | Type of the dataverse collection. |
| contactEmails | string | Contact email(s) for the collection. |
| metadataBlockRoot | boolean | Whether this collection roots its own metadata blocks. |
| facetRoot | boolean | Whether this collection roots its own facets. |
| released | boolean | Whether the collection is published. |
| depositTermsOfUse | string | Terms of use for deposits. |
| displayName | string | Human-readable name of the collection. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/ntnu/json-schema/ntnu-dataverse-schema.json",
"title": "Dataverse",
"description": "A Dataverse collection (e.g. the NTNU dataverse) in DataverseNO.",
"type": "object",
"required": [
"dataverseType"
],
"properties": {
"id": {
"type": "integer",
"format": "int64",
"description": "Internal numeric identifier."
},
"alias": {
"type": "string",
"description": "URL-safe alias of the collection, e.g. ntnu."
},
"name": {
"type": "string",
"description": "Display name of the collection."
},
"description": {
"type": "string",
"description": "Description of the collection."
},
"affiliation": {
"type": "string",
"description": "Affiliated institution."
},
"dataverseType": {
"type": "string",
"description": "Type of the dataverse collection."
},
"contactEmails": {
"type": "string",
"description": "Contact email(s) for the collection."
},
"metadataBlockRoot": {
"type": "boolean",
"description": "Whether this collection roots its own metadata blocks."
},
"facetRoot": {
"type": "boolean",
"description": "Whether this collection roots its own facets."
},
"released": {
"type": "boolean",
"description": "Whether the collection is published."
},
"depositTermsOfUse": {
"type": "string",
"description": "Terms of use for deposits."
},
"displayName": {
"type": "string",
"description": "Human-readable name of the collection."
}
}
}