HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept
{
"count": 17143,
"next": "https://metax.fairdata.fi/v3/migrated-datasets?format=api&limit=20&offset=16980",
"previous": "https://metax.fairdata.fi/v3/migrated-datasets?format=api&limit=20&offset=16940",
"results": [
{
"id": "0ae4c196-b07c-4189-8208-a7c530e95189",
"dataset_json": {
"id": 45122,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": true,
"identifier": "0ae4c196-b07c-4189-8208-a7c530e95189",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2021-10-07T15:32:37+03:00",
"date_removed": "2021-10-07T21:53:03+03:00",
"date_modified": "2021-10-07T21:53:03+03:00",
"user_modified": "dwhipp",
"access_granter": "<hidden>",
"date_deprecated": "2021-10-07T21:45:07+03:00",
"service_created": "qvain-light",
"cumulative_state": 0,
"research_dataset": {
"title": {
"en": "Software for plotting results from \"Competing effects of cooling rate, grain size, and radiation damage in low-temperature thermochronometers\""
},
"issued": "2021-10-04",
"creator": [
{
"name": "David Whipp",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "University of Helsinki",
"fi": "Helsingin yliopisto",
"und": "Helsingin yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901"
},
"identifier": "https://orcid.org/0000-0002-3820-6886"
}
],
"keyword": [
"Geology",
"Geochronology",
"Thermochronology",
"Numerical model",
"Python",
"Visualization"
],
"publisher": {
"name": "David Whipp",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "University of Helsinki",
"fi": "Helsingin yliopisto",
"und": "Helsingin yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901"
},
"identifier": "https://orcid.org/0000-0002-3820-6886"
},
"description": {
"en": "This archive contains the source code files for reproducing and customizing the plots from the article \"Competing effects of cooling rate, grain size, and radiation damage in low-temperature thermochronometers\" by D. Whipp, D. Kellett, and I. Coutand. Details from the README.md file are shown below.\n\n# Code description and instructions for use\n\nThe programs provided for use with this manuscript will allow you to reproduce and customize the plots for your use.\nThis document provides some basic instructions for using the plotting programs, assuming you have some basic familiarity with using programming languages such as Python.\n\n## Dependencies\n\n### Age prediction algorithms\n\n- Apatite and Zircon RDAAM algorithm requires a C++ compiler.\n- AFT age and track length distribution algorithm requires a C compiler.\n\n### Plotting software\n\nThe plotting software is available in the form of Python scripts. The following\nlibraries are needed for their use:\n\n- NumPy\n- Matplotlib\n- SciPy\n\n## Creating plots using the programs\n\n### Preparations\n\n#### All figures\n\nAll figures rely on having Python 3 installed with the libraries listed above.\nIf you do not have Python installed, you can install [Anaconda](https://www.anaconda.com/products/individual#Downloads), for example.\n\n#### Figures 2 and 3\n\nIn order to reproduce Figures 2 and 3 you will first need to compile the `RDAAM_He` program.\nFor Linux or macOS, you can do the following (assuming you have a C++ compiler installed):\n\n```bash\ncd cpp\nmake\nmake install\ncd ..\n```\n\nThis will compile the program and copy it to the `bin` subdirectory.\n\nWindows users should compile things using the equivalent commands in a Windows shell.\n\n#### Figure 4\n\nIn addition to the step needed for Figures 2 and 3 you should compile the `ketch_aft` program.\nFor Linux or macOS, you can do the following (assuming you have a C compiler installed):\n\n```bash\ncd c\nmake\nmake install\ncd ..\n```\n\nThis will compile the program and copy it to the `bin` subdirectory.\n\nWindows users should compile things using the equivalent commands in a Windows shell.\n\n## Making the plots\n\nOnce you have done the necessary preparations, you can create the plots by simply running the Python programs in the `py` subdirectory.\nFor example, you can create Figure 2 by running:\n\n```bash\npython plot_age_tc_contours_figure2.py\n```\n\n## Modifying the plots\n\nIf you would like to customize the plots, simply edit the corresponding Python script for the plot of interest, save your changes, and run the script as shown above.\nIn general, the parameters that should be modified are between the lines below.\n\n```python\n# --- General model parameters ----------------------------------------------- #\n\n...\n\n# --- End of user-defined parameters ----------------------------------------- #\n# #\n# You probably don't need to modify anything below unless you know what you #\n# are doing :) #\n# #\n# ---------------------------------------------------------------------------- #\n```\n\nBelow are a few examples of values you might like to change in the plots.\n\n### Figure 1\n\n#### Cooling rate options\n- Minimum cooling rate: `rate_min`\n- Slow cooling rate: `rate_slow` \n- 'Average' cooling rate: `rate_avg` \n- Maximum cooling rate: `rate_max` \n- Maximum temperature for cooling histories: `temp_max` \n\n#### Plotting options\n- Maximum time shown in plotted time-temperature histories: `time_max` \n\n### Figures 2-4\n\n#### Cooling history options\n- Figure 2 only\n - Type of cooling history to use: `cooling_hist_type` \n - 1 = constant cooling rate (defined by `rate` and `temp_max`)\n - 2 = time-temperature points (defined by `time_hist` and `temp_hist` lists)\n- Figures 3, 4\n - Cooling rate range: `rate_min`, `rate_max`\n - Maximum temperature for cooling history: `temp_max`\n\n#### Mineral options\n- All figures\n - Apatite, zircon thorium concentration: `ap_thorium`, `zr_thorium`\n- Figures 2, 3 only\n - Apatite uranium concentration range: `ap_u_min`, `ap_u_max` \n - Zircon uranium concentration range: `zr_u_min`, `zr_u_max`\n - Apatite grain radius range: `ap_rad_min`, `ap_rad_max`\n - Zircon grain radius range: `zr_rad_min`, `zr_rad_max`\n- Figure 4 only\n - List of apatite uranium concentrations: `ap_u_list`\n - List of zircon uranium concentrations: `zr_u_list`\n - Apatite, zircon grain radius: `ap_rad`, `zr_rad`\n\n#### Plotting options\n- All figures\n - Number of points along x and/or y axes for age/closure temperature calculations: `n_inc`\n- Figures 2, 3\n - Plot type: `plot_type`\n - 1 = apatite only\n - 2 = zircon only\n - 3 = both apatite and zircon\n- Figure 4\n - Plot type: `plot_type`\n - 1 = Cooling rate versus closure temperature\n - 2 = Cooling rate versus age\n - 3 = Cooling rate versus age and closure temperature\n\n#### Age uncertainty fractions (0.1 = 10%)\n - Apatite (U-Th)/He: `ahe_uncertainty`\n - Apatite fission-track: `aft_uncertainty`\n - Zircon (U-Th)/He: `zhe_uncertainty`"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta1171",
"pref_label": {
"en": "Geosciences",
"fi": "Geotieteet",
"sv": "Geovetenskaper",
"und": "Geotieteet"
}
}
],
"preferred_identifier": "doi:10.23729/9d26d9f4-2f8d-4907-942e-6069fd5081fa",
"total_files_byte_size": 102713,
"metadata_version_identifier": "ba954a75-10cf-4185-a9ae-0e6cf9db3838"
},
"service_modified": "qvain-light",
"editor_permissions": "<hidden>",
"metadata_owner_org": "helsinki.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "0ae4c196-b07c-4189-8208-a7c530e95189",
"date_created": "2021-10-07T15:32:37+03:00",
"date_removed": "2021-10-07T18:53:03Z",
"preferred_identifier": "doi:10.23729/9d26d9f4-2f8d-4907-942e-6069fd5081fa"
}
],
"metadata_provider_org": "helsinki.fi",
"metadata_provider_user": "dwhipp",
"preservation_identifier": "doi:10.23729/9d26d9f4-2f8d-4907-942e-6069fd5081fa"
},
"legacy_file_ids": "<17 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "7c91594d-9854-4b86-b5d1-930f12da029a",
"dataset_json": {
"id": 45130,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "7c91594d-9854-4b86-b5d1-930f12da029a",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2021-10-11T18:35:56+03:00",
"date_removed": "2024-02-06T14:12:59+02:00",
"date_modified": "2024-02-06T14:12:59+02:00",
"user_modified": "bergmant",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"title": {
"en": "Model data for research article \"Description and Evaluation of a Secondary Organic Aerosol and New Particle Formation Scheme within TM5-MP v1.2\""
},
"issued": "2021-10-11",
"creator": [
{
"name": "Tommi Bergman",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
},
"identifier": "https://orcid.org/0000-0002-6133-2231"
}
],
"keyword": [
"aerosols",
"climate modelling",
"new particle formation",
"secondary organic aerosol",
"chemistry"
],
"spatial": [
{
"geographic_name": "Global 3D data from model simulations"
}
],
"temporal": [
{
"end_date": "2010-12-31T00:00:00.000Z",
"start_date": "2010-01-01T00:00:00.000Z"
}
],
"publisher": {
"name": "Tommi Bergman",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
},
"identifier": "https://orcid.org/0000-0002-6133-2231"
},
"description": {
"en": "Model data for article detailing the new secondary organic aerosol and new particle formation scheme in TM5-MP model submitted to Geoscientific Model Development.\n\nModels simulation data is provided for the analysed year 2010 only.\n\nNEWSOA simulation (newsoa-ri) is using the new soa scheme and new particle formation schemes binary homogeneous water sulfuric acid nucleation (Vehkamäki et al 2002) and organic new particle formation (Riccobono et al. 2014). OLDSOA simulation (oldsoa-bhn) is using the old soa scheme and new particle formation scheme binary homogeneous water sulfuric acid nucleation (Vehkamäki et al 2002).\n\nBoth simulation data folders include hourly data for surface layer (lev1.nc) and 2D data (lev0.nc), and monthly 3D data for all fields (mm.nc):\n\nnewsoa-ri general_TM5_newsoa-ri_2010.lev0.nc all 2D variables hourly data from the model general_TM5_newsoa-ri_2010.lev1.nc all 3D variables, but only surface layer hourly data from the model general_TM5_newsoa-ri_2010.mm.nc all 3D variables, monthly mean data from the model\n\noldsoa-bhn general_TM5_oldsoa-bhn_2010.lev0.nc all 2D variables hourly data from the model general_TM5_oldsoa-bhn_2010.lev1.nc all 3D variables, but only surface layer hourly data from the model general_TM5_oldsoa-bhn_2010.mm.nc all 3D variables, monthly mean data from the model\n\nThird simulation data folder includes hourly data for surface layer (lev1.nc) and monthly 3D data for all fields (mm.nc):\ngeneral_TM5_oldsoa-bhn.megan2_2010.lev1.nc all 3D variables, but only surface layer hourly data from the model general_TM5_oldsoa-bhn-megan2_2010.mm.nc all 3D variables, monthly mean data from the model. Furthermore, MEGAN2-2010-SOA.nc includes new dataset for the third simulation including the SOA production in similar format as in the normal OLDSOA scheme.\n\nAdditionally fx-data folder includes static fields needed for analysis: ec-ei-an0tr6-sfc-glb100x100-0000-oro.nc grid cellarea for 1x1 grid ec-ei-an0tr6-sfc-glb100x100-0000-lsm.nc land sea mask for 1x1 grid griddef_62.nc gridboxarea for 3x2 grid SOA.nc prescribed SOA production for old scheme (in Tg(C)/gridbox, unit in file is wrong)"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta1171",
"pref_label": {
"en": "Geosciences",
"fi": "Geotieteet",
"sv": "Geovetenskaper",
"und": "Geotieteet"
}
}
],
"preferred_identifier": "doi:10.23729/d7aee953-75f0-41eb-ba50-9b942d6215d3",
"total_files_byte_size": 0,
"metadata_version_identifier": "215998f7-d91e-43d3-9bd2-e252557be981"
},
"service_modified": "qvain-light",
"editor_permissions": "<hidden>",
"metadata_owner_org": "fmi.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": false,
"identifier": "35dec85c-b307-443c-91ba-1c165b5ccc7e",
"date_created": "2024-02-06T12:45:55+02:00",
"preferred_identifier": "doi:10.23729/b7f05f86-1f29-4c3b-a609-6596dbcf46c3"
},
{
"removed": true,
"identifier": "7c91594d-9854-4b86-b5d1-930f12da029a",
"date_created": "2021-10-11T18:35:56+03:00",
"date_removed": "2024-02-06T12:12:59Z",
"preferred_identifier": "doi:10.23729/d7aee953-75f0-41eb-ba50-9b942d6215d3"
}
],
"next_dataset_version": {
"id": 58287,
"identifier": "35dec85c-b307-443c-91ba-1c165b5ccc7e",
"preferred_identifier": "doi:10.23729/b7f05f86-1f29-4c3b-a609-6596dbcf46c3"
},
"metadata_provider_org": "fmi.fi",
"metadata_provider_user": "bergmant",
"date_cumulation_started": "2021-10-11T18:35:56+03:00",
"preservation_identifier": "doi:10.23729/d7aee953-75f0-41eb-ba50-9b942d6215d3"
},
"legacy_file_ids": "<15 files>",
"v2_dataset_compatibility_diff": {
"values_changed": {
"root['research_dataset']['total_files_byte_size']": {
"new_value": 159984393757,
"old_value": 0
}
},
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['next_dataset_version']",
"root['editor_permissions']"
]
}
},
{
"id": "c6cf46a4-fda1-4528-b403-8c6ee2051fe5",
"dataset_json": {
"id": 45161,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "c6cf46a4-fda1-4528-b403-8c6ee2051fe5",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2021-11-02T12:54:15+02:00",
"date_removed": "2022-03-25T15:57:05+02:00",
"date_modified": "2022-03-25T15:57:05+02:00",
"user_modified": "levlinma",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 0,
"research_dataset": {
"theme": [
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p58137",
"pref_label": {
"en": "computational science",
"fi": "laskennallinen tiede",
"sv": "tillämpad beräkningsvetenskap",
"und": "laskennallinen tiede"
}
}
],
"title": {
"en": "Test dataset (Fairdata)",
"fi": "Testi dataset (Fairdata)"
},
"issued": "2022-01-01",
"creator": [
{
"name": "Mattias Levlin",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "CSC – IT Center for Science",
"fi": "CSC - Tieteen tietotekniikan keskus Oy",
"und": "CSC - Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
}
}
],
"keyword": [
"CSC"
],
"spatial": [
{
"geographic_name": "Espoo/Helsinki"
}
],
"language": [
{
"title": {
"en": "English",
"fi": "englanti",
"sv": "engelska",
"und": "englanti"
},
"identifier": "http://lexvo.org/id/iso639-3/eng"
}
],
"relation": [
{
"entity": {
"title": {
"en": "A 70 3-component sensor deployment to monitor the 2020 EGS stimulation in Espoo/Helsinki, southern Finland\t",
"und": "A 70 3-component sensor deployment to monitor the 2020 EGS stimulation in Espoo/Helsinki, southern Finland\t"
},
"identifier": "https://doi.org/10.5880/GIPP.201925.1",
"description": {
"en": " ",
"und": " "
}
},
"relation_type": {
"identifier": "http://purl.org/vocab/frbr/core#alternate",
"pref_label": {
"en": "Is variant form of",
"fi": "Erimuotoinen vastine",
"und": "Erimuotoinen vastine"
}
}
}
],
"publisher": {
"name": "Mattias Levlin",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "CSC – IT Center for Science",
"fi": "CSC - Tieteen tietotekniikan keskus Oy",
"und": "CSC - Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
}
},
"description": {
"en": "Test dataset (Fairdata)",
"fi": "Testi dataset (Fairdata)"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"available": "2022-01-01",
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/embargo",
"pref_label": {
"en": "Embargo",
"fi": "Embargo",
"und": "Embargo"
}
},
"restriction_grounds": [
{
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds",
"identifier": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds/code/other",
"pref_label": {
"en": "Restricted access due to other reasons",
"fi": "Saatavuutta rajoitettu muulla perusteella",
"sv": "Begränsad åtkomst av övriga skäl",
"und": "Saatavuutta rajoitettu muulla perusteella"
}
}
]
},
"preferred_identifier": "urn:nbn:fi:att:e250293a-cca8-46ff-9ce1-28a78998e500",
"total_files_byte_size": 0,
"metadata_version_identifier": "d9199bd6-a9be-4416-8f17-4c9aca79d5c9"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "csc.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "c6cf46a4-fda1-4528-b403-8c6ee2051fe5",
"date_created": "2021-11-02T12:54:15+02:00",
"date_removed": "2022-03-25T13:57:05Z",
"preferred_identifier": "urn:nbn:fi:att:e250293a-cca8-46ff-9ce1-28a78998e500"
}
],
"metadata_provider_org": "csc.fi",
"metadata_provider_user": "levlinma"
},
"legacy_file_ids": "<1 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "a980e23a-052b-40fe-b142-06ae445c4b24",
"dataset_json": {
"id": 45187,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "a980e23a-052b-40fe-b142-06ae445c4b24",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2021-11-12T11:19:41+02:00",
"date_removed": "2021-11-12T12:16:53+02:00",
"date_modified": "2021-11-12T12:16:53+02:00",
"user_modified": "thkveikk",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 0,
"research_dataset": {
"title": {
"en": "FIRE (The Finnish Reflection Experiment) profile 3 including part 3A",
"fi": "FIRE-heijastusluotaushanke, luotauslinja 3 sekä osio 3A"
},
"issued": "2020-12-31",
"creator": [
{
"name": {
"en": "Seismologian instituutti"
},
"@type": "Organization",
"email": "<hidden>",
"is_part_of": {
"name": {
"en": "University of Helsinki",
"fi": "Helsingin yliopisto",
"und": "Helsingin yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901"
}
},
{
"name": {
"en": "Geological Survey of Finland",
"fi": "Geologian tutkimuskeskus",
"und": "Geologian tutkimuskeskus"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/5040011"
},
{
"name": {
"fi": "Sodankylän geofysiikan observatorio",
"und": "Sodankylän geofysiikan observatorio"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904-240760",
"is_part_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
}
},
{
"name": {
"fi": "Kaivannaisala",
"und": "Kaivannaisala"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904-240250",
"is_part_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
}
}
],
"keyword": [
"reflection",
"crust",
"Moho",
"shield",
"boundary",
"geology",
"seismology",
"tectonics",
"Fennoscandia",
"Finland"
],
"language": [
{
"title": {
"en": "English",
"fi": "englanti",
"sv": "engelska",
"und": "englanti"
},
"identifier": "http://lexvo.org/id/iso639-3/eng"
}
],
"publisher": {
"name": {
"en": "Seismologian instituutti"
},
"@type": "Organization",
"email": "<hidden>",
"is_part_of": {
"name": {
"en": "University of Helsinki",
"fi": "Helsingin yliopisto",
"und": "Helsingin yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901"
}
},
"description": {
"en": "The Finnish Reflection Experiment (FIRE) dataset consists of seismic reflection data from 2,104 km of common mid-point (CMP) lines. The four FIRE transects cross-cut several geologically and economically important features of Fennoscandian Shield such as the Archaean–Proterozoic boundary and Outokumpu ore district.\n\nThe original FIRE project took place between 2001 and 2005. It was conducted in co-operation between the Geological Survey of Finland (GTK), the Institute of Seismology at the University of Helsinki and the Institute of Geosciences and the Sodankylä Geophysical Observatory of the University of Oulu. The seismic contractor in the FIRE project was Specgeofizika S.E. together with Machinoexport S.E.\n\nThe original report of the FIRE project can be found in the Special Paper 43 of the Geological Survey of Finland:\n\nKukkonen, I.T., and Lahtinen, R. (Eds.), 2006. Finnish Reflection Experiment FIRE 2001-2005. Geological Survey of Finland, Special Paper 43, 247 pages.\n\nThis dataset covers the FIRE profile 3 including additional part 3A. Data consist of pole coordinate files, common mid-point coordinate files, original field recordings, shot gathers, field statics, normal move-out and dip move-out stacks, migrated and depth-converted stacks, envelope sections and variable-area plots.",
"fi": "Heijastusluotaushankkeen FIRE (The Finnish Reflection Experiment) aineisto koostuu seismisestä heijastusluotausdatasta, joka kattaa neljä linjaa Suomessa. Luotauslinjojen kokonaispituus on 2104 km. Ne leikkaavat useita geologisesti ja taloudellisesti tärkeitä Fennoskandian kilven alueita kuten arkeeisen ja proterotsooisen kuoren rajan sekä Outokummun malmialueen.\n\nAlkuperäinen FIRE-hanke toteutettiin vuosina 2001-2015 Geologian tutkimuskeskuksen (GTK), Helsingin yliopiston Seismologian instituutin ja Oulun yliopiston Seismologian instituutin sekä Sodankylän geofysiikan observatorion yhteistyönä. Seismisistä luotauksista vastasivat Specgeofizika S.E. ja Machinoexport S.E. Tämä aineisto kattaa FIRE-hankkeen luotauslinjan 4 mukaan lukien siihen liittyvä osio 3A.\n\nFIRE-hanke on kuvattu kattavasti Geologian tutkimuskeskuksen julkaisussa:\n\nKukkonen, I.T., ja Lahtinen, R. (toim.), 2006. Finnish Reflection Experiment FIRE 2001-2005. Geological Survey of Finland, Special Paper 43, 247 s."
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta1171",
"pref_label": {
"en": "Geosciences",
"fi": "Geotieteet",
"sv": "Geovetenskaper",
"und": "Geotieteet"
}
},
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta1",
"pref_label": {
"en": "Natural sciences",
"fi": "LUONNONTIETEET",
"sv": "Naturvetenskaper",
"und": "LUONNONTIETEET"
}
}
],
"preferred_identifier": "urn:nbn:fi:att:0c6d4d68-da91-4a8d-a2d7-df4baeb7dfd3",
"total_files_byte_size": 335222608202,
"metadata_version_identifier": "ffb9e4d0-e90c-4340-b0f8-34e67e130126"
},
"service_modified": "qvain-light",
"editor_permissions": "<hidden>",
"metadata_owner_org": "helsinki.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "a980e23a-052b-40fe-b142-06ae445c4b24",
"date_created": "2021-11-12T11:19:41+02:00",
"date_removed": "2021-11-12T10:16:53Z",
"preferred_identifier": "urn:nbn:fi:att:0c6d4d68-da91-4a8d-a2d7-df4baeb7dfd3"
}
],
"metadata_provider_org": "helsinki.fi",
"metadata_provider_user": "thkveikk"
},
"legacy_file_ids": "<572 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "9a2f4a9d-87c5-4d2e-bb8a-e13da1edc4b6",
"dataset_json": {
"id": 45244,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "9a2f4a9d-87c5-4d2e-bb8a-e13da1edc4b6",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2021-12-14T07:26:29+02:00",
"date_removed": "2021-12-14T15:59:07+02:00",
"date_modified": "2021-12-14T15:59:07+02:00",
"user_modified": "dvorkovl",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"theme": [
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p64727",
"pref_label": {
"en": "functional magnetic resonance imaging",
"fi": "toiminnallinen magneettikuvaus",
"sv": "funktionell magnetröntgen",
"und": "toiminnallinen magneettikuvaus"
}
}
],
"title": {
"en": "fMRI data - light isoflurane anesthesia"
},
"issued": "2021-07-21",
"creator": [
{
"name": "Lenka Dvorakova",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Kuopio Biomedical Imaging Unit"
},
"@type": "Organization",
"is_part_of": {
"name": {
"fi": "A.I. Virtanen -instituutti / Bioteknologia ja molekulaarinen lääketiede",
"und": "A.I. Virtanen -instituutti / Bioteknologia ja molekulaarinen lääketiede"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10088-401020",
"is_part_of": {
"name": {
"en": "University of Eastern Finland",
"fi": "Itä-Suomen yliopisto",
"sv": "Östra Finlands universitet",
"und": "Itä-Suomen yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10088"
}
}
},
"identifier": "https://orcid.org/0000-0003-0880-4743"
},
{
"name": "Olli Gröhn",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Kuopio Biomedical Imaging Unit"
},
"@type": "Organization",
"is_part_of": {
"name": {
"fi": "A.I. Virtanen -instituutti / Bioteknologia ja molekulaarinen lääketiede",
"und": "A.I. Virtanen -instituutti / Bioteknologia ja molekulaarinen lääketiede"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10088-401020",
"is_part_of": {
"name": {
"en": "University of Eastern Finland",
"fi": "Itä-Suomen yliopisto",
"sv": "Östra Finlands universitet",
"und": "Itä-Suomen yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10088"
}
}
}
}
],
"keyword": [
"fMRI",
"light sedated",
"rat",
"preclinical fMRI",
"resting state",
"rs-fMRI"
],
"language": [
{
"title": {
"en": "English",
"fi": "englanti",
"sv": "engelska",
"und": "englanti"
},
"identifier": "http://lexvo.org/id/iso639-3/eng"
}
],
"publisher": {
"name": "Lenka Dvorakova",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Kuopio Biomedical Imaging Unit"
},
"@type": "Organization",
"is_part_of": {
"name": {
"fi": "A.I. Virtanen -instituutti / Bioteknologia ja molekulaarinen lääketiede",
"und": "A.I. Virtanen -instituutti / Bioteknologia ja molekulaarinen lääketiede"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10088-401020",
"is_part_of": {
"name": {
"en": "University of Eastern Finland",
"fi": "Itä-Suomen yliopisto",
"sv": "Östra Finlands universitet",
"und": "Itä-Suomen yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10088"
}
}
},
"identifier": "https://orcid.org/0000-0003-0880-4743"
},
"description": {
"en": "Open data sharing of fMRI data in rats under light anesthesia. \n\nThe database of resting state-fMRI data from 102 animals measured under light sedation protocol in a 7T scanner. Both raw and preprocessed data are included. The database was acquired by the Kuopio Biomedical Imaging Unit and co-funded by the Academy of Finald and Horizon 2020 Framework Programme of the European Union (Marie Skłodowska Curie grant agreement No 740264).\n\nThe structure of the database is as follows:\n\n...\n├── *RAT_ID*\n│ └── BL\n│ └── rsfMRI\n│ \t├── raw_rsfMRI.nii \t\traw data\n│ \t└── processed_rsfMRI.nii.gz\tprocessed data\n...\n\nThe processed data are a result of a preprocessing pipeline described in (Dvorakova et al., NMR in Biomedicine, under review) with these steps:\n\t- slice timing correction\n\t- removal of the edge slices\n\t- motion scrubbing\n\t- ANTs motion correction\n\t- coregistration to a reference brain\n\t- smoothing\n\t- ICA-based motion removal\n\n"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta3112",
"pref_label": {
"en": "Neurosciences",
"fi": "Neurotieteet",
"sv": "Neurovetenskaper",
"und": "Neurotieteet"
}
}
],
"preferred_identifier": "doi:10.23729/f5d58ba7-7662-4945-a87c-55341b533270",
"total_files_byte_size": 68640303375,
"metadata_version_identifier": "2782658a-d826-4def-b701-4c185eba7e18"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "uef.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "9a2f4a9d-87c5-4d2e-bb8a-e13da1edc4b6",
"date_created": "2021-12-14T07:26:29+02:00",
"date_removed": "2021-12-14T13:59:07Z",
"preferred_identifier": "doi:10.23729/f5d58ba7-7662-4945-a87c-55341b533270"
}
],
"metadata_provider_org": "uef.fi",
"metadata_provider_user": "dvorkovl",
"date_cumulation_started": "2021-12-14T07:26:29+02:00",
"preservation_identifier": "doi:10.23729/f5d58ba7-7662-4945-a87c-55341b533270",
"date_last_cumulative_addition": "2021-12-14T07:26:30+02:00"
},
"legacy_file_ids": "<206 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "fa28cd6e-29f8-4817-9591-c77d2d36a9b0",
"dataset_json": {
"id": 45277,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "fa28cd6e-29f8-4817-9591-c77d2d36a9b0",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2021-12-30T11:06:15+02:00",
"date_removed": "2021-12-30T11:10:04+02:00",
"date_modified": "2021-12-30T11:10:04+02:00",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 0,
"research_dataset": {
"title": {
"en": "OUL40 analogs as PARP inhibitors"
},
"issued": "2021-12-30",
"creator": [
{
"name": "Lari Lehtiö",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
},
"identifier": "https://orcid.org/0000-0001-7250-832X"
},
{
"name": "Mirko Maksimainen",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
},
"identifier": "https://orcid.org/0000-0001-8586-9538"
},
{
"name": "Sven Sowa",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
},
"identifier": "0000-0001-7411-5925"
},
{
"name": "Albert Galera-Prat",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
},
"identifier": "0000-0002-6334-3428"
},
{
"name": "Sudarshan Murthy",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
},
"identifier": "0000-0001-5602-4202"
}
],
"keyword": [
"Enzyme",
"inhibitor",
"crystal structures"
],
"publisher": {
"name": "Lari Lehtiö",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
},
"identifier": "https://orcid.org/0000-0001-7250-832X"
},
"description": {
"en": "Raw diffraction images"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta1182",
"pref_label": {
"en": "Biochemistry, cell and molecular biology",
"fi": "Biokemia, solu- ja molekyylibiologia",
"sv": "Biokemi, cell- och molekylärbiologi",
"und": "Biokemia, solu- ja molekyylibiologia"
}
}
],
"preferred_identifier": "urn:nbn:fi:att:9b2ba377-dbed-4dcb-84fc-952df991b00f",
"metadata_version_identifier": "4189e537-d64f-4e21-b4d3-0fb30c6db8c7"
},
"service_modified": "qvain-light",
"editor_permissions": "<hidden>",
"metadata_owner_org": "oulu.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "fa28cd6e-29f8-4817-9591-c77d2d36a9b0",
"date_created": "2021-12-30T11:06:15+02:00",
"date_removed": "2021-12-30T09:10:04Z",
"preferred_identifier": "urn:nbn:fi:att:9b2ba377-dbed-4dcb-84fc-952df991b00f"
}
],
"metadata_provider_org": "oulu.fi",
"metadata_provider_user": "lehtio"
},
"legacy_file_ids": [],
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "6dd4735d-0b39-40f1-bce4-0efeb3dba34a",
"dataset_json": {
"id": 45301,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "6dd4735d-0b39-40f1-bce4-0efeb3dba34a",
"data_catalog": {
"id": 2,
"identifier": "urn:nbn:fi:att:data-catalog-att"
},
"date_created": "2022-02-02T08:32:12+02:00",
"date_removed": "2022-04-11T19:49:46+03:00",
"date_modified": "2022-04-11T19:49:46+03:00",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 0,
"research_dataset": {
"theme": [
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p59398",
"pref_label": {
"en": "corpus linguistics",
"fi": "korpuslingvistiikka",
"sv": "korpuslingvistik",
"und": "korpuslingvistiikka"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p73021",
"pref_label": {
"de": "Dialektologie",
"en": "dialectology",
"et": "dialektoloogia",
"fi": "dialektologia",
"sv": "dialektologi",
"und": "dialektologia"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p60968",
"pref_label": {
"en": "North America",
"fi": "Pohjois-Amerikka",
"sv": "Nordamerika",
"und": "Pohjois-Amerikka"
}
}
],
"title": {
"en": "Corpus of North American Spoken English"
},
"issued": "2022-02-01",
"creator": [
{
"name": "Steven Coats",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"fi": "Englantilainen filologia",
"und": "Englantilainen filologia"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904-2400310",
"is_part_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
}
},
"identifier": "https://cc.oulu.fi/~scoats"
},
{
"name": {
"fi": "Englantilainen filologia",
"und": "Englantilainen filologia"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904-2400310",
"is_part_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
}
}
],
"keyword": [
"corpus linguistics",
"dialectology",
"sociolinguistics",
"spoken language",
"speech transcripts"
],
"spatial": [
{
"as_wkt": [
"POINT(-100 48)"
],
"place_uri": {
"in_scheme": "http://www.yso.fi/onto/yso/places",
"identifier": "http://www.yso.fi/onto/yso/p105416",
"pref_label": {
"en": "North America",
"fi": "Pohjois-Amerikka",
"sv": "Nordamerika",
"und": "Pohjois-Amerikka"
}
},
"geographic_name": "North America"
}
],
"language": [
{
"title": {
"en": "English",
"fi": "englanti",
"sv": "engelska",
"und": "englanti"
},
"identifier": "http://lexvo.org/id/iso639-3/eng"
}
],
"temporal": [
{
"end_date": "2021-01-01T00:00:00.000Z",
"start_date": "2000-01-01T00:00:00.000Z"
}
],
"publisher": {
"name": "Steven Coats",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"fi": "Englantilainen filologia",
"und": "Englantilainen filologia"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904-2400310",
"is_part_of": {
"name": {
"en": "University of Oulu",
"fi": "Oulun yliopisto",
"sv": "Uleåborgs universitet",
"und": "Oulun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01904"
}
},
"identifier": "https://cc.oulu.fi/~scoats"
},
"description": {
"en": "The Corpus of North American Spoken English (CoNASE) is a 1.25-billion-word corpus of geolocated automatic speech recognition (ASR) YouTube transcripts from the United States and Canada, created for the study of lexical, grammatical, and discourse-pragmatic phenomena of spoken language, including their geographical distribution, in North American English. The size of the corpus allows rare phenomena to be considered, and because the annotation includes the video IDs of transcripts, search hits can be manually inspected and video or audio data can be accessed. As the starting point of a scripting pipeline, the corpus can also be used for large-scale acoustic analyses of North American speech. The corpus was created from 301,847 ASR transcripts from 2,572 YouTube channels, corresponding to 154,041 hours of video. The size of the corpus is 1,252,066,371 word tokens. The channels sampled in the corpus are associated with local government entities such as town, city, or county boards and councils, school or utility districts, regional authorities such as provincial or territorial governments, or other governmental organizations. The transcripts are primarily of recordings of public meetings, although other genres are also present. Video transcripts have been assigned exact latitude-longitude coordinates using a geocoding script.\n"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
},
"restriction_grounds": [
{
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds",
"identifier": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds/code/copyright",
"pref_label": {
"en": "Restricted access due to copyright",
"fi": "Saatavuutta rajoitettu tekijäoikeuden perusteella",
"sv": "Begränsad åtkomst på grund av upphovsrätt",
"und": "Saatavuutta rajoitettu tekijäoikeuden perusteella"
}
}
]
},
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta6121",
"pref_label": {
"en": "Languages",
"fi": "Kielitieteet",
"sv": "Språkvetenskaper",
"und": "Kielitieteet"
}
}
],
"other_identifier": [
{
"notation": "https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/X8QJJV"
},
{
"notation": "https://cc.oulu.fi/~scoats/CoNASE.html"
}
],
"preferred_identifier": "urn:nbn:fi:att:08577461-b85d-43d1-b2ba-74f8c79b48fd",
"metadata_version_identifier": "f63ac5ad-a306-4994-92db-5891c369280d"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "oulu.fi",
"preservation_state": 0,
"metadata_provider_org": "oulu.fi",
"metadata_provider_user": "coatsste"
},
"legacy_file_ids": [],
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "2649d523-6d8b-4e29-956a-28a1a1c24f73",
"dataset_json": {
"id": 45325,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"contract": {
"id": 4,
"identifier": "urn:uuid:8e2332f0-1d27-4f7b-918c-a700267c49ef"
},
"deprecated": false,
"identifier": "2649d523-6d8b-4e29-956a-28a1a1c24f73",
"data_catalog": {
"id": 7,
"identifier": "urn:nbn:fi:att:data-catalog-pas"
},
"date_created": "2022-02-10T12:27:39+02:00",
"date_removed": "2022-10-28T10:12:46+03:00",
"user_created": "savelaju",
"date_modified": "2022-10-28T10:12:46+03:00",
"cumulative_state": 0,
"research_dataset": {
"title": {
"fi": "Talvadas, Dálvadas"
},
"issued": "2021-03-02",
"creator": [
{
"name": "HKT-arkisto/Heli Syrjälä",
"@type": "Person",
"member_of": {
"name": {
"en": "University of Turku",
"fi": "Turun yliopisto",
"sv": "Åbo universitet",
"und": "Turun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10089"
}
}
],
"publisher": {
"name": {
"fi": "HKT-laitoksen yhteiset",
"und": "HKT-laitoksen yhteiset"
},
"@type": "Organization",
"homepage": {
"title": {
"en": "Publisher website",
"fi": "Julkaisijan kotisivu"
},
"identifier": "https://www.utu.fi/fi/yliopisto/humanistinen-tiedekunta/hkt-arkisto"
},
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10089-2602200",
"is_part_of": {
"name": {
"en": "University of Turku",
"fi": "Turun yliopisto",
"sv": "Åbo universitet",
"und": "Turun yliopisto"
},
"@type": "Organization",
"homepage": {
"title": {
"en": "Publisher parent website",
"fi": "Julkaisijan yläorganisaation kotisivu"
},
"identifier": "utu.fi"
},
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10089"
},
"contributor_type": [
{
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/contributor_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/contributor_type/code/HostingInstitution",
"pref_label": {
"en": "Hosting Institution",
"fi": "Säilyttävä organisaatio",
"sv": "Bevarande organisation",
"und": "Säilyttävä organisaatio"
}
}
]
},
"provenance": [
{
"description": {
"en": "Value unavailable, possibly unknown"
},
"event_outcome": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/event_outcome",
"identifier": "http://uri.suomi.fi/codelist/fairdata/event_outcome/code/unknown",
"pref_label": {
"en": "Unknown",
"fi": "Tuntematon",
"sv": "Okänt",
"und": "Tuntematon"
}
},
"preservation_event": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/preservation_event",
"identifier": "http://uri.suomi.fi/codelist/fairdata/preservation_event/code/cre",
"pref_label": {
"en": "Creation",
"fi": "Luonti",
"und": "Luonti"
}
},
"outcome_description": {
"en": "Value unavailable, possibly unknown"
}
}
],
"description": {
"fi": "Saamelaisen folkloren (kertomusperinteen) tutkimusprojekti, joka on edelleen toiminnassa. Projekti alkoi vuonna 1965 ja sen aktiivivaihe oli vuosina 1965–1975. Tutkimuksen pääkohteina olivat Suomen, Ruotsin ja Norjan Lapin alueet ja Utsjoella, Tenojoen varressa sijaitseva Talvadaksen (Dálvadas) kylä sekä sen lähikylät Nuvvus, Aittijoki ja Porta. Yhteydenpito ja kenttätyöt ovat jatkuneet nykypäivään asti. Kenttätyömatkoilla on haastateltu lähes 400 henkilöä. Aineistoon kuuluu yli 1200 ääniteyksikköä, noin 500 valokuvaa, noin 900 diaa ja muutamia videoita sekä haastattelujen litteraatioita ja muuta kenttätyöaineistoa. Suurin osa av-aineistosta on digitoitu."
},
"directories": [
{
"title": "Talvadas",
"identifier": "622755b728da38efa9b641f09e81d74a",
"use_category": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/use_category",
"identifier": "http://uri.suomi.fi/codelist/fairdata/use_category/code/source",
"pref_label": {
"en": "Source material",
"fi": "Lähdeaineisto",
"und": "Lähdeaineisto"
}
}
}
],
"access_rights": {
"license": [
{
"title": {
"en": "Other (Not Open)",
"fi": "Muu (Ei avoin)",
"und": "Muu (Ei avoin)"
},
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/other-closed"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"definition": {
"en": "A statement or formal explanation of the meaning of a concept."
},
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/restricted",
"pref_label": {
"en": "Restricted use",
"fi": "Saatavuutta rajoitettu",
"und": "Saatavuutta rajoitettu"
}
},
"description": {
"fi": "Historian, kulttuurin ja taiteiden tutkimuksen arkisto on tutkimusarkisto, jonka aineistoja käytetään tutkimuksessa, yliopisto-opetuksessa, museotoiminnassa ja tapauskohtaisesti harkinnanvaraisesti muissa tarkoituksissa."
},
"restriction_grounds": [
{
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds",
"identifier": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds/code/research",
"pref_label": {
"en": "Restriced access for research based on contract",
"fi": "Saatavuutta rajoitettu sopimuksen perusteella vain tutkimuskäyttöön",
"sv": "Begränsad åtkomst på bas av kontrakt ändast för forskningsändamål",
"und": "Saatavuutta rajoitettu sopimuksen perusteella vain tutkimuskäyttöön"
}
}
]
},
"preferred_identifier": "doi:10.23729/a35c6996-49a7-48d4-bc9e-e1669aca9197",
"total_files_byte_size": 0,
"metadata_version_identifier": "fc5a9732-e0ab-4bbe-a939-d011674772a7"
},
"service_modified": "tpas",
"editor_permissions": "<hidden>",
"metadata_owner_org": "utu.fi",
"preservation_state": 0,
"metadata_provider_org": "utu.fi",
"metadata_provider_user": "savelaju",
"preservation_identifier": "doi:10.23729/a35c6996-49a7-48d4-bc9e-e1669aca9197",
"preservation_description": "Files passed validation",
"preservation_state_modified": "2022-05-16T14:39:54+03:00",
"preservation_reason_description": ""
},
"legacy_file_ids": "<3087 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['preservation_reason_description']",
"root['user_created']",
"root['editor_permissions']",
"root['research_dataset']['directories']"
]
}
},
{
"id": "4e54b054-69c5-4ad6-88fe-76b8aef58423",
"dataset_json": {
"id": 45396,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": true,
"identifier": "4e54b054-69c5-4ad6-88fe-76b8aef58423",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-02-23T14:37:26+02:00",
"date_removed": "2022-03-14T11:17:11+02:00",
"date_modified": "2022-03-14T11:17:11+02:00",
"user_modified": "ilhonkon",
"access_granter": "<hidden>",
"date_deprecated": "2022-03-03T10:03:40+02:00",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"theme": [
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p4499",
"pref_label": {
"en": "space weather",
"fi": "avaruussää",
"sv": "rymdväder (kort period)",
"und": "avaruussää"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p71552",
"pref_label": {
"en": "space climate",
"fi": "avaruusilmasto",
"sv": "rymdväder (lång period)",
"und": "avaruusilmasto"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p36939",
"pref_label": {
"en": "numerical methods",
"fi": "numeeriset menetelmät",
"sv": "numeriska metoder",
"und": "numeeriset menetelmät"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p15133",
"pref_label": {
"en": "magnetosphere",
"fi": "magnetosfääri",
"sv": "magnetosfären",
"und": "magnetosfääri"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p7387",
"pref_label": {
"en": "ionosphere",
"fi": "ionosfääri",
"sv": "jonosfären",
"und": "ionosfääri"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p4449",
"pref_label": {
"en": "solar wind",
"fi": "aurinkotuuli",
"sv": "solvind",
"und": "aurinkotuuli"
}
}
],
"title": {
"en": "Data for arxiv.org/abs/2112.01864"
},
"issued": "2022-02-23",
"creator": [
{
"name": "Ilja Honkonen",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
}
}
],
"curator": [
{
"name": "Ilja Honkonen",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
}
}
],
"keyword": [
"space weather",
"space climate",
"numerical modeling",
"magnetosphere",
"ionosphere",
"solar wind"
],
"spatial": [
{
"alt": "110000",
"as_wkt": [
"sphere"
],
"geographic_name": "Ionosphere"
},
{
"geographic_name": "Magnetosphere"
},
{
"full_address": "near-Earth space",
"geographic_name": "Heliosphere"
}
],
"language": [
{
"title": {
"en": "English",
"fi": "englanti",
"sv": "engelska",
"und": "englanti"
},
"identifier": "http://lexvo.org/id/iso639-3/eng"
}
],
"relation": [
{
"entity": {
"type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/resource_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/resource_type/code/publication",
"pref_label": {
"en": "Publication",
"fi": "Julkaisu",
"und": "Julkaisu"
}
},
"title": {
"en": "arxiv.org/abs/2112.01864"
},
"identifier": "https://arxiv.org/abs/2112.01864"
},
"relation_type": {
"identifier": "http://purl.org/spar/cito/cites",
"pref_label": {
"en": "Cites",
"fi": "Viittaa",
"und": "Viittaa"
}
}
},
{
"entity": {
"type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/resource_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/resource_type/code/dataset",
"pref_label": {
"en": "Dataset",
"fi": "Tutkimusaineisto",
"und": "Tutkimusaineisto"
}
},
"title": {
"en": "zenodo.org/record/5752218"
},
"identifier": "zenodo.org/record/5752218"
},
"relation_type": {
"identifier": "http://purl.org/dc/terms/relation",
"pref_label": {
"en": "Relation",
"fi": "Liittyy",
"und": "Liittyy"
}
}
}
],
"temporal": [
{
"end_date": "2020-12-31T00:00:00.000Z",
"start_date": "1998-02-06T00:00:00.000Z"
}
],
"publisher": {
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
},
"description": {
"en": "GUMICS ionospheric and magnetospheric output of arxiv.org/abs/2112.01864"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"rights_holder": [
{
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
}
],
"infrastructure": [
{
"in_scheme": "https://avaa.tdata.fi/api/jsonws/tupa-portlet.Infrastructures/get-all-infrastructures",
"identifier": "http://urn.fi/urn:nbn:fi:research-infras-2016072531",
"pref_label": {
"en": "CSC - IT Center for Science -national research infrastructure",
"fi": "CSC - Tieteen tietotekniikan keskus -kansallinen tutkimusinfrastruktuuri",
"und": "CSC - Tieteen tietotekniikan keskus -kansallinen tutkimusinfrastruktuuri"
}
}
],
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta115",
"pref_label": {
"en": "Astronomy, Space science",
"fi": "Avaruustieteet ja tähtitiede",
"sv": "Rymdvetenskap och astronomi",
"und": "Avaruustieteet ja tähtitiede"
}
},
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta114",
"pref_label": {
"en": "Physical sciences",
"fi": "Fysiikka",
"sv": "Fysik",
"und": "Fysiikka"
}
},
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta1171",
"pref_label": {
"en": "Geosciences",
"fi": "Geotieteet",
"sv": "Geovetenskaper",
"und": "Geotieteet"
}
}
],
"preferred_identifier": "doi:10.23729/0363bc0f-2bcf-4213-abdc-9e957254c9f8",
"total_files_byte_size": 1678178637368,
"metadata_version_identifier": "b6fd972a-34ab-4799-95fa-7efbc53d4ce0"
},
"service_modified": "qvain-light",
"editor_permissions": "<hidden>",
"metadata_owner_org": "fmi.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "4e54b054-69c5-4ad6-88fe-76b8aef58423",
"date_created": "2022-02-23T14:37:26+02:00",
"date_removed": "2022-03-14T09:17:11Z",
"preferred_identifier": "doi:10.23729/0363bc0f-2bcf-4213-abdc-9e957254c9f8"
}
],
"metadata_provider_org": "fmi.fi",
"metadata_provider_user": "ilhonkon",
"date_cumulation_started": "2022-02-23T14:37:26+02:00",
"preservation_identifier": "doi:10.23729/0363bc0f-2bcf-4213-abdc-9e957254c9f8"
},
"legacy_file_ids": "<329 files>",
"v2_dataset_compatibility_diff": {
"values_changed": {
"root['research_dataset']['total_files_byte_size']": {
"new_value": 0,
"old_value": 1678178637368
}
},
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "410a645b-5b06-410a-8034-04410d1b6240",
"dataset_json": {
"id": 45400,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "410a645b-5b06-410a-8034-04410d1b6240",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-02-28T16:09:47+02:00",
"date_removed": "2022-02-28T16:10:23+02:00",
"date_modified": "2022-02-28T16:10:23+02:00",
"user_modified": "jukkkuva",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 0,
"research_dataset": {
"title": {
"en": "Calcite Fracture preview"
},
"issued": "2021-09-18",
"creator": [
{
"name": "Marja Siitari-Kauppi",
"@type": "Person",
"member_of": {
"name": {
"en": "University of Helsinki",
"fi": "Helsingin yliopisto",
"und": "Helsingin yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901"
}
},
{
"name": "Jukka Kuva",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Geological Survey of Finland",
"fi": "Geologian tutkimuskeskus",
"und": "Geologian tutkimuskeskus"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/5040011"
},
"identifier": "https://orcid.org/ 0000-0003-0241-6838"
}
],
"keyword": [
"tomography",
"radionuclide migration",
"crystalline rock"
],
"publisher": {
"name": "Jukka Kuva",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Geological Survey of Finland",
"fi": "Geologian tutkimuskeskus",
"und": "Geologian tutkimuskeskus"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/5040011"
}
},
"description": {
"en": "A calcite fracture imaged for EU Horizon 2020 project EURAD (No. 847593) as part of the subproject FUTURE (Fundamental understanding of radionuclide retention). This rock was scanned to better understand the migration of radionuclides in crystalline rock. HZDR, Germany, and NRI, Czech Republic, are partners in the study. University of Helsinki has conducted C-14-PMMA and SEM analysis of the same rock and PET-scans have been conducted at HZDR Leipzig. XCT data will be combined with other data later on.\n\nPreview of PAS-dataset"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta1171",
"pref_label": {
"en": "Geosciences",
"fi": "Geotieteet",
"sv": "Geovetenskaper",
"und": "Geotieteet"
}
},
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta114",
"pref_label": {
"en": "Physical sciences",
"fi": "Fysiikka",
"sv": "Fysik",
"und": "Fysiikka"
}
}
],
"preferred_identifier": "doi:10.23729/3928b68b-6c59-418b-9502-90cbc21b3865",
"total_files_byte_size": 403210,
"metadata_version_identifier": "23eb837a-d007-4bfb-9ad5-1aefec89bf7e"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "gtk.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "410a645b-5b06-410a-8034-04410d1b6240",
"date_created": "2022-02-28T16:09:47+02:00",
"date_removed": "2022-02-28T14:10:23Z",
"preferred_identifier": "doi:10.23729/3928b68b-6c59-418b-9502-90cbc21b3865"
}
],
"metadata_provider_org": "gtk.fi",
"metadata_provider_user": "jukkkuva",
"preservation_identifier": "doi:10.23729/3928b68b-6c59-418b-9502-90cbc21b3865"
},
"legacy_file_ids": "<4 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "98f3aa5b-6f49-44e7-b96d-932da7ffcd73",
"dataset_json": {
"id": 45419,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": true,
"identifier": "98f3aa5b-6f49-44e7-b96d-932da7ffcd73",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-03-04T11:26:12+02:00",
"date_removed": "2022-03-04T11:38:59+02:00",
"date_modified": "2022-03-04T11:38:59+02:00",
"user_modified": "ekortela",
"access_granter": "<hidden>",
"date_deprecated": "2022-03-04T11:38:00+02:00",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"theme": [
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p36817",
"pref_label": {
"en": "testing",
"fi": "testaus",
"sv": "testning",
"und": "testaus"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p57017",
"pref_label": {
"en": "demo",
"fi": "demo",
"sv": "demo",
"und": "demo"
}
}
],
"title": {
"en": "Fairdata Cumulative Dataset (Demo/Test)",
"fi": "Fairdata kasvava aineisto (Demo/testi)"
},
"issued": "2022-03-04",
"creator": [
{
"name": "Erja Kortelainen",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "CSC - IT Center for Science Ltd",
"fi": "CSC – Tieteen tietotekniikan keskus Oy",
"und": "CSC – Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
}
}
],
"keyword": [
"testi",
"demo"
],
"language": [
{
"title": {
"en": "Finnish",
"fi": "suomi",
"sv": "finska",
"und": "suomi"
},
"identifier": "http://lexvo.org/id/iso639-3/fin"
}
],
"publisher": {
"name": {
"en": "CSC - IT Center for Science Ltd",
"fi": "CSC – Tieteen tietotekniikan keskus Oy",
"und": "CSC – Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
},
"description": {
"en": "Dataset for testing/demo",
"fi": "Testiaineisto demo/testikäyttöön"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta112",
"pref_label": {
"en": "Statistics and probability",
"fi": "Tilastotiede",
"sv": "Statistik",
"und": "Tilastotiede"
}
}
],
"preferred_identifier": "doi:10.23729/851e664c-6c87-443f-b8cf-32d0c402ab7c",
"total_files_byte_size": 1402194,
"metadata_version_identifier": "86c18868-6eb4-4e37-a395-9cfff0efe9ef"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "csc.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "98f3aa5b-6f49-44e7-b96d-932da7ffcd73",
"date_created": "2022-03-04T11:26:12+02:00",
"date_removed": "2022-03-04T09:38:59Z",
"preferred_identifier": "doi:10.23729/851e664c-6c87-443f-b8cf-32d0c402ab7c"
}
],
"metadata_provider_org": "csc.fi",
"metadata_provider_user": "ekortela",
"date_cumulation_started": "2022-03-04T11:26:12+02:00",
"preservation_identifier": "doi:10.23729/851e664c-6c87-443f-b8cf-32d0c402ab7c"
},
"legacy_file_ids": "<1 files>",
"v2_dataset_compatibility_diff": {
"values_changed": {
"root['research_dataset']['total_files_byte_size']": {
"new_value": 0,
"old_value": 1402194
}
},
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "be2668c3-6243-49ae-97df-019fbcd4b433",
"dataset_json": {
"id": 45421,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": true,
"identifier": "be2668c3-6243-49ae-97df-019fbcd4b433",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-03-04T11:51:54+02:00",
"date_removed": "2022-03-04T11:55:04+02:00",
"date_modified": "2022-03-04T11:55:04+02:00",
"user_modified": "ekortela",
"access_granter": "<hidden>",
"date_deprecated": "2022-03-04T11:52:18+02:00",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"title": {
"en": "testi"
},
"issued": "2022-03-04",
"creator": [
{
"name": {
"en": "CSC – IT Center for Science",
"fi": "CSC - Tieteen tietotekniikan keskus Oy",
"und": "CSC - Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
}
],
"keyword": [
"test"
],
"publisher": {
"name": {
"en": "CSC – IT Center for Science",
"fi": "CSC - Tieteen tietotekniikan keskus Oy",
"und": "CSC - Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
},
"description": {
"en": "testi"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"preferred_identifier": "doi:10.23729/c610c9a8-2fd8-42ba-aa59-e6f57b5fdb81",
"total_files_byte_size": 1402194,
"metadata_version_identifier": "34b0ef25-226e-45ff-baa0-527d79c20015"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "csc.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "be2668c3-6243-49ae-97df-019fbcd4b433",
"date_created": "2022-03-04T11:51:54+02:00",
"date_removed": "2022-03-04T09:55:04Z",
"preferred_identifier": "doi:10.23729/c610c9a8-2fd8-42ba-aa59-e6f57b5fdb81"
}
],
"metadata_provider_org": "csc.fi",
"metadata_provider_user": "ekortela",
"date_cumulation_started": "2022-03-04T11:51:54+02:00",
"preservation_identifier": "doi:10.23729/c610c9a8-2fd8-42ba-aa59-e6f57b5fdb81",
"date_last_cumulative_addition": "2022-03-04T11:51:55+02:00"
},
"legacy_file_ids": "<1 files>",
"v2_dataset_compatibility_diff": {
"values_changed": {
"root['research_dataset']['total_files_byte_size']": {
"new_value": 0,
"old_value": 1402194
}
},
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "48802848-4327-4404-b923-33c23e3fb227",
"dataset_json": {
"id": 45422,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": true,
"identifier": "48802848-4327-4404-b923-33c23e3fb227",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-03-04T12:40:15+02:00",
"date_removed": "2022-03-04T12:42:13+02:00",
"date_modified": "2022-03-04T12:42:13+02:00",
"user_modified": "ekortela",
"access_granter": "<hidden>",
"date_deprecated": "2022-03-04T12:41:03+02:00",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"title": {
"en": "Test (poistan kohta)"
},
"issued": "2022-03-04",
"creator": [
{
"name": {
"en": "CSC – IT Center for Science",
"fi": "CSC - Tieteen tietotekniikan keskus Oy",
"und": "CSC - Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
}
],
"keyword": [
"test"
],
"publisher": {
"name": {
"en": "CSC – IT Center for Science",
"fi": "CSC - Tieteen tietotekniikan keskus Oy",
"und": "CSC - Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
},
"description": {
"en": "testi"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"preferred_identifier": "doi:10.23729/e5ca5b5f-ce17-4c8b-b7e7-22baec396277",
"total_files_byte_size": 3076614,
"metadata_version_identifier": "03695b80-c721-4bdd-a9ec-77b2a3bf58d2"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "csc.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "48802848-4327-4404-b923-33c23e3fb227",
"date_created": "2022-03-04T12:40:15+02:00",
"date_removed": "2022-03-04T10:42:13Z",
"preferred_identifier": "doi:10.23729/e5ca5b5f-ce17-4c8b-b7e7-22baec396277"
}
],
"metadata_provider_org": "csc.fi",
"metadata_provider_user": "ekortela",
"date_cumulation_started": "2022-03-04T12:40:15+02:00",
"preservation_identifier": "doi:10.23729/e5ca5b5f-ce17-4c8b-b7e7-22baec396277",
"date_last_cumulative_addition": "2022-03-04T12:40:16+02:00"
},
"legacy_file_ids": "<2 files>",
"v2_dataset_compatibility_diff": {
"values_changed": {
"root['research_dataset']['total_files_byte_size']": {
"new_value": 0,
"old_value": 3076614
}
},
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "5906ef1e-45d3-4ca3-9f3c-eefb462fa663",
"dataset_json": {
"id": 45423,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "5906ef1e-45d3-4ca3-9f3c-eefb462fa663",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-03-04T12:41:31+02:00",
"date_removed": "2022-03-04T12:42:08+02:00",
"date_modified": "2022-03-04T12:42:08+02:00",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"title": {
"en": "Test (poistan kohta) 2"
},
"issued": "2022-03-04",
"creator": [
{
"name": {
"en": "CSC - IT Center for Science Ltd",
"fi": "CSC – Tieteen tietotekniikan keskus Oy",
"und": "CSC – Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
}
],
"keyword": [
"test"
],
"publisher": {
"name": {
"en": "CSC - IT Center for Science Ltd",
"fi": "CSC – Tieteen tietotekniikan keskus Oy",
"und": "CSC – Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
},
"description": {
"en": "testi"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"preferred_identifier": "doi:10.23729/8ca1dd98-da12-450f-9642-812994ee1871",
"metadata_version_identifier": "1d15e872-73c2-4d59-9368-9d58f7f0594c"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "csc.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "5906ef1e-45d3-4ca3-9f3c-eefb462fa663",
"date_created": "2022-03-04T12:41:31+02:00",
"date_removed": "2022-03-04T10:42:08Z",
"preferred_identifier": "doi:10.23729/8ca1dd98-da12-450f-9642-812994ee1871"
}
],
"metadata_provider_org": "csc.fi",
"metadata_provider_user": "ekortela",
"date_cumulation_started": "2022-03-04T12:41:31+02:00",
"preservation_identifier": "doi:10.23729/8ca1dd98-da12-450f-9642-812994ee1871"
},
"legacy_file_ids": [],
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "b19480be-7b25-48fe-8aa1-fab24637cadf",
"dataset_json": {
"id": 45460,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": true,
"identifier": "b19480be-7b25-48fe-8aa1-fab24637cadf",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-03-14T11:16:53+02:00",
"date_removed": "2022-03-17T10:32:57+02:00",
"date_modified": "2022-03-17T10:32:57+02:00",
"user_modified": "ilhonkon",
"access_granter": "<hidden>",
"date_deprecated": "2022-03-16T16:06:02+02:00",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"theme": [
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p4499",
"pref_label": {
"en": "space weather",
"fi": "avaruussää",
"sv": "rymdväder (kort period)",
"und": "avaruussää"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p71552",
"pref_label": {
"en": "space climate",
"fi": "avaruusilmasto",
"sv": "rymdväder (lång period)",
"und": "avaruusilmasto"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p36939",
"pref_label": {
"en": "numerical methods",
"fi": "numeeriset menetelmät",
"sv": "numeriska metoder",
"und": "numeeriset menetelmät"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p15133",
"pref_label": {
"en": "magnetosphere",
"fi": "magnetosfääri",
"sv": "magnetosfären",
"und": "magnetosfääri"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p7387",
"pref_label": {
"en": "ionosphere",
"fi": "ionosfääri",
"sv": "jonosfären",
"und": "ionosfääri"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p4449",
"pref_label": {
"en": "solar wind",
"fi": "aurinkotuuli",
"sv": "solvind",
"und": "aurinkotuuli"
}
}
],
"title": {
"en": "Data for arxiv.org/abs/2112.01864"
},
"issued": "2022-03-14",
"creator": [
{
"name": "Ilja Honkonen",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
}
}
],
"curator": [
{
"name": "Ilja Honkonen",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
}
}
],
"keyword": [
"space weather",
"space climate",
"numerical modeling",
"magnetosphere",
"ionosphere",
"solar wind"
],
"spatial": [
{
"alt": "110000",
"as_wkt": [
"sphere"
],
"geographic_name": "Ionosphere"
},
{
"geographic_name": "Magnetosphere"
},
{
"full_address": "near-Earth space",
"geographic_name": "Heliosphere"
}
],
"language": [
{
"title": {
"en": "English",
"fi": "englanti",
"sv": "engelska",
"und": "englanti"
},
"identifier": "http://lexvo.org/id/iso639-3/eng"
}
],
"relation": [
{
"entity": {
"type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/resource_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/resource_type/code/publication",
"pref_label": {
"en": "Publication",
"fi": "Julkaisu",
"und": "Julkaisu"
}
},
"title": {
"en": "arxiv.org/abs/2112.01864"
},
"identifier": "https://arxiv.org/abs/2112.01864"
},
"relation_type": {
"identifier": "http://purl.org/spar/cito/cites",
"pref_label": {
"en": "Cites",
"fi": "Viittaa",
"und": "Viittaa"
}
}
},
{
"entity": {
"type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/resource_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/resource_type/code/dataset",
"pref_label": {
"en": "Dataset",
"fi": "Tutkimusaineisto",
"und": "Tutkimusaineisto"
}
},
"title": {
"en": "zenodo.org/record/5752218"
},
"identifier": "zenodo.org/record/5752218"
},
"relation_type": {
"identifier": "http://purl.org/dc/terms/relation",
"pref_label": {
"en": "Relation",
"fi": "Liittyy",
"und": "Liittyy"
}
}
}
],
"temporal": [
{
"end_date": "2020-12-31T00:00:00.000Z",
"start_date": "1998-02-06T00:00:00.000Z"
}
],
"publisher": {
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
},
"description": {
"en": "GUMICS ionospheric and magnetospheric output of arxiv.org/abs/2112.01864"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"rights_holder": [
{
"name": {
"en": "Finnish Meteorological Institute",
"fi": "Ilmatieteen laitos",
"sv": "Meterologiska institutet",
"und": "Ilmatieteen laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/4940015"
}
],
"infrastructure": [
{
"in_scheme": "https://avaa.tdata.fi/api/jsonws/tupa-portlet.Infrastructures/get-all-infrastructures",
"identifier": "http://urn.fi/urn:nbn:fi:research-infras-2016072531",
"pref_label": {
"en": "CSC - IT Center for Science -national research infrastructure",
"fi": "CSC - Tieteen tietotekniikan keskus -kansallinen tutkimusinfrastruktuuri",
"und": "CSC - Tieteen tietotekniikan keskus -kansallinen tutkimusinfrastruktuuri"
}
}
],
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta115",
"pref_label": {
"en": "Astronomy, Space science",
"fi": "Avaruustieteet ja tähtitiede",
"sv": "Rymdvetenskap och astronomi",
"und": "Avaruustieteet ja tähtitiede"
}
},
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta114",
"pref_label": {
"en": "Physical sciences",
"fi": "Fysiikka",
"sv": "Fysik",
"und": "Fysiikka"
}
},
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta1171",
"pref_label": {
"en": "Geosciences",
"fi": "Geotieteet",
"sv": "Geovetenskaper",
"und": "Geotieteet"
}
}
],
"preferred_identifier": "doi:10.23729/47558472-a41a-4a53-82ef-da5a58e3310c",
"total_files_byte_size": 5523796539286,
"metadata_version_identifier": "73603258-8966-4bc2-8319-2c7ab9c0ba99"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "fmi.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "b19480be-7b25-48fe-8aa1-fab24637cadf",
"date_created": "2022-03-14T11:16:53+02:00",
"date_removed": "2022-03-17T08:32:57Z",
"preferred_identifier": "doi:10.23729/47558472-a41a-4a53-82ef-da5a58e3310c"
}
],
"metadata_provider_org": "fmi.fi",
"metadata_provider_user": "ilhonkon",
"date_cumulation_started": "2022-03-14T11:16:53+02:00",
"preservation_identifier": "doi:10.23729/47558472-a41a-4a53-82ef-da5a58e3310c",
"date_last_cumulative_addition": "2022-03-14T11:16:54+02:00"
},
"legacy_file_ids": "<1063 files>",
"v2_dataset_compatibility_diff": {
"values_changed": {
"root['research_dataset']['total_files_byte_size']": {
"new_value": 0,
"old_value": 5523796539286
}
},
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "d01925e8-1c87-4f9d-a47e-90c3d5c6eb49",
"dataset_json": {
"id": 45461,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "d01925e8-1c87-4f9d-a47e-90c3d5c6eb49",
"data_catalog": {
"id": 7,
"identifier": "urn:nbn:fi:att:data-catalog-pas"
},
"date_created": "2022-03-14T13:42:53+02:00",
"date_removed": "2022-03-14T13:48:46+02:00",
"user_created": "jukkkuva",
"date_modified": "2022-03-14T13:48:46+02:00",
"cumulative_state": 0,
"research_dataset": {
"title": {
"en": "Calcite Fracture"
},
"issued": "2021-10-07",
"creator": [
{
"name": "Tuomo Karinen",
"@type": "Person",
"member_of": {
"name": {
"fi": "Geologian Tutkimuskeskus GTK"
},
"@type": "Organization"
}
},
{
"name": "Jukka Kuva",
"@type": "Person",
"member_of": {
"name": {
"fi": "Geologian Tutkimuskeskus GTK"
},
"@type": "Organization"
}
}
],
"publisher": {
"name": "Jukka Kuva",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"fi": "Geologian Tutkimuskeskus GTK"
},
"@type": "Organization"
}
},
"description": {
"en": "Four samples from Mustavaara imaged for, but ultimately dropped from, Karinen, T., Moilanen, M., Kuva, J., Lahaye, Y., Datar, B., Yang, S., Mustavaara revisited - A revised genetic model for orthomagmatic Fe-Ti-V mineralisation in the Koilismaa intrusion. Possible continuation publication in works. Samples are from Disseminated Ore Layer (DOL), Middle Ore Layer (MOL), Upper Ore Layer (UOL) and Lower Ore Layer (LOL) and were mostly imaged to determine their crystal size distribution and compare it with that obtained by other methods. Preview dataset found at https://doi.org/10.23729/6e3eda18-896b-4f88-b39f-5975cc61762b . To obtain data, please contact fairdata-pas@gtk.fi ."
},
"directories": [
{
"title": "CT Data",
"details": {
"id": 2040603,
"identifier": "b224efb63ec73f369c7978d879d1ba53",
"directory_path": "/CT_DATA_IDAsend/GTK/Tuomo/Mustavaara"
},
"identifier": "b224efb63ec73f369c7978d879d1ba53",
"use_category": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/use_category",
"identifier": "http://uri.suomi.fi/codelist/fairdata/use_category/code/source",
"pref_label": {
"en": "Source material",
"fi": "Lähdeaineisto",
"und": "Lähdeaineisto"
}
}
}
],
"access_rights": {
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"preferred_identifier": "doi:10.23729/36c0d7c2-e830-4887-8684-d54e7fc58c82",
"total_files_byte_size": 31124108200,
"metadata_version_identifier": "6a082b8d-20ce-4260-8526-c7f702e46726"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "gtk.fi",
"preservation_state": 0,
"metadata_provider_org": "gtk.fi",
"metadata_provider_user": "jukkkuva",
"preservation_identifier": "doi:10.23729/36c0d7c2-e830-4887-8684-d54e7fc58c82"
},
"legacy_file_ids": "<7762 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['user_created']",
"root['editor_permissions']",
"root['research_dataset']['directories']"
]
}
},
{
"id": "52d6063a-5ee7-4ac1-95aa-9c6dbd3cc955",
"dataset_json": {
"id": 45493,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "52d6063a-5ee7-4ac1-95aa-9c6dbd3cc955",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-03-18T16:00:10+02:00",
"date_removed": "2022-03-21T10:11:54+02:00",
"user_created": "jupajari",
"date_modified": "2022-03-21T10:11:54+02:00",
"user_modified": "jupajari",
"cumulative_state": 0,
"research_dataset": {
"theme": [
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p5581",
"pref_label": {
"en": "electrons",
"fi": "elektronit",
"sv": "elektroner",
"und": "elektronit"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p9878",
"pref_label": {
"en": "nuclear physics",
"fi": "ydinfysiikka",
"sv": "kärnfysik",
"und": "ydinfysiikka"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p37138",
"pref_label": {
"en": "electromagnetic radiation",
"fi": "sähkömagneettinen säteily",
"sv": "elektromagnetisk strålning",
"und": "sähkömagneettinen säteily"
}
}
],
"title": {
"en": "JYFL-ACCLAB-S12-Probing the E0 transitions in 186Pb using the SAGE spectrometer",
"fi": "JYFL-ACCLAB-S12-Probing the E0 transitions in 186Pb using the SAGE spectrometer"
},
"issued": "2022-03-18",
"creator": [
{
"name": "Pakarinen, Janne",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
},
"identifier": "0000-0001-8944-8757"
},
{
"name": "Greenlees, Paul",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
},
"identifier": "0000-0002-5986-5274"
},
{
"name": "Jakobsson, Ulrika",
"@type": "Person",
"member_of": {
"name": {
"en": "Other units",
"fi": "Muut yksiköt"
},
"@type": "Organization"
}
},
{
"name": "Sandzelius, Mikael",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Grahn, Tuomas",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
},
"identifier": "0000-0002-6255-2279"
},
{
"name": "Herzan, Andrei",
"@type": "Person",
"member_of": {
"name": {
"en": "Other units",
"fi": "Muut yksiköt"
},
"@type": "Organization"
}
},
{
"name": "Ruotsalainen, Panu",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Auranen, Kalle",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Julin, Rauno",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
},
"identifier": "0000-0002-1214-8366"
},
{
"name": "Papadakis, Philippos",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Scholey, Catherine",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Partanen, Jari",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Peura, Pauli",
"@type": "Person",
"member_of": {
"name": {
"en": "Other units",
"fi": "Muut yksiköt"
},
"@type": "Organization"
}
},
{
"name": "Saren, Jan",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
},
"identifier": "0000-0001-6383-4633"
},
{
"name": "Rahkila, Panu",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
},
"identifier": "0000-0003-4392-0782"
},
{
"name": "Juutinen, Sakari",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Stolze, Sanna",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Sorri, Juha",
"@type": "Person",
"member_of": {
"name": {
"en": "Other units",
"fi": "Muut yksiköt"
},
"@type": "Organization"
}
},
{
"name": "Konki, Joonas",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
}
},
{
"name": "Uusitalo, Juha",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
},
"identifier": "0000-0003-3780-7222"
},
{
"name": "Leino, Matti",
"@type": "Person",
"member_of": {
"name": {
"fi": "Fysiikan laitos",
"und": "Fysiikan laitos"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214020",
"is_part_of": {
"name": {
"fi": "Matemaattis-luonnontieteellinen tiedekunta",
"und": "Matemaattis-luonnontieteellinen tiedekunta"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906-214000",
"is_part_of": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
}
},
"identifier": "0000-0003-2490-4955"
}
],
"keyword": [
"nuclear physics"
],
"language": [
{
"title": {
"en": "English",
"fi": "englanti",
"sv": "engelska",
"und": "englanti"
},
"identifier": "http://lexvo.org/id/iso639-3/eng"
}
],
"temporal": [
{
"end_date": "2013-09-07T00:00:00.000Z",
"start_date": "2013-08-05T00:00:00.000Z"
}
],
"publisher": {
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
},
"description": {
"en": "Probing the E0 transitions in 186Pb using the SAGE spectrometer\r\n\r\nDate: 05.08-12.08/2013, 02.09-09.09.2013\r\nNucleus:186Pb\r\nBeam (charge state): 83Kr (15+) for 355MeV and 365MeV, 83Kr (16+) for 375MeV\r\nTarget (thickness): 106Pd (1 mg/cm2)\r\nBeam energy: 355MeV, 365MeV and 375MeV (It changed depending on carbon foil unit used)\r\nBeam intensity: Typically 40-60enA\r\nBeam hours delivered roughly: 168\r\nInstrumentation: SAGE/RITU/GREAT\r\nRITU dipole setting: 1st Part: First 6300 (SKI 94.5), then 6400 (SKI 90.4), then 6350 (SKI 92), 2nd Part: First 6400, then 6350 (SKI 94.5)\r\nRITU gas pressure: 0.7mbar\r\nSAGE coil current: 800A\r\nSAGE HV setting: 35kV\r\nStudy of triple-shape coexistence in 186Pb employing in-beam γ-ray – conversion electron spectroscopy. Investigation of the low-lying 0+ states de-exciting via E0 transitions. In addition, investigation of the converted interband (oblate to prolate) transitions. \r\n"
},
"is_output_of": [
{
"name": {
"en": "Muotojen rinnakkaiselo ja kollektiivisuus raskaissa ytimissä",
"fi": "Muotojen rinnakkaiselo ja kollektiivisuus raskaissa ytimissä"
},
"identifier": "jyu-proj.6696860",
"has_funding_agency": [
{
"name": {
"en": "Academy of Finland",
"fi": "Suomen Akatemia"
},
"@type": "Organization"
}
],
"source_organization": [
{
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
],
"has_funder_identifier": "257562"
}
],
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)",
"fi": "Creative Commons Nimeä-JaaSamoin 4.0 Kansainvälinen (CC BY-SA 4.0)",
"und": "Creative Commons Nimeä-JaaSamoin 4.0 Kansainvälinen (CC BY-SA 4.0)"
},
"license": "https://creativecommons.org/licenses/by-sa/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-SA-4.0"
}
],
"available": "2022-04-01",
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/embargo",
"pref_label": {
"en": "Embargo",
"fi": "Embargo",
"und": "Embargo"
}
},
"restriction_grounds": [
{
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds",
"identifier": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds/code/other",
"pref_label": {
"en": "Restricted access due to other reasons",
"fi": "Saatavuutta rajoitettu muulla perusteella",
"sv": "Begränsad åtkomst av övriga skäl",
"und": "Saatavuutta rajoitettu muulla perusteella"
}
}
]
},
"rights_holder": [
{
"name": {
"en": "University of Jyväskylä",
"fi": "Jyväskylän yliopisto",
"sv": "Jyväskylä universitet",
"und": "Jyväskylän yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01906"
}
],
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta114",
"pref_label": {
"en": "Physical sciences",
"fi": "Fysiikka",
"sv": "Fysik",
"und": "Fysiikka"
}
}
],
"preferred_identifier": "urn:nbn:fi:att:9e1b9652-f7ea-4afd-8da7-1c5152b4d1ee",
"total_files_byte_size": 928671655475,
"bibliographic_citation": "Pakarinen, Janne. JYFL-ACCLAB-S12-Probing the E0 transitions in 186Pb using the SAGE spectrometer. ",
"metadata_version_identifier": "0b0970ac-5699-49b1-91a2-7cf14c5e832b"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "jyu.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "52d6063a-5ee7-4ac1-95aa-9c6dbd3cc955",
"date_created": "2022-03-18T16:00:10+02:00",
"date_removed": "2022-03-21T08:11:54Z",
"preferred_identifier": "urn:nbn:fi:att:9e1b9652-f7ea-4afd-8da7-1c5152b4d1ee"
}
],
"metadata_provider_org": "jyu.fi",
"metadata_provider_user": "jupajari"
},
"legacy_file_ids": "<794 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['user_created']",
"root['editor_permissions']"
]
}
},
{
"id": "4afb47f9-af04-4aa7-a6c0-c384b4c0230c",
"dataset_json": {
"id": 45555,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"contract": {
"id": 4,
"identifier": "urn:uuid:8e2332f0-1d27-4f7b-918c-a700267c49ef"
},
"deprecated": false,
"identifier": "4afb47f9-af04-4aa7-a6c0-c384b4c0230c",
"data_catalog": {
"id": 7,
"identifier": "urn:nbn:fi:att:data-catalog-pas"
},
"date_created": "2022-03-30T09:43:47+03:00",
"date_removed": "2022-11-15T16:42:03+02:00",
"user_created": "savelaju",
"date_modified": "2022-11-15T16:42:03+02:00",
"cumulative_state": 0,
"research_dataset": {
"title": {
"fi": "Talvadas, Dálvadas"
},
"issued": "2021-03-02",
"creator": [
{
"name": "HKT-arkisto/Heli Syrjälä",
"@type": "Person",
"member_of": {
"name": {
"en": "University of Turku",
"fi": "Turun yliopisto",
"sv": "Åbo universitet",
"und": "Turun yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10089"
}
}
],
"publisher": {
"name": {
"fi": "HKT-laitoksen yhteiset",
"und": "HKT-laitoksen yhteiset"
},
"@type": "Organization",
"homepage": {
"title": {
"en": "Publisher website",
"fi": "Julkaisijan kotisivu"
},
"identifier": "https://www.utu.fi/fi/yliopisto/humanistinen-tiedekunta/hkt-arkisto"
},
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10089-2602200",
"is_part_of": {
"name": {
"en": "University of Turku",
"fi": "Turun yliopisto",
"sv": "Åbo universitet",
"und": "Turun yliopisto"
},
"@type": "Organization",
"homepage": {
"title": {
"en": "Publisher parent website",
"fi": "Julkaisijan yläorganisaation kotisivu"
},
"identifier": "utu.fi"
},
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/10089"
},
"contributor_type": [
{
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/contributor_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/contributor_type/code/HostingInstitution",
"pref_label": {
"en": "Hosting Institution",
"fi": "Säilyttävä organisaatio",
"sv": "Bevarande organisation",
"und": "Säilyttävä organisaatio"
}
}
]
},
"description": {
"fi": "Saamelaisen folkloren (kertomusperinteen) tutkimusprojekti, joka on edelleen toiminnassa. Projekti alkoi vuonna 1965 ja sen aktiivivaihe oli vuosina 1965–1975. Tutkimuksen pääkohteina olivat Suomen, Ruotsin ja Norjan Lapin alueet ja Utsjoella, Tenojoen varressa sijaitseva Talvadaksen (Dálvadas) kylä sekä sen lähikylät Nuvvus, Aittijoki ja Porta. Yhteydenpito ja kenttätyöt ovat jatkuneet nykypäivään asti. Kenttätyömatkoilla on haastateltu lähes 400 henkilöä. Aineistoon kuuluu yli 1200 ääniteyksikköä, noin 500 valokuvaa, noin 900 diaa ja muutamia videoita sekä haastattelujen litteraatioita ja muuta kenttätyöaineistoa. Suurin osa av-aineistosta on digitoitu."
},
"directories": [
{
"title": "Talvadas",
"identifier": "622755b728da38efa9b641f09e81d74a",
"use_category": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/use_category",
"identifier": "http://uri.suomi.fi/codelist/fairdata/use_category/code/source",
"pref_label": {
"en": "Source material",
"fi": "Lähdeaineisto",
"und": "Lähdeaineisto"
}
}
}
],
"access_rights": {
"license": [
{
"title": {
"en": "Other (Not Open)",
"fi": "Muu (Ei avoin)",
"und": "Muu (Ei avoin)"
},
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/other-closed"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"definition": {
"en": "A statement or formal explanation of the meaning of a concept."
},
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/restricted",
"pref_label": {
"en": "Restricted use",
"fi": "Saatavuutta rajoitettu",
"und": "Saatavuutta rajoitettu"
}
},
"description": {
"fi": "Historian, kulttuurin ja taiteiden tutkimuksen arkisto on tutkimusarkisto, jonka aineistoja käytetään tutkimuksessa, yliopisto-opetuksessa, museotoiminnassa ja tapauskohtaisesti harkinnanvaraisesti muissa tarkoituksissa."
},
"restriction_grounds": [
{
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds",
"identifier": "http://uri.suomi.fi/codelist/fairdata/restriction_grounds/code/research",
"pref_label": {
"en": "Restriced access for research based on contract",
"fi": "Saatavuutta rajoitettu sopimuksen perusteella vain tutkimuskäyttöön",
"sv": "Begränsad åtkomst på bas av kontrakt ändast för forskningsändamål",
"und": "Saatavuutta rajoitettu sopimuksen perusteella vain tutkimuskäyttöön"
}
}
]
},
"preferred_identifier": "doi:10.23729/24479ab9-8da0-4b3d-9734-37ee0025168e",
"total_files_byte_size": 306171,
"metadata_version_identifier": "49329528-2a48-4e9e-be2c-071a8a2eb95f"
},
"service_modified": "tpas",
"editor_permissions": "<hidden>",
"metadata_owner_org": "utu.fi",
"preservation_state": 40,
"metadata_provider_org": "utu.fi",
"metadata_provider_user": "savelaju",
"preservation_identifier": "doi:10.23729/24479ab9-8da0-4b3d-9734-37ee0025168e",
"preservation_description": "Metax metadata could not be validated: InvalidDatasetMetadataError: Dataset must contain at least one file",
"preservation_state_modified": "2022-11-09T10:01:14+02:00",
"preservation_reason_description": ""
},
"legacy_file_ids": "<3088 files>",
"v2_dataset_compatibility_diff": {
"values_changed": {
"root['research_dataset']['total_files_byte_size']": {
"new_value": 0,
"old_value": 306171
}
},
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['preservation_reason_description']",
"root['user_created']",
"root['editor_permissions']",
"root['research_dataset']['directories']"
]
}
},
{
"id": "6ae12344-b728-46a5-9b7f-5e53b500623f",
"dataset_json": {
"id": 45559,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "6ae12344-b728-46a5-9b7f-5e53b500623f",
"data_catalog": {
"id": 2,
"identifier": "urn:nbn:fi:att:data-catalog-att"
},
"date_created": "2022-04-01T11:50:04+03:00",
"date_removed": "2022-04-01T11:50:41+03:00",
"date_modified": "2022-04-01T11:50:41+03:00",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 0,
"research_dataset": {
"title": {
"en": "test"
},
"issued": "2022-04-01",
"creator": [
{
"name": {
"en": "CSC – IT Center for Science",
"fi": "CSC - Tieteen tietotekniikan keskus Oy",
"sv": "CSC – IT Center for Science",
"und": "CSC - Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
}
],
"keyword": [
"test"
],
"publisher": {
"name": {
"en": "CSC – IT Center for Science",
"fi": "CSC - Tieteen tietotekniikan keskus Oy",
"sv": "CSC – IT Center for Science",
"und": "CSC - Tieteen tietotekniikan keskus Oy"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/09206320"
},
"description": {
"en": "test"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"preferred_identifier": "urn:nbn:fi:att:895b52c2-0811-46ba-bcac-579a874f9918",
"metadata_version_identifier": "fe250068-4b7e-4b53-b867-17e4edacf49e"
},
"editor_permissions": "<hidden>",
"metadata_owner_org": "csc.fi",
"preservation_state": 0,
"metadata_provider_org": "csc.fi",
"metadata_provider_user": "ekortela"
},
"legacy_file_ids": [],
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
},
{
"id": "d0bb9733-6f99-4c72-90ff-806394550ec1",
"dataset_json": {
"id": 45560,
"state": "published",
"removed": true,
"api_meta": {
"version": 2
},
"deprecated": false,
"identifier": "d0bb9733-6f99-4c72-90ff-806394550ec1",
"data_catalog": {
"id": 1,
"identifier": "urn:nbn:fi:att:data-catalog-ida"
},
"date_created": "2022-04-01T12:22:29+03:00",
"date_removed": "2022-04-07T12:00:19+03:00",
"date_modified": "2022-04-07T12:00:19+03:00",
"user_modified": "lintulaa",
"access_granter": "<hidden>",
"service_created": "qvain-light",
"cumulative_state": 1,
"research_dataset": {
"theme": [
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p6170",
"pref_label": {
"en": "food chemistry",
"fi": "elintarvikekemia",
"sv": "livsmedelskemi",
"und": "elintarvikekemia"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p10484",
"pref_label": {
"en": "dietary fibre",
"fi": "ravintokuitu",
"sv": "kostfibrer",
"und": "ravintokuitu"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p33254",
"pref_label": {
"en": "proteins",
"fi": "proteiinit",
"sv": "proteiner",
"und": "proteiinit"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p74124",
"pref_label": {
"en": "sugar",
"fi": "sokeri",
"sv": "socker",
"und": "sokeri"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p34477",
"pref_label": {
"en": "carbohydrates",
"fi": "hiilihydraatit",
"sv": "kolhydrater",
"und": "hiilihydraatit"
}
},
{
"in_scheme": "http://www.yso.fi/onto/koko/",
"identifier": "http://www.yso.fi/onto/koko/p31470",
"pref_label": {
"en": "lipids",
"fi": "lipidit",
"sv": "lipider",
"und": "lipidit"
}
}
],
"title": {
"en": "MammalBase — Dataset 01: Proximate Analysis values of wild animal diet components and less conventional human foods"
},
"issued": "2022-04-01",
"creator": [
{
"name": "Kari Lintulaakso",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"fi": "Luonnontieteellinen keskusmuseo",
"und": "Luonnontieteellinen keskusmuseo"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901-H978",
"is_part_of": {
"name": {
"en": "University of Helsinki",
"fi": "Helsingin yliopisto",
"sv": "Helsingfors universitet",
"und": "Helsingin yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901"
}
},
"identifier": "https://orcid.org/0000-0001-9627-8821"
}
],
"keyword": [
"Proximate Analysis",
"Foodstuffs",
"Dietary Items"
],
"language": [
{
"title": {
"en": "English",
"fi": "englanti",
"sv": "engelska",
"und": "englanti"
},
"identifier": "http://lexvo.org/id/iso639-3/eng"
}
],
"publisher": {
"name": "Kari Lintulaakso",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"fi": "Luonnontieteellinen keskusmuseo",
"und": "Luonnontieteellinen keskusmuseo"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901-H978",
"is_part_of": {
"name": {
"en": "University of Helsinki",
"fi": "Helsingin yliopisto",
"sv": "Helsingfors universitet",
"und": "Helsingin yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901"
}
},
"identifier": "https://orcid.org/0000-0001-9627-8821"
},
"description": {
"en": "Proximate analysis (PA) is a feedstuff analysis (Greenfield and Southgate 2003). PA mimics the animal digestion process and quantifies shares of organic and inorganic materials. It estimates the relative amounts of water (moisture), ash, crude fat (ether extract, lipid), crude protein, crude fiber and Nitrogen-free extract (sugars and starches) in a food item (Henneberg and Stohmann 1860).\n\nThis dataset comes from MammalBase www.mammalbase.net and is updated periodically.\n\nThe chemical compound data for proximate analysis of food items come from primary sources. The focus is on wild animal diet components and less conventional human foods, avoiding (but not excluding entirely) cultivated crops or bred animals. In particular, domesticated fruits are excluded from the database using the definition and classification of fruit commodities by FAO (1996). Domesticated fruits have less fibre, protein, and calcium but more sugar than wild fruits (Oftedal and Allen 1996; Schwitzer et al. 2009). Many of the reported values miss the moisture. For this reason, we discarded water and renormalised the chemical composition on a dry matter basis.\n\nTaxonomic standardisation of the food items\n\nWe matched all food item and chemical compound data against the taxonomic backbone from the Integrated Taxonomic Information System (ITIS) (http://www.itis.gov) ITIS provides a taxonomic hierarchy, which\nenabled calculating average Chemical compound data for higher taxonomic levels.\n\nReferences\n\nAtwater WO, Woods CD, 1896. The chemical composition of American food materials. Farmers' Bulletin No. 28. US Department of Agriculture. Washington.\n\nFAO: Draft definition and classification of commodities,\nw2979. http://www.fao.org/WAICENT/faoinfo/economic/faodef/fdef08e.htm (1996)\n\nGreenfield, H., Southgate, D.A.: Food composition data: production, management, and use. Food & Agriculture Org. (2003)\n\nHenneberg, W., 1860. Beiträge zur begründung einer rationellen fütterung der wiederkäuer: Praktisch-landwirthschaftliche und chemischphysiologische untersuchungen. Für landwirthe und physiologen (Vol. 1). CA Schwetschke und sohn.\n\nOftedal, O.T., Allen, M.E.: The feeding and nutrition of omnivores with emphasis on primates (1996)"
},
"access_rights": {
"license": [
{
"title": {
"en": "Creative Commons Attribution 4.0 International (CC BY 4.0)",
"fi": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)",
"und": "Creative Commons Nimeä 4.0 Kansainvälinen (CC BY 4.0)"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"identifier": "http://uri.suomi.fi/codelist/fairdata/license/code/CC-BY-4.0"
}
],
"access_type": {
"in_scheme": "http://uri.suomi.fi/codelist/fairdata/access_type",
"identifier": "http://uri.suomi.fi/codelist/fairdata/access_type/code/open",
"pref_label": {
"en": "Open",
"fi": "Avoin",
"und": "Avoin"
}
}
},
"rights_holder": [
{
"name": "Kari Lintulaakso",
"@type": "Person",
"email": "<hidden>",
"member_of": {
"name": {
"fi": "Luonnontieteellinen keskusmuseo",
"und": "Luonnontieteellinen keskusmuseo"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901-H978",
"is_part_of": {
"name": {
"en": "University of Helsinki",
"fi": "Helsingin yliopisto",
"sv": "Helsingfors universitet",
"und": "Helsingin yliopisto"
},
"@type": "Organization",
"identifier": "http://uri.suomi.fi/codelist/fairdata/organization/code/01901"
}
},
"identifier": "https://orcid.org/0000-0001-9627-8821"
}
],
"field_of_science": [
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta119",
"pref_label": {
"en": "Other natural sciences",
"fi": "Muut luonnontieteet",
"sv": "Övrig naturvetenskap",
"und": "Muut luonnontieteet"
}
},
{
"in_scheme": "http://www.yso.fi/onto/okm-tieteenala/conceptscheme",
"identifier": "http://www.yso.fi/onto/okm-tieteenala/ta415",
"pref_label": {
"en": "Other agricultural sciences",
"fi": "Muut maataloustieteet",
"sv": "Övriga jordbruksvetenskaper",
"und": "Muut maataloustieteet"
}
}
],
"preferred_identifier": "urn:nbn:fi:att:4e52d8e3-f638-4027-8d2b-bf54c9f226a8",
"total_files_byte_size": 471418,
"metadata_version_identifier": "581c8a5d-797e-4997-bad8-2d720c84e6d2"
},
"service_modified": "qvain-light",
"editor_permissions": "<hidden>",
"metadata_owner_org": "helsinki.fi",
"preservation_state": 0,
"dataset_version_set": [
{
"removed": true,
"identifier": "d0bb9733-6f99-4c72-90ff-806394550ec1",
"date_created": "2022-04-01T12:22:29+03:00",
"date_removed": "2022-04-07T09:00:19Z",
"preferred_identifier": "urn:nbn:fi:att:4e52d8e3-f638-4027-8d2b-bf54c9f226a8"
}
],
"metadata_provider_org": "helsinki.fi",
"metadata_provider_user": "lintulaa",
"date_cumulation_started": "2022-04-01T12:22:29+03:00",
"date_last_cumulative_addition": "2022-04-01T13:59:19+03:00"
},
"legacy_file_ids": "<4 files>",
"v2_dataset_compatibility_diff": {
"dictionary_item_added": [
"root['research_dataset']['modified']"
],
"dictionary_item_removed": [
"root['editor_permissions']"
]
}
}
]
}