commonmeta-schema 1.0rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. commonmeta_schema/__init__.py +15 -0
  2. commonmeta_schema/fixtures/bibtex/crossref.bib +14 -0
  3. commonmeta_schema/fixtures/bibtex/journal_article.bib +14 -0
  4. commonmeta_schema/fixtures/bibtex/pure.bib +14 -0
  5. commonmeta_schema/fixtures/bibtex_commonmeta/crossref.json +82 -0
  6. commonmeta_schema/fixtures/bibtex_commonmeta/journal_article.json +42 -0
  7. commonmeta_schema/fixtures/bibtex_out/journal_article.bib +16 -0
  8. commonmeta_schema/fixtures/cff/CITATION.cff +83 -0
  9. commonmeta_schema/fixtures/cff_commonmeta/CITATION.json +76 -0
  10. commonmeta_schema/fixtures/codemeta/codemeta.json +86 -0
  11. commonmeta_schema/fixtures/commonmeta/blog_post_1.json +44 -0
  12. commonmeta_schema/fixtures/commonmeta/citeproc.json +50 -0
  13. commonmeta_schema/fixtures/commonmeta/citeproc_no_author.json +38 -0
  14. commonmeta_schema/fixtures/commonmeta/codemeta.json +65 -0
  15. commonmeta_schema/fixtures/commonmeta/crossref_journal_article.json +59 -0
  16. commonmeta_schema/fixtures/commonmeta/csl_journal_article.json +55 -0
  17. commonmeta_schema/fixtures/commonmeta/datacite_blog_post.json +54 -0
  18. commonmeta_schema/fixtures/commonmeta/datacite_blog_post_citeproc.json +104 -0
  19. commonmeta_schema/fixtures/commonmeta/datacite_dataset.json +172 -0
  20. commonmeta_schema/fixtures/commonmeta/datacite_date.json +88 -0
  21. commonmeta_schema/fixtures/commonmeta/datacite_dryad.json +76 -0
  22. commonmeta_schema/fixtures/commonmeta/datacite_multiple_identifiers.json +48 -0
  23. commonmeta_schema/fixtures/commonmeta/datacite_subject_scheme_for.json +76 -0
  24. commonmeta_schema/fixtures/commonmeta/dataset_geo.json +43 -0
  25. commonmeta_schema/fixtures/commonmeta/inveniordm_software.json +74 -0
  26. commonmeta_schema/fixtures/commonmeta/journal_article.json +54 -0
  27. commonmeta_schema/fixtures/commonmeta/journal_article_datacite_reader.json +44 -0
  28. commonmeta_schema/fixtures/commonmeta/jsonfeed_blog_post.json +138 -0
  29. commonmeta_schema/fixtures/commonmeta/jsonfeed_blog_post_sathe.json +64 -0
  30. commonmeta_schema/fixtures/commonmeta/jsonfeed_cczero_license.json +69 -0
  31. commonmeta_schema/fixtures/commonmeta/jsonfeed_ghost_with_affiliations.json +80 -0
  32. commonmeta_schema/fixtures/commonmeta/jsonfeed_post_with_funding.json +147 -0
  33. commonmeta_schema/fixtures/commonmeta/jsonfeed_post_with_relationships.json +112 -0
  34. commonmeta_schema/fixtures/commonmeta/jsonfeed_wordpress_with_references.json +132 -0
  35. commonmeta_schema/fixtures/commonmeta/schemaorg_blog_posting.json +51 -0
  36. commonmeta_schema/fixtures/commonmeta/schemaorg_geolocation.json +118 -0
  37. commonmeta_schema/fixtures/commonmeta/schemaorg_gtex.json +42 -0
  38. commonmeta_schema/fixtures/commonmeta/schemaorg_journal_article.json +48 -0
  39. commonmeta_schema/fixtures/crossref/crossref_journal_article.json +78 -0
  40. commonmeta_schema/fixtures/crossref_out/crossref_journal_article.json +77 -0
  41. commonmeta_schema/fixtures/crossref_xml/crossref_elife_01567.xml +606 -0
  42. commonmeta_schema/fixtures/crossref_xml/journal_article.xml +75 -0
  43. commonmeta_schema/fixtures/crossref_xml_commonmeta/crossref_elife_01567.json +371 -0
  44. commonmeta_schema/fixtures/csl/citeproc.json +28 -0
  45. commonmeta_schema/fixtures/csl/citeproc_no_author.json +22 -0
  46. commonmeta_schema/fixtures/csl/csl_journal_article.json +22 -0
  47. commonmeta_schema/fixtures/datacite/journal_article.json +70 -0
  48. commonmeta_schema/fixtures/datacite_reader/datacite_blog_post.json +116 -0
  49. commonmeta_schema/fixtures/datacite_reader/datacite_blog_post_citeproc.json +1 -0
  50. commonmeta_schema/fixtures/datacite_reader/datacite_dataset.json +848 -0
  51. commonmeta_schema/fixtures/datacite_reader/datacite_date.json +318 -0
  52. commonmeta_schema/fixtures/datacite_reader/datacite_dryad.json +249 -0
  53. commonmeta_schema/fixtures/datacite_reader/datacite_multiple_identifiers.json +192 -0
  54. commonmeta_schema/fixtures/datacite_reader/datacite_subject_scheme_for.json +249 -0
  55. commonmeta_schema/fixtures/datacite_reader/journal_article_datacite_reader.json +62 -0
  56. commonmeta_schema/fixtures/datacite_xml/full_v4_4.xml +114 -0
  57. commonmeta_schema/fixtures/datacite_xml/geolocation.xml +66 -0
  58. commonmeta_schema/fixtures/datacite_xml/schema_4_0.xml +140 -0
  59. commonmeta_schema/fixtures/datacite_xml_commonmeta/full_v4_4.json +110 -0
  60. commonmeta_schema/fixtures/datacite_xml_commonmeta/geolocation.json +75 -0
  61. commonmeta_schema/fixtures/datacite_xml_commonmeta/schema_4_0.json +228 -0
  62. commonmeta_schema/fixtures/inveniordm/inveniordm_software.json +83 -0
  63. commonmeta_schema/fixtures/jsonfeed/jsonfeed_blog_post.json +1 -0
  64. commonmeta_schema/fixtures/jsonfeed/jsonfeed_blog_post_sathe.json +62 -0
  65. commonmeta_schema/fixtures/jsonfeed/jsonfeed_cczero_license.json +58 -0
  66. commonmeta_schema/fixtures/jsonfeed/jsonfeed_ghost_with_affiliations.json +70 -0
  67. commonmeta_schema/fixtures/jsonfeed/jsonfeed_post_with_funding.json +147 -0
  68. commonmeta_schema/fixtures/jsonfeed/jsonfeed_post_with_relationships.json +105 -0
  69. commonmeta_schema/fixtures/jsonfeed/jsonfeed_wordpress_with_references.json +128 -0
  70. commonmeta_schema/fixtures/ris/crossref.ris +15 -0
  71. commonmeta_schema/fixtures/ris/pure.ris +15 -0
  72. commonmeta_schema/fixtures/ris_commonmeta/crossref.json +72 -0
  73. commonmeta_schema/fixtures/schemaorg/schemaorg_blog_posting.json +49 -0
  74. commonmeta_schema/fixtures/schemaorg/schemaorg_geolocation.json +82 -0
  75. commonmeta_schema/fixtures/schemaorg/schemaorg_gtex.json +75 -0
  76. commonmeta_schema/fixtures/schemaorg/schemaorg_journal_article.json +29 -0
  77. commonmeta_schema/fixtures/schemaorg_out/journal_article.json +48 -0
  78. commonmeta_schema/resources.py +41 -0
  79. commonmeta_schema/schemas/commonmeta_v1.0rc1.json +1133 -0
  80. commonmeta_schema-1.0rc1.dist-info/METADATA +152 -0
  81. commonmeta_schema-1.0rc1.dist-info/RECORD +83 -0
  82. commonmeta_schema-1.0rc1.dist-info/WHEEL +4 -0
  83. commonmeta_schema-1.0rc1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,15 @@
1
+ """Access helpers for Commonmeta schemas and fixtures."""
2
+
3
+ from .resources import (
4
+ available_schema_versions,
5
+ fixtures_path,
6
+ package_root,
7
+ schema_path,
8
+ )
9
+
10
+ __all__ = [
11
+ "available_schema_versions",
12
+ "fixtures_path",
13
+ "package_root",
14
+ "schema_path",
15
+ ]
@@ -0,0 +1,14 @@
1
+ @article{Sankar_2014,
2
+ doi = {10.7554/elife.01567},
3
+ url = {http://elifesciences.org/lookup/doi/10.7554/eLife.01567},
4
+ year = 2014,
5
+ month = {feb},
6
+ publisher = {{eLife} Sciences Organisation, Ltd.},
7
+ volume = {3},
8
+ author = {Martial Sankar and Kaisa Nieminen and Laura Ragni and Ioannis Xenarios and Christian S Hardtke},
9
+ title = {Automated quantitative histology reveals vascular morphodynamics during Arabidopsis hypocotyl secondary growth},
10
+ abstract = {Among various advantages, their small size makes model organisms preferred subjects of investigation. Yet, even in model systems detailed analysis of numerous developmental processes at cellular level is severely hampered by their scale.},
11
+ journal = {eLife},
12
+ issn = {2050-084X},
13
+ copyright = {http://creativecommons.org/licenses/by/3.0/}
14
+ }
@@ -0,0 +1,14 @@
1
+ @article{10.5555/12345678,
2
+ author = {Lovelace, Ada},
3
+ copyright = {https://creativecommons.org/licenses/by/4.0/legalcode},
4
+ date = {2024-03-15},
5
+ doi = {10.5555/12345678},
6
+ issn = {1234-5678},
7
+ issue = {3},
8
+ journal = {Journal of Examples},
9
+ language = {English},
10
+ pages = {100--110},
11
+ title = {A Study of Things},
12
+ url = {https://example.org/article/1},
13
+ volume = {12},
14
+ }
@@ -0,0 +1,14 @@
1
+ @phdthesis{dbbe66e459a446a0b6fddf42d3401ccb,
2
+ title = "A multiscale analysis of the urban heat island effect: from city averaged temperatures to the energy demand of individual buildings",
3
+ abstract = "Designing the climates of cities",
4
+ author = "Y. Toparlar",
5
+ note = "Proefschrift",
6
+ year = "2018",
7
+ month = "4",
8
+ day = "25",
9
+ language = "English",
10
+ isbn = "978-90-386-4503-2",
11
+ series = "Bouwstenen",
12
+ publisher = "Technische Universiteit Eindhoven",
13
+ school = "Department of Built Environment",
14
+ }
@@ -0,0 +1,82 @@
1
+ {
2
+ "id": "https://doi.org/10.7554/elife.01567",
3
+ "type": "JournalArticle",
4
+ "container": {
5
+ "identifier": "2050-084X",
6
+ "identifier_type": "ISSN",
7
+ "type": "Journal",
8
+ "title": "eLife",
9
+ "volume": "3"
10
+ },
11
+ "contributors": [
12
+ {
13
+ "type": "Person",
14
+ "person": {
15
+ "given_name": "Martial",
16
+ "family_name": "Sankar"
17
+ },
18
+ "roles": [
19
+ "Author"
20
+ ]
21
+ },
22
+ {
23
+ "type": "Person",
24
+ "person": {
25
+ "given_name": "Kaisa",
26
+ "family_name": "Nieminen"
27
+ },
28
+ "roles": [
29
+ "Author"
30
+ ]
31
+ },
32
+ {
33
+ "type": "Person",
34
+ "person": {
35
+ "given_name": "Laura",
36
+ "family_name": "Ragni"
37
+ },
38
+ "roles": [
39
+ "Author"
40
+ ]
41
+ },
42
+ {
43
+ "type": "Person",
44
+ "person": {
45
+ "given_name": "Ioannis",
46
+ "family_name": "Xenarios"
47
+ },
48
+ "roles": [
49
+ "Author"
50
+ ]
51
+ },
52
+ {
53
+ "type": "Person",
54
+ "person": {
55
+ "given_name": "Christian S",
56
+ "family_name": "Hardtke"
57
+ },
58
+ "roles": [
59
+ "Author"
60
+ ]
61
+ }
62
+ ],
63
+ "date_published": "2014-02",
64
+ "description": "Among various advantages, their small size makes model organisms preferred subjects of investigation. Yet, even in model systems detailed analysis of numerous developmental processes at cellular level is severely hampered by their scale.",
65
+ "identifiers": [
66
+ {
67
+ "identifier": "https://doi.org/10.7554/elife.01567",
68
+ "identifier_type": "DOI"
69
+ }
70
+ ],
71
+ "license": {
72
+ "id": "CC-BY-3.0",
73
+ "title": "Creative Commons Attribution 3.0 Unported",
74
+ "url": "http://creativecommons.org/licenses/by/3.0/"
75
+ },
76
+ "publisher": {
77
+ "name": "eLife Sciences Organisation, Ltd."
78
+ },
79
+ "schema_version": "https://commonmeta.org/commonmeta_v1.0.json",
80
+ "title": "Automated quantitative histology reveals vascular morphodynamics during Arabidopsis hypocotyl secondary growth",
81
+ "url": "http://elifesciences.org/lookup/doi/10.7554/eLife.01567"
82
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "id": "https://doi.org/10.5555/12345678",
3
+ "type": "JournalArticle",
4
+ "title": "A Study of Things",
5
+ "container": {
6
+ "identifier": "1234-5678",
7
+ "identifier_type": "ISSN",
8
+ "type": "Journal",
9
+ "title": "Journal of Examples",
10
+ "first_page": "100",
11
+ "last_page": "110",
12
+ "volume": "12",
13
+ "issue": "3"
14
+ },
15
+ "contributors": [
16
+ {
17
+ "type": "Person",
18
+ "person": {
19
+ "given_name": "Ada",
20
+ "family_name": "Lovelace"
21
+ },
22
+ "roles": [
23
+ "Author"
24
+ ]
25
+ }
26
+ ],
27
+ "date_published": "2024-03-15",
28
+ "identifiers": [
29
+ {
30
+ "identifier": "https://doi.org/10.5555/12345678",
31
+ "identifier_type": "DOI"
32
+ }
33
+ ],
34
+ "language": "en",
35
+ "license": {
36
+ "id": "CC-BY-4.0",
37
+ "title": "Creative Commons Attribution 4.0 International",
38
+ "url": "https://creativecommons.org/licenses/by/4.0/legalcode"
39
+ },
40
+ "schema_version": "https://commonmeta.org/commonmeta_v1.0.json",
41
+ "url": "https://example.org/article/1"
42
+ }
@@ -0,0 +1,16 @@
1
+ @article{10.5555/12345678,
2
+ abstract = {An abstract about things.},
3
+ author = {Lovelace, Ada},
4
+ copyright = {https://creativecommons.org/licenses/by/4.0/legalcode},
5
+ doi = {{10.5555/12345678}},
6
+ issn = {1234-5678},
7
+ issue = {3},
8
+ journal = {Journal of Examples},
9
+ language = {English},
10
+ month = {mar},
11
+ pages = {100--110},
12
+ title = {A Study of Things},
13
+ url = {{https://example.org/article/1}},
14
+ volume = {12},
15
+ year = {2024},
16
+ }
@@ -0,0 +1,83 @@
1
+ # This CITATION.cff file was created by ruby-cff (v 0.9.0).
2
+ # Gem: https://rubygems.org/gems/cff
3
+ # CFF: https://citation-file-format.github.io/
4
+
5
+ cff-version: 1.2.0
6
+ message: If you use ruby-cff in your work, please cite it using the following metadata
7
+ title: Ruby CFF Library
8
+ abstract: This library provides a Ruby interface to manipulate Citation File Format files
9
+ authors:
10
+ - family-names: Haines
11
+ given-names: Robert
12
+ orcid: https://orcid.org/0000-0002-9538-7919
13
+ affiliation: The University of Manchester, UK
14
+ - name: The Ruby Citation File Format Developers
15
+ keywords:
16
+ - ruby
17
+ - credit
18
+ - software citation
19
+ - research software
20
+ - software sustainability
21
+ - metadata
22
+ - citation file format
23
+ - CFF
24
+ version: 0.9.0
25
+ doi: 10.5281/zenodo.1184077
26
+ date-released: 2021-08-18
27
+ license: Apache-2.0
28
+ repository-artifact: https://rubygems.org/gems/cff
29
+ repository-code: https://github.com/citation-file-format/ruby-cff
30
+ references:
31
+ - type: software
32
+ title: Citation File Format
33
+ authors:
34
+ - family-names: Druskat
35
+ given-names: Stephan
36
+ orcid: https://orcid.org/0000-0003-4925-7248
37
+ - family-names: Spaaks
38
+ given-names: Jurriaan H.
39
+ orcid: https://orcid.org/0000-0002-7064-4069
40
+ - family-names: Chue Hong
41
+ given-names: Neil
42
+ orcid: https://orcid.org/0000-0002-8876-7606
43
+ - family-names: Haines
44
+ given-names: Robert
45
+ orcid: https://orcid.org/0000-0002-9538-7919
46
+ - family-names: Baker
47
+ given-names: James
48
+ orcid: https://orcid.org/0000-0002-2682-6922
49
+ - family-names: Bliven
50
+ given-names: Spencer
51
+ orcid: https://orcid.org/0000-0002-1200-1698
52
+ email: spencer.bliven@gmail.com
53
+ - family-names: Willighagen
54
+ given-names: Egon
55
+ orcid: https://orcid.org/0000-0001-7542-0286
56
+ - family-names: Pérez-Suárez
57
+ given-names: David
58
+ orcid: https://orcid.org/0000-0003-0784-6909
59
+ website: https://dpshelio.github.io
60
+ - family-names: Konovalov
61
+ given-names: Alexander
62
+ orcid: https://orcid.org/0000-0001-5299-3292
63
+ identifiers:
64
+ - type: doi
65
+ value: 10.5281/zenodo.1003149
66
+ description: The concept DOI for the collection containing all versions of the Citation File Format.
67
+ - type: doi
68
+ value: 10.5281/zenodo.5171937
69
+ description: The versioned DOI for the version 1.2.0 of the Citation File Format.
70
+ keywords:
71
+ - citation file format
72
+ - CFF
73
+ - citation files
74
+ - software citation
75
+ - file format
76
+ - YAML
77
+ - software sustainability
78
+ - research software
79
+ - credit
80
+ abstract: CITATION.cff files are plain text files with human- and machine-readable citation information for software. Code developers can include them in their repositories to let others know how to correctly cite their software. This is the specification for the Citation File Format.
81
+ date-released: 2021-08-09
82
+ license: CC-BY-4.0
83
+ version: 1.2.0
@@ -0,0 +1,76 @@
1
+ {
2
+ "id": "https://doi.org/10.5281/zenodo.1184077",
3
+ "type": "Software",
4
+ "contributors": [
5
+ {
6
+ "type": "Person",
7
+ "person": {
8
+ "id": "https://orcid.org/0000-0002-9538-7919",
9
+ "given_name": "Robert",
10
+ "family_name": "Haines",
11
+ "affiliations": [
12
+ {
13
+ "name": "The University of Manchester, UK"
14
+ }
15
+ ]
16
+ },
17
+ "roles": [
18
+ "Author"
19
+ ]
20
+ },
21
+ {
22
+ "type": "Organization",
23
+ "organization": {
24
+ "name": "The Ruby Citation File Format Developers"
25
+ },
26
+ "roles": [
27
+ "Author"
28
+ ]
29
+ }
30
+ ],
31
+ "date_published": "2021-08-18",
32
+ "description": "This library provides a Ruby interface to manipulate Citation File Format files",
33
+ "license": {
34
+ "id": "Apache-2.0",
35
+ "title": "Apache License 2.0",
36
+ "url": "https://www.apache.org/licenses/LICENSE-2.0"
37
+ },
38
+ "publisher": {
39
+ "name": "GitHub"
40
+ },
41
+ "references": [
42
+ {
43
+ "id": "https://doi.org/10.5281/zenodo.1003149"
44
+ }
45
+ ],
46
+ "schema_version": "https://commonmeta.org/commonmeta_v1.0.json",
47
+ "subjects": [
48
+ {
49
+ "subject": "ruby"
50
+ },
51
+ {
52
+ "subject": "credit"
53
+ },
54
+ {
55
+ "subject": "software citation"
56
+ },
57
+ {
58
+ "subject": "research software"
59
+ },
60
+ {
61
+ "subject": "software sustainability"
62
+ },
63
+ {
64
+ "subject": "metadata"
65
+ },
66
+ {
67
+ "subject": "citation file format"
68
+ },
69
+ {
70
+ "subject": "CFF"
71
+ }
72
+ ],
73
+ "title": "Ruby CFF Library",
74
+ "url": "https://github.com/citation-file-format/ruby-cff",
75
+ "version": "0.9.0"
76
+ }
@@ -0,0 +1,86 @@
1
+ {
2
+ "@context": "https://raw.githubusercontent.com/codemeta/codemeta/master/codemeta.jsonld",
3
+ "@type": "SoftwareSourceCode",
4
+ "agents": [{
5
+ "@id": "http://orcid.org/0000-0003-0077-4738",
6
+ "@type": "person",
7
+ "email": "jones@nceas.ucsb.edu",
8
+ "name": "Matt Jones",
9
+ "affiliation": "NCEAS",
10
+ "mustBeCited": true,
11
+ "isMaintainer": true,
12
+ "isRightsHolder": true,
13
+ "role": {
14
+ "namespace": "http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode",
15
+ "roleCode": [
16
+ "originator",
17
+ "resourceProvider"
18
+ ]
19
+ }
20
+ }, {
21
+ "@id": "http://orcid.org/0000-0002-2192-403X",
22
+ "@type": "person",
23
+ "email": "slaughter@nceas.ucsb.edu",
24
+ "name": "Peter Slaughter",
25
+ "affiliation": "NCEAS",
26
+ "mustBeCited": true,
27
+ "isMaintainer": false,
28
+ "isRightsHolder": false,
29
+ "role": {
30
+ "namespace": "http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode",
31
+ "roleCode": "contributor"
32
+ }
33
+ }, {
34
+ "@type": "organization",
35
+ "email": "info@ucop.edu",
36
+ "name": "University of California, Santa Barbara",
37
+ "role": {
38
+ "namespace": "http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#CI_RoleCode",
39
+ "roleCode": "copyrightHolder"
40
+ }
41
+ }],
42
+ "depends": {
43
+ "@type": "URL",
44
+ "@value": "https://github.com/ropensci/datapack"
45
+ },
46
+ "identifier": "http://dx.doi.org/10.5063/F1M61H5X",
47
+ "codeRepository": "https://github.com/DataONEorg/rdataone",
48
+ "controlledTem": "software",
49
+ "datePublished": "2016-05-27",
50
+ "dateModified": "2016-05-27",
51
+ "dateCreated": "2016-05-27",
52
+ "description": "Provides read and write access to data and metadata from the DataONE network of data repositories.Each DataONE repository implements a consistent repository application programming interface. Users call methods in R to access these remote repository functions, such as methods to query the metadata catalog, get access to metadata for particular data packages, and read the data objects from the data repository.Users can also insert and update data objects on repositories that support these methods.",
53
+ "downloadLink": "https://cran.r-project.org/src/contrib/dataone_2.0.0.tar.gz",
54
+ "funding": "National Science Foundation grant #012345678",
55
+ "isAutomatedBuild": false,
56
+ "issueTracker": "https://github.com/DataONEorg/rdataone/issues",
57
+ "licenseId": "Apache-2.0",
58
+ "publisher": "https://cran.r-project.org",
59
+ "tags": [
60
+ "data sharing",
61
+ "data repository",
62
+ "DataONE"
63
+ ],
64
+ "title": "R Interface to the DataONE REST API",
65
+ "version": "2.0.0",
66
+ "uploadedBy": {
67
+ "@id": "http://orcid.org/0000-0003-0077-4738",
68
+ "@type": "person",
69
+ "email": "mbjones@nceas.ucsb.edu",
70
+ "name": "Matt Jones"
71
+ },
72
+ "programmingLanguage": {
73
+ "name": "R",
74
+ "version": "> 3.1.1",
75
+ "URL": "https://www.r-project.org"
76
+ },
77
+ "readme": "https://github.com/DataONEorg/rdataone/README.md",
78
+ "relatedPublications": "ISBN:0201703726",
79
+ "relationship": {
80
+ "relationshipType": "isPartOf",
81
+ "relatedIdentifier": "urn:uuid:F1A0A7AF-ECF3-4C7D-B675-7C6949963995",
82
+ "relatedIdentifierType": "UUID"
83
+ },
84
+ "softwarePaperCitationIdentifiers": "http://doi.org/0000/0000",
85
+ "zippedCode": "https://cran.r-project.org/src/contrib/dataone_2.0.0.tar.gz"
86
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "id": "https://doi.org/10.59350/abcde-fghij",
3
+ "type": "Preprint",
4
+ "additional_titles": [
5
+ {
6
+ "title": "An Introduction",
7
+ "type": "Subtitle"
8
+ }
9
+ ],
10
+ "content": "<p>Hello <strong>world</strong>.</p>",
11
+ "contributors": [
12
+ {
13
+ "type": "Person",
14
+ "person": {
15
+ "given_name": "Jane",
16
+ "family_name": "Doe"
17
+ },
18
+ "roles": [
19
+ "Author"
20
+ ]
21
+ }
22
+ ],
23
+ "date_published": "2025-02-10",
24
+ "description": "A short summary of the post.",
25
+ "language": "en",
26
+ "provider": "Crossref",
27
+ "publisher": {
28
+ "name": "Example Blog"
29
+ },
30
+ "relations": [
31
+ {
32
+ "id": "https://doi.org/10.5555/journal",
33
+ "type": "IsPartOf"
34
+ }
35
+ ],
36
+ "schema_version": "https://commonmeta.org/commonmeta_v1.0rc1.json",
37
+ "subjects": [
38
+ {
39
+ "subject": "Technology"
40
+ }
41
+ ],
42
+ "title": "Hello World",
43
+ "url": "https://blog.example.org/post"
44
+ }
@@ -0,0 +1,50 @@
1
+ {
2
+ "id": "https://doi.org/10.5438/4k3m-nyvg",
3
+ "type": "BlogPost",
4
+ "container": {
5
+ "title": "DataCite Blog"
6
+ },
7
+ "contributors": [
8
+ {
9
+ "type": "Person",
10
+ "person": {
11
+ "given_name": "Martin",
12
+ "family_name": "Fenner"
13
+ },
14
+ "roles": [
15
+ "Author"
16
+ ]
17
+ }
18
+ ],
19
+ "date_published": "2016-12-20",
20
+ "description": "Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...",
21
+ "publisher": {
22
+ "name": "DataCite"
23
+ },
24
+ "schema_version": "https://commonmeta.org/commonmeta_v1.0rc1.json",
25
+ "subjects": [
26
+ {
27
+ "subject": "Phylogeny"
28
+ },
29
+ {
30
+ "subject": "Malaria"
31
+ },
32
+ {
33
+ "subject": "Parasites"
34
+ },
35
+ {
36
+ "subject": "Taxonomy"
37
+ },
38
+ {
39
+ "subject": "Mitochondrial genome"
40
+ },
41
+ {
42
+ "subject": "Africa"
43
+ },
44
+ {
45
+ "subject": "Plasmodium"
46
+ }
47
+ ],
48
+ "title": "Eating your own Dog Food",
49
+ "url": "https://blog.datacite.org/eating-your-own-dog-food"
50
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "id": "https://doi.org/10.5438/4k3m-nyvg",
3
+ "type": "BlogPost",
4
+ "container": {
5
+ "title": "DataCite Blog"
6
+ },
7
+ "date_published": "2016-12-20",
8
+ "description": "Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...",
9
+ "publisher": {
10
+ "name": "DataCite"
11
+ },
12
+ "schema_version": "https://commonmeta.org/commonmeta_v1.0rc1.json",
13
+ "subjects": [
14
+ {
15
+ "subject": "Phylogeny"
16
+ },
17
+ {
18
+ "subject": "Malaria"
19
+ },
20
+ {
21
+ "subject": "Parasites"
22
+ },
23
+ {
24
+ "subject": "Taxonomy"
25
+ },
26
+ {
27
+ "subject": "Mitochondrial genome"
28
+ },
29
+ {
30
+ "subject": "Africa"
31
+ },
32
+ {
33
+ "subject": "Plasmodium"
34
+ }
35
+ ],
36
+ "title": "Eating your own Dog Food",
37
+ "url": "https://blog.datacite.org/eating-your-own-dog-food"
38
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "id": "https://doi.org/10.5063/f1m61h5x",
3
+ "type": "Software",
4
+ "contributors": [
5
+ {
6
+ "type": "Person",
7
+ "person": {
8
+ "id": "https://orcid.org/0000-0003-0077-4738",
9
+ "given_name": "Matt",
10
+ "family_name": "Jones",
11
+ "affiliations": [
12
+ {
13
+ "name": "NCEAS"
14
+ }
15
+ ]
16
+ },
17
+ "roles": [
18
+ "Author"
19
+ ]
20
+ },
21
+ {
22
+ "type": "Person",
23
+ "person": {
24
+ "id": "https://orcid.org/0000-0002-2192-403X",
25
+ "given_name": "Peter",
26
+ "family_name": "Slaughter",
27
+ "affiliations": [
28
+ {
29
+ "name": "NCEAS"
30
+ }
31
+ ]
32
+ },
33
+ "roles": [
34
+ "Author"
35
+ ]
36
+ },
37
+ {
38
+ "type": "Organization",
39
+ "organization": {
40
+ "name": "University of California, Santa Barbara"
41
+ },
42
+ "roles": [
43
+ "Author"
44
+ ]
45
+ }
46
+ ],
47
+ "date_published": "2016-05-27",
48
+ "date_updated": "2016-05-27",
49
+ "dates": {
50
+ "created": "2016-05-27"
51
+ },
52
+ "description": "Provides read and write access to data and metadata from the DataONE network of data repositories.Each DataONE repository implements a consistent repository application programming interface. Users call methods in R to access these remote repository functions, such as methods to query the metadata catalog, get access to metadata for particular data packages, and read the data objects from the data repository.Users can also insert and update data objects on repositories that support these methods.",
53
+ "license": {
54
+ "id": "Apache-2.0",
55
+ "title": "Apache License 2.0",
56
+ "url": "https://www.apache.org/licenses/LICENSE-2.0"
57
+ },
58
+ "publisher": {
59
+ "name": "https://cran.r-project.org"
60
+ },
61
+ "schema_version": "https://commonmeta.org/commonmeta_v1.0rc1.json",
62
+ "title": "R Interface to the DataONE REST API",
63
+ "url": "https://github.com/DataONEorg/rdataone",
64
+ "version": "2.0.0"
65
+ }