From 62afe10cf175b0370b5cf8f14f1c031a5fc443a0 Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Mon, 25 Nov 2024 13:53:15 +0100 Subject: [PATCH] fix parsing --- authorutils/authorutils.go | 8 + authorutils/authorutils_test.go | 2 + cmd/convert.go | 8 +- cmd/list.go | 12 +- cmd/push.go | 14 +- cmd/root.go | 6 + cmd/sample.go | 8 +- crossref/reader.go | 27 +- datacite/reader.go | 271 +- .../testdata/10.4230_lipics.tqc.2013.93.json | 326 +- datacite/testdata/10.5061_dryad.8515.json | 761 +- datacite/testdata/10.5438_zhyx-n122.json | 265 +- datacite/testdata/10.6071_z7wc73.json | 996 +- .../testdata/10.6084_m9.figshare.1449060.json | 261 +- datacite/testdata/sample.json | 15257 ++++++++++++++++ dateutils/dateutils.go | 28 + dateutils/dateutils_test.go | 7 + inveniordm/reader.go | 729 +- inveniordm/writer.go | 31 +- inveniordm/writer_test.go | 49 +- schemautils/schemas/commonmeta_v0.15.json | 1 + utils/utils.go | 12 + 22 files changed, 18434 insertions(+), 645 deletions(-) create mode 100644 datacite/testdata/sample.json diff --git a/authorutils/authorutils.go b/authorutils/authorutils.go index 3a5d757..7f4dc13 100644 --- a/authorutils/authorutils.go +++ b/authorutils/authorutils.go @@ -85,6 +85,14 @@ func ParseName(name string) (string, string, string) { } } + // check for comma separated names, e.g. "Doe, John" + comma := strings.Split(name, ", ") + if len(comma) > 1 { + givenName = comma[1] + familyName = comma[0] + return givenName, familyName, "" + } + // default to the last word as family name words := strings.Split(name, " ") if len(words) == 1 { diff --git a/authorutils/authorutils_test.go b/authorutils/authorutils_test.go index a2f7a06..40476b6 100644 --- a/authorutils/authorutils_test.go +++ b/authorutils/authorutils_test.go @@ -38,7 +38,9 @@ func TestParseName(t *testing.T) { } testCases := []testCase{ {input: "John Doe", givenName: "John", familyName: "Doe", name: ""}, + {input: "Doe, John", givenName: "John", familyName: "Doe", name: ""}, {input: "Rainer Maria Rilke", givenName: "Rainer Maria", familyName: "Rilke", name: ""}, + {input: "Rilke, Rainer Maria", givenName: "Rainer Maria", familyName: "Rilke", name: ""}, {input: "Harvard University", givenName: "", familyName: "", name: "Harvard University"}, {input: "LiberateScience", givenName: "", familyName: "", name: "LiberateScience"}, {input: "Jane Smith, MD", givenName: "Jane", familyName: "Smith", name: ""}, diff --git a/cmd/convert.go b/cmd/convert.go index 72ee50a..1cb0262 100644 --- a/cmd/convert.go +++ b/cmd/convert.go @@ -30,8 +30,8 @@ var convertCmd = &cobra.Command{ Use: "convert", Short: "Convert scholarly metadata from one format to another", Long: `Convert scholarly metadata between formats. Currently -supported input formats are Crossref and DataCite DOIs, currently -the only supported output format is Commonmeta. Example usage: +supported input formats are Crossref (default) and DataCite DOIs, currently +supported output format and Commonmeta (default). Example usage: commonmeta 10.5555/12345678`, @@ -88,6 +88,8 @@ commonmeta 10.5555/12345678`, data, err = crossrefxml.Fetch(id) } else if from == "datacite" { data, err = datacite.Fetch(id) + } else if from == "inveniordm" { + data, err = inveniordm.Fetch(id) } else if from == "jsonfeed" { data, err = jsonfeed.Fetch(id) } else { @@ -103,6 +105,8 @@ commonmeta 10.5555/12345678`, data, err = crossrefxml.Load(str) } else if from == "datacite" { data, err = datacite.Load(str) + } else if from == "inveniordm" { + data, err = inveniordm.Load(str) } else if from == "csl" { data, err = csl.Load(str) } else { diff --git a/cmd/list.go b/cmd/list.go index 258d6dc..431d4d1 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -50,6 +50,12 @@ var listCmd = &cobra.Command{ client_, _ := cmd.Flags().GetString("client") member, _ := cmd.Flags().GetString("member") type_, _ := cmd.Flags().GetString("type") + year, _ := cmd.Flags().GetString("year") + language, _ := cmd.Flags().GetString("language") + orcid, _ := cmd.Flags().GetString("orcid") + ror, _ := cmd.Flags().GetString("ror") + fromHost, _ := cmd.Flags().GetString("from-host") + community, _ := cmd.Flags().GetString("community") hasORCID, _ := cmd.Flags().GetBool("has-orcid") hasROR, _ := cmd.Flags().GetBool("has-ror-id") hasReferences, _ := cmd.Flags().GetBool("has-references") @@ -89,9 +95,11 @@ var listCmd = &cobra.Command{ } else if str != "" && from == "csl" { data, err = csl.LoadAll(str) } else if from == "crossref" { - data, err = crossref.FetchAll(number, member, type_, sample, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) + data, err = crossref.FetchAll(number, member, type_, sample, year, ror, orcid, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) } else if from == "datacite" { - data, err = datacite.FetchAll(number, client_, type_, sample) + data, err = datacite.FetchAll(number, client_, type_, sample, year, language, orcid, ror, hasORCID, hasROR, hasRelation, hasAbstract, hasAward, hasLicense) + } else if from == "inveniordm" { + data, err = inveniordm.FetchAll(number, fromHost, community) } else { fmt.Println("Please provide a valid input format") return diff --git a/cmd/push.go b/cmd/push.go index 197f39f..6677ff3 100644 --- a/cmd/push.go +++ b/cmd/push.go @@ -45,6 +45,12 @@ commonmeta push --sample -f crossref -t inveniordm -h rogue-scholar.org --token client_, _ := cmd.Flags().GetString("client") member, _ := cmd.Flags().GetString("member") type_, _ := cmd.Flags().GetString("type") + year, _ := cmd.Flags().GetString("year") + language, _ := cmd.Flags().GetString("language") + orcid, _ := cmd.Flags().GetString("orcid") + ror, _ := cmd.Flags().GetString("ror") + fromHost, _ := cmd.Flags().GetString("from-host") + community, _ := cmd.Flags().GetString("community") hasORCID, _ := cmd.Flags().GetBool("has-orcid") hasROR, _ := cmd.Flags().GetBool("has-ror-id") hasReferences, _ := cmd.Flags().GetBool("has-references") @@ -78,9 +84,11 @@ commonmeta push --sample -f crossref -t inveniordm -h rogue-scholar.org --token } if sample && from == "crossref" { - data, err = crossref.FetchAll(number, member, type_, sample, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) + data, err = crossref.FetchAll(number, member, type_, sample, year, ror, orcid, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) } else if sample && from == "datacite" { - data, err = datacite.FetchAll(number, client_, type_, sample) + data, err = datacite.FetchAll(number, client_, type_, sample, year, language, orcid, ror, hasORCID, hasROR, hasRelation, hasAbstract, hasAward, hasLicense) + } else if from == "inveniordm" { + data, err = inveniordm.FetchAll(number, fromHost, community) } else if str != "" && from == "commonmeta" { data, err = commonmeta.LoadAll(str) } else if str != "" && from == "crossref" { @@ -89,6 +97,8 @@ commonmeta push --sample -f crossref -t inveniordm -h rogue-scholar.org --token data, err = crossrefxml.LoadAll(str) } else if str != "" && from == "datacite" { data, err = datacite.LoadAll(str) + } else if str != "" && from == "inveniordm" { + data, err = inveniordm.LoadAll(str) } else if str != "" && from == "jsonfeed" { data, err = jsonfeed.LoadAll(str) } else if str != "" && from == "csl" { diff --git a/cmd/root.go b/cmd/root.go index 4f25e08..95654d6 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -40,6 +40,12 @@ func init() { rootCmd.PersistentFlags().StringP("client", "", "", "DataCite client ID") rootCmd.PersistentFlags().StringP("member", "", "", "Crossref member ID") rootCmd.PersistentFlags().StringP("type", "", "", "work type") + rootCmd.PersistentFlags().StringP("year", "", "", "work publication year") + rootCmd.PersistentFlags().StringP("language", "", "", "work language") + rootCmd.PersistentFlags().StringP("orcid", "", "", "ORCID ID") + rootCmd.PersistentFlags().StringP("ror", "", "", "ROR ID") + rootCmd.PersistentFlags().StringP("from-host", "", "", "from InvenioRDM host") + rootCmd.PersistentFlags().StringP("community", "", "", "InvenioRDM community slug") rootCmd.PersistentFlags().BoolP("sample", "", false, "random sample") rootCmd.PersistentFlags().BoolP("has-orcid", "", false, "has one or more ORCID IDs") rootCmd.PersistentFlags().BoolP("has-ror-id", "", false, "has one or more ROR IDs") diff --git a/cmd/sample.go b/cmd/sample.go index 786ea8c..cca1428 100644 --- a/cmd/sample.go +++ b/cmd/sample.go @@ -40,6 +40,10 @@ var sampleCmd = &cobra.Command{ client_, _ := cmd.Flags().GetString("client") member, _ := cmd.Flags().GetString("member") type_, _ := cmd.Flags().GetString("type") + year, _ := cmd.Flags().GetString("year") + language, _ := cmd.Flags().GetString("language") + orcid, _ := cmd.Flags().GetString("orcid") + ror, _ := cmd.Flags().GetString("ror") hasORCID, _ := cmd.Flags().GetBool("has-orcid") hasROR, _ := cmd.Flags().GetBool("has-ror-id") hasReferences, _ := cmd.Flags().GetBool("has-references") @@ -57,9 +61,9 @@ var sampleCmd = &cobra.Command{ var err error sample := true if from == "crossref" { - data, err = crossref.FetchAll(number, member, type_, sample, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) + data, err = crossref.FetchAll(number, member, type_, sample, year, ror, orcid, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) } else if from == "datacite" { - data, err = datacite.FetchAll(number, client_, type_, sample) + data, err = datacite.FetchAll(number, client_, type_, sample, year, language, orcid, ror, hasORCID, hasROR, hasRelation, hasAbstract, hasAward, hasLicense) } if err != nil { fmt.Println(err) diff --git a/crossref/reader.go b/crossref/reader.go index 5307e00..8befcde 100644 --- a/crossref/reader.go +++ b/crossref/reader.go @@ -271,10 +271,10 @@ func Fetch(str string) (commonmeta.Data, error) { } // FetchAll gets the metadata for a list of works from the Crossref API and converts it to the Commonmeta format -func FetchAll(number int, member string, type_ string, sample bool, hasORCID bool, hasROR bool, hasReferences bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool, hasArchive bool) ([]commonmeta.Data, error) { +func FetchAll(number int, member string, type_ string, sample bool, year string, ror string, orcid string, hasORCID bool, hasROR bool, hasReferences bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool, hasArchive bool) ([]commonmeta.Data, error) { var data []commonmeta.Data - content, err := GetAll(number, member, type_, sample, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) + content, err := GetAll(number, member, type_, sample, year, ror, orcid, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) if err != nil { return data, err } @@ -333,7 +333,7 @@ func Get(pid string) (Content, error) { } // GetAll gets the metadata for a list of works from the Crossref API -func GetAll(number int, member string, type_ string, sample bool, hasORCID bool, hasROR bool, hasReferences bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool, hasArchive bool) ([]Content, error) { +func GetAll(number int, member string, type_ string, sample bool, year string, ror string, orcid string, hasORCID bool, hasROR bool, hasReferences bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool, hasArchive bool) ([]Content, error) { // the envelope for the JSON response from the Crossref API type Response struct { Status string `json:"status"` @@ -351,7 +351,7 @@ func GetAll(number int, member string, type_ string, sample bool, hasORCID bool, client := &http.Client{ Timeout: 20 * time.Second, } - url := QueryURL(number, member, type_, sample, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) + url := QueryURL(number, member, type_, sample, year, ror, orcid, hasORCID, hasROR, hasReferences, hasRelation, hasAbstract, hasAward, hasLicense, hasArchive) req, err := http.NewRequest(http.MethodGet, url, nil) v := "0.1" u := "info@front-matter.io" @@ -774,7 +774,7 @@ func ReadAll(content []Content) ([]commonmeta.Data, error) { } // QueryURL returns the URL for the Crossref API query -func QueryURL(number int, member string, _type string, sample bool, hasORCID bool, hasROR bool, hasReferences bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool, hasArchive bool) string { +func QueryURL(number int, member string, _type string, sample bool, year string, ror string, orcid string, hasORCID bool, hasROR bool, hasReferences bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool, hasArchive bool) string { types := []string{ "book", "book-chapter", @@ -826,6 +826,23 @@ func QueryURL(number int, member string, _type string, sample bool, hasORCID boo if _type != "" && slices.Contains(types, _type) { filters = append(filters, "type:"+_type) } + if ror != "" { + r, _ := utils.ValidateROR(ror) + if r != "" { + filters = append(filters, "ror-id:"+r) + } + } + if orcid != "" { + o, _ := utils.ValidateORCID(orcid) + if o != "" { + filters = append(filters, "orcid:"+o) + } + } + if year != "" { + filters = append(filters, "from-pub-date:"+year+"-01-01") + filters = append(filters, "until-pub-date:"+year+"-12-31") + } + if hasORCID { filters = append(filters, "has-orcid:true") } diff --git a/datacite/reader.go b/datacite/reader.go index f9178ca..4b3e1e3 100644 --- a/datacite/reader.go +++ b/datacite/reader.go @@ -16,6 +16,7 @@ import ( "time" "github.com/front-matter/commonmeta/commonmeta" + "github.com/front-matter/commonmeta/dateutils" "github.com/front-matter/commonmeta/doiutils" "github.com/front-matter/commonmeta/utils" @@ -51,12 +52,18 @@ type Datacite struct { // Content represents the DataCite metadata returned from DataCite. The type is more // flexible than the Datacite type, allowing for different formats of some metadata. // Affiliation can be string or struct, PublicationYear can be int or string. Publisher can be string or struct. +// GeoLocationPoint can be float64 or string. type Content struct { *Datacite - Creators []ContentContributor `json:"creators"` - Contributors []ContentContributor `json:"contributors"` - PublicationYear json.RawMessage `json:"publicationYear"` - Publisher json.RawMessage `json:"publisher"` + Creators []ContentContributor `json:"creators"` + Contributors []ContentContributor `json:"contributors"` + PublicationYear interface{} `json:"publicationYear"` + Publisher json.RawMessage `json:"publisher"` + GeoLocations []GeoLocationInterface `json:"geoLocations,omitempty"` +} + +type Data struct { + Attributes Content `json:"attributes"` } // ContentContributor represents a creator or contributor in the DataCite JSONAPI response. @@ -118,6 +125,7 @@ type FundingReference struct { FunderIdentifier string `json:"funderIdentifier,omitempty"` FunderIdentifierType string `json:"funderIdentifierType,omitempty"` AwardNumber string `json:"awardNumber,omitempty"` + AwardTitle string `json:"awardTitle,omitempty"` AwardURI string `json:"awardUri,omitempty"` } @@ -139,6 +147,26 @@ type GeoLocationPoint struct { PointLatitude float64 `json:"pointLatitude,string,omitempty"` } +type GeoLocationInterface struct { + GeoLocationPointInterface `json:"geoLocationPoint,omitempty"` + GeoLocationBoxInterface `json:"geoLocationBox,omitempty"` + GeoLocationPlace string `json:"geoLocationPlace,omitempty"` +} + +type GeoLocationBoxInterface struct { + WestBoundLongitude interface{} `json:"westBoundLongitude,string,omitempty"` + EastBoundLongitude interface{} `json:"eastBoundLongitude,string,omitempty"` + SouthBoundLatitude interface{} `json:"southBoundLatitude,string,omitempty"` + NorthBoundLatitude interface{} `json:"northBoundLatitude,string,omitempty"` +} + +type GeoLocationPointInterface struct { + PointLongitude interface{} `json:"pointLongitude,string,omitempty"` + PointLatitude interface{} `json:"pointLatitude,string,omitempty"` +} + +type GeoCoordinate float64 + type NameIdentifier struct { NameIdentifier string `json:"nameIdentifier,omitempty"` NameIdentifierScheme string `json:"nameIdentifierScheme,omitempty"` @@ -210,7 +238,7 @@ var DCToCMMappings = map[string]string{ "OutputManagementPlan": "OutputManagementPlan", "PeerReview": "PeerReview", "PhysicalObject": "PhysicalObject", - "Poster": "Presentation", + "Poster": "Poster", "Preprint": "Article", "Report": "Report", "Service": "Service", @@ -245,6 +273,8 @@ var CMToDCMappings = map[string]string{ "Performance": "Audiovisual", "PersonalCommunication": "Text", "Post": "Text", + "Poster": "Poster", + "Presentation": "Audiovisual", "ProceedingsArticle": "ConferencePaper", "Proceedings": "ConferenceProceeding", "Report": "Report", @@ -275,9 +305,29 @@ func Fetch(str string) (commonmeta.Data, error) { } // FetchAll gets the metadata for a list of works from the DataCite API and returns Commonmeta metadata. -func FetchAll(number int, sample bool) ([]commonmeta.Data, error) { +func FetchAll(number int, client_ string, type_ string, sample bool, year string, language string, orcid string, ror string, hasORCID bool, hasROR bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool) ([]commonmeta.Data, error) { var data []commonmeta.Data - content, err := GetAll(number, sample) + + // check format of client ID + // In lower case, with dots separating the provider and client + // example: "cern.zenodo" + if client_ != "" { + if !strings.Contains(client_, ".") { + client_ = "" + } + client_ = strings.ToLower(client_) + } + + // check type_ against the list of supported DataCite resource-type-general + // in lower case, with the words in kebab-case + // example: "physical-object" + if type_ != "" { + if DCToCMMappings[utils.KebabCaseToPascalCase(type_)] == "" { + type_ = "" + } + } + + content, err := GetAll(number, client_, type_, sample, year, language, orcid, ror, hasORCID, hasROR, hasRelation, hasAbstract, hasAward, hasLicense) if err != nil { return data, err } @@ -309,13 +359,24 @@ func Load(filename string) (commonmeta.Data, error) { // LoadAll loads a list of DataCite metadata from a JSON string and returns Commonmeta metadata. func LoadAll(filename string) ([]commonmeta.Data, error) { var data []commonmeta.Data + var content []Content + var err error - response, err := ReadJSONLines(filename) - if err != nil { - return data, err + extension := path.Ext(filename) + if extension == ".jsonl" || extension == ".jsonlines" { + content, err = ReadJSONLines(filename) + if err != nil { + return data, err + } + } else if extension == ".json" { + content, err = ReadJSONList(filename) + if err != nil { + return data, err + } + } else { + return data, errors.New("unsupported file format") } - - data, err = ReadAll(response) + data, err = ReadAll(content) if err != nil { return data, err } @@ -326,10 +387,7 @@ func LoadAll(filename string) ([]commonmeta.Data, error) { func Get(id string) (Content, error) { // the envelope for the JSON response from the DataCite API type Response struct { - Data struct { - ID string `json:"id"` - Attributes Content `json:"attributes"` - } `json:"data"` + Data Data `json:"data"` } var response Response @@ -419,40 +477,45 @@ func Read(content Content) (commonmeta.Data, error) { for _, v := range content.Dates { if v.DateType == "Accepted" { - data.Date.Accepted = v.Date + data.Date.Accepted = dateutils.ParseDateTime(v.Date) } if v.DateType == "Available" { - data.Date.Available = v.Date + data.Date.Available = dateutils.ParseDateTime(v.Date) } if v.DateType == "Collected" { - data.Date.Collected = v.Date + data.Date.Collected = dateutils.ParseDateTime(v.Date) } if v.DateType == "Created" { - data.Date.Created = v.Date + data.Date.Created = dateutils.ParseDateTime(v.Date) } if v.DateType == "Issued" { - data.Date.Published = v.Date + data.Date.Published = dateutils.ParseDateTime(v.Date) } else if v.DateType == "Published" { - data.Date.Published = v.Date + data.Date.Published = dateutils.ParseDateTime(v.Date) } if v.DateType == "Submitted" { - data.Date.Submitted = v.Date + data.Date.Submitted = dateutils.ParseDateTime(v.Date) } if v.DateType == "Updated" { - data.Date.Updated = v.Date + data.Date.Updated = dateutils.ParseDateTime(v.Date) } if v.DateType == "Valid" { data.Date.Valid = v.Date } if v.DateType == "Withdrawn" { - data.Date.Withdrawn = v.Date + data.Date.Withdrawn = dateutils.ParseDateTime(v.Date) } if v.DateType == "Other" { - data.Date.Other = v.Date + data.Date.Other = dateutils.ParseDateTime(v.Date) } } - if data.Date.Published == "" { - data.Date.Published = string(content.PublicationYear) + if data.Date.Published == "" && content.PublicationYear != nil { + switch v := content.PublicationYear.(type) { + case string: + data.Date.Published = v + case float64: + data.Date.Published = fmt.Sprintf("%v", v) + } } for _, v := range content.Descriptions { @@ -479,21 +542,30 @@ func Read(content Content) (commonmeta.Data, error) { FunderIdentifierType: v.FunderIdentifierType, FunderName: v.FunderName, AwardNumber: v.AwardNumber, + AwardTitle: v.AwardTitle, AwardURI: v.AwardURI, }) } + + // GeoLocationPoint can be float64 or string for _, v := range content.GeoLocations { + pointLongitude := ParseGeoCoordinate(v.GeoLocationPointInterface.PointLongitude) + pointLatitude := ParseGeoCoordinate(v.GeoLocationPointInterface.PointLatitude) + westBoundLongitude := ParseGeoCoordinate(v.GeoLocationBoxInterface.WestBoundLongitude) + eastBoundLongitude := ParseGeoCoordinate(v.GeoLocationBoxInterface.EastBoundLongitude) + southBoundLatitude := ParseGeoCoordinate(v.GeoLocationBoxInterface.SouthBoundLatitude) + northBoundLatitude := ParseGeoCoordinate(v.GeoLocationBoxInterface.NorthBoundLatitude) geoLocation := commonmeta.GeoLocation{ GeoLocationPlace: v.GeoLocationPlace, GeoLocationPoint: commonmeta.GeoLocationPoint{ - PointLongitude: v.GeoLocationPoint.PointLongitude, - PointLatitude: v.GeoLocationPoint.PointLatitude, + PointLongitude: pointLongitude, + PointLatitude: pointLatitude, }, GeoLocationBox: commonmeta.GeoLocationBox{ - WestBoundLongitude: v.GeoLocationBox.WestBoundLongitude, - EastBoundLongitude: v.GeoLocationBox.EastBoundLongitude, - SouthBoundLatitude: v.GeoLocationBox.SouthBoundLatitude, - NorthBoundLatitude: v.GeoLocationBox.NorthBoundLatitude, + WestBoundLongitude: westBoundLongitude, + EastBoundLongitude: eastBoundLongitude, + SouthBoundLatitude: southBoundLatitude, + NorthBoundLatitude: northBoundLatitude, }, } data.GeoLocations = append(data.GeoLocations, geoLocation) @@ -650,8 +722,6 @@ func GetContributor(v ContentContributor) commonmeta.Contributor { } else if ni.NameIdentifierScheme == "ROR" { id = ni.NameIdentifier t = "Organization" - } else { - id = ni.NameIdentifier } } name := v.Name @@ -718,11 +788,13 @@ func GetContributor(v ContentContributor) commonmeta.Contributor { } // GetAll gets the metadata for a list of works from the DataCite API -func GetAll(number int, sample bool) ([]Content, error) { - // the envelope for the JSON response from the DataCite API +func GetAll(number int, client_ string, type_ string, sample bool, year string, language string, orcid string, ror string, hasORCID bool, hasROR bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool) ([]Content, error) { + var content []Content + type Response struct { - Data []Content `json:"data"` + Data []Data `json:"data"` } + if number > 100 { number = 100 } @@ -730,28 +802,31 @@ func GetAll(number int, sample bool) ([]Content, error) { client := &http.Client{ Timeout: 30 * time.Second, } - url := QueryURL(number, sample) + url := QueryURL(number, client_, type_, sample, year, language, orcid, ror, hasORCID, hasROR, hasRelation, hasAbstract, hasAward, hasLicense) req, err := http.NewRequest(http.MethodGet, url, nil) if err != nil { - log.Fatalln(err) + return content, err } resp, err := client.Do(req) if err != nil { - return nil, err + return content, err } if resp.StatusCode >= 400 { - return nil, errors.New(resp.Status) + return content, errors.New(resp.Status) } defer resp.Body.Close() body, err := io.ReadAll(resp.Body) if err != nil { - return nil, err + return content, err } err = json.Unmarshal(body, &response) if err != nil { fmt.Println("error:", err) } - return response.Data, nil + for _, v := range response.Data { + content = append(content, v.Attributes) + } + return content, nil } // ReadAll reads a list of DataCite JSON responses and returns a list of works in Commonmeta format @@ -768,17 +843,73 @@ func ReadAll(content []Content) ([]commonmeta.Data, error) { } // QueryURL returns the URL for the DataCite API query -func QueryURL(number int, sample bool) string { - if sample { +func QueryURL(number int, client_ string, type_ string, sample bool, year string, language string, orcid string, ror string, hasORCID bool, hasROR bool, hasRelation bool, hasAbstract bool, hasAward bool, hasLicense bool) string { + if sample && number == 0 { number = 10 } - url := "https://api.datacite.org/dois?random=true&page[size]=" + strconv.Itoa(number) + url := "https://api.datacite.org/dois?page[size]=" + strconv.Itoa(number) + if sample { + url += "&random=true" + } + if client_ != "" { + url += "&client-id=" + client_ + } + if type_ != "" { + url += "&resource-type-id=" + type_ + } + if ror != "" { + r, _ := utils.ValidateROR(ror) + if r != "" { + url += "&affiliation-id=" + r + } + } + var query []string + if year != "" { + query = append(query, "publicationYear:"+year) + } + if language != "" { + query = append(query, "language:"+language) + } + if orcid != "" { + o, _ := utils.ValidateORCID(orcid) + if o != "" { + query = append(query, "creators.nameIdentifiers.nameIdentifier:"+o) + } + } + if hasORCID { + query = append(query, "creators.nameIdentifiers.nameIdentifierScheme:ORCID") + } + if hasROR { + query = append(query, "creators.affiliation.affiliationIdentifierScheme:ROR") + } + if hasRelation { + query = append(query, "relatedIdentifiers.relationType:*") + } + if hasAbstract { + query = append(query, "descriptions.descriptionType:Abstract:*") + } + if hasAward { + query = append(query, "fundingReferences.funderIdentifier:*") + } + if hasLicense { + query = append(query, "ightsList.rightsIdentifierScheme:SPDX") + } + if len(query) > 0 { + url += "&query=" + strings.Join(query, "%20AND%20") + if hasROR { + url += "&affiliation=true" + } + } return url } // ReadJSON reads JSON from a file and unmarshals it func ReadJSON(filename string) (Content, error) { + type Response struct { + Data Data `json:"data"` + } var content Content + var response Response extension := path.Ext(filename) if extension != ".json" { @@ -791,10 +922,39 @@ func ReadJSON(filename string) (Content, error) { defer file.Close() decoder := json.NewDecoder(file) - err = decoder.Decode(&content) + err = decoder.Decode(&response) if err != nil { return content, err } + content = response.Data.Attributes + return content, nil +} + +// ReadJSONList reads JSON list from a file and unmarshals it +func ReadJSONList(filename string) ([]Content, error) { + type Response struct { + Data []Data `json:"data"` + } + var response Response + var content []Content + + extension := path.Ext(filename) + if extension != ".json" { + return content, errors.New("invalid file extension") + } + file, err := os.Open(filename) + if err != nil { + return content, errors.New("error reading file") + } + defer file.Close() + decoder := json.NewDecoder(file) + err = decoder.Decode(&response) + if err != nil { + return content, err + } + for _, v := range response.Data { + content = append(content, v.Attributes) + } return content, nil } @@ -825,3 +985,16 @@ func ReadJSONLines(filename string) ([]Content, error) { return response, nil } + +func ParseGeoCoordinate(gc interface{}) float64 { + // type GeoCoordinate float64 + // var geoCoordinate GeoCoordinate + // switch g := gc.(type) { + // case float64: + // geoCoordinate = g + // case string: + // geoCoordinate, _ = strconv.ParseFloat(g, 64) + // } + // return geoCoordinate + return 0 +} diff --git a/datacite/testdata/10.4230_lipics.tqc.2013.93.json b/datacite/testdata/10.4230_lipics.tqc.2013.93.json index 788f014..331740c 100644 --- a/datacite/testdata/10.4230_lipics.tqc.2013.93.json +++ b/datacite/testdata/10.4230_lipics.tqc.2013.93.json @@ -1,71 +1,263 @@ { - "id": "https://doi.org/10.4230/lipics.tqc.2013.93", - "type": "ProceedingsArticle", - "contributors": [ - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Nathaniel", - "familyName": "Johnston" + "data": { + "id": "10.4230/lipics.tqc.2013.93", + "type": "dois", + "attributes": { + "doi": "10.4230/lipics.tqc.2013.93", + "prefix": "10.4230", + "suffix": "lipics.tqc.2013.93", + "identifiers": [ + { + "identifier": "urn:nbn:de:0030-drops-43173", + "identifierType": "URN" + } + ], + "alternateIdentifiers": [ + { + "alternateIdentifierType": "URN", + "alternateIdentifier": "urn:nbn:de:0030-drops-43173" + } + ], + "creators": [ + { + "name": "Johnston, Nathaniel", + "nameType": "Personal", + "givenName": "Nathaniel", + "familyName": "Johnston", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "lang": "en", + "title": "The Minimum Size of Qubit Unextendible Product Bases" + } + ], + "publisher": "Schloss Dagstuhl – Leibniz-Zentrum für Informatik", + "container": {}, + "publicationYear": 2013, + "subjects": [ + { + "lang": "en", + "subject": "unextendible product basis; quantum entanglement; graph factorization" + } + ], + "contributors": [ + { + "name": "Severini, Simone", + "nameType": "Personal", + "givenName": "Simone", + "familyName": "Severini", + "contributorType": "Editor", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Brandao, Fernando", + "nameType": "Personal", + "givenName": "Fernando", + "familyName": "Brandao", + "contributorType": "Editor", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "dates": [ + { + "date": "2013", + "dateType": "Issued" + }, + { + "date": "2013-11-13", + "dateType": "Available" + }, + { + "date": "2013-11-13", + "dateType": "Created" + }, + { + "date": "2013-11-13", + "dateType": "Copyrighted" + } + ], + "language": "en", + "types": { + "ris": "CPAPER", + "bibtex": "inproceedings", + "citeproc": "", + "schemaOrg": "Article", + "resourceTypeGeneral": "ConferencePaper" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.4230/LIPIcs.TQC.2013", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "978-3-939897-55-2", + "relatedIdentifierType": "ISBN" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "1868-8969", + "relatedIdentifierType": "ISSN" + } + ], + "relatedItems": [ + { + "number": "6", + "titles": [ + { + "title": "LIPIcs, Volume 22, TQC 2013" + }, + { + "title": "8th Conference on the Theory of Quantum Computation, Communication and Cryptography (TQC 2013)", + "titleType": "Subtitle" + } + ], + "volume": "22", + "lastPage": "105", + "firstPage": "93", + "publisher": "Schloss Dagstuhl – Leibniz-Zentrum für Informatik", + "contributors": [ + { + "name": "Severini, Simone", + "nameType": "Personal", + "givenName": "Simone", + "familyName": "Severini", + "contributorType": "Editor" + }, + { + "name": "Brandao, Fernando", + "nameType": "Personal", + "givenName": "Fernando", + "familyName": "Brandao", + "contributorType": "Editor" + } + ], + "relationType": "IsPublishedIn", + "publicationYear": "2013", + "relatedItemType": "ConferenceProceeding", + "relatedItemIdentifier": { + "relatedItemIdentifier": "10.4230/LIPIcs.TQC.2013", + "relatedItemIdentifierType": "DOI" + } + }, + { + "titles": [ + { + "title": "Leibniz International Proceedings in Informatics (LIPIcs)" + } + ], + "volume": "22", + "publisher": "Schloss Dagstuhl – Leibniz-Zentrum für Informatik", + "relationType": "IsPublishedIn", + "publicationYear": "2013", + "relatedItemType": "Collection", + "relatedItemIdentifier": { + "relatedItemIdentifier": "1868-8969", + "relatedItemIdentifierType": "ISSN" + } + } + ], + "sizes": ["13 pages", "527385 bytes"], + "formats": ["application/pdf"], + "version": null, + "rightsList": [ + { + "lang": "en", + "rights": "Creative Commons Attribution 3.0 Unported license", + "rightsUri": "https://creativecommons.org/licenses/by/3.0/legalcode", + "rightsIdentifier": "cc by 3.0" + }, + { + "rights": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "lang": "en", + "description": "We investigate the problem of constructing unextendible product bases in the qubit case - that is, when each local dimension equals 2. The cardinality of the smallest unextendible product basis is known in all qubit cases except when the number of parties is a multiple of 4 greater than 4 itself. We construct small unextendible product bases in all of the remaining open cases, and we use graph theory techniques to produce a computer-assisted proof that our constructions are indeed the smallest possible.", + "descriptionType": "Abstract" + }, + { + "lang": "en", + "description": "LIPIcs, Vol. 22, 8th Conference on the Theory of Quantum Computation, Communication and Cryptography (TQC 2013), pages 93-105", + "descriptionType": "SeriesInformation" + } + ], + "geoLocations": [], + "fundingReferences": [], + "xml": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuNDIzMC9MSVBJQ1MuVFFDLjIwMTMuOTM8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiPkpvaG5zdG9uLCBOYXRoYW5pZWw8L2NyZWF0b3JOYW1lPgogICAgICA8Z2l2ZW5OYW1lPk5hdGhhbmllbDwvZ2l2ZW5OYW1lPgogICAgICA8ZmFtaWx5TmFtZT5Kb2huc3RvbjwvZmFtaWx5TmFtZT4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXM+CiAgICA8dGl0bGUgeG1sOmxhbmc9ImVuIj5UaGUgTWluaW11bSBTaXplIG9mIFF1Yml0IFVuZXh0ZW5kaWJsZSBQcm9kdWN0IEJhc2VzPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPlNjaGxvc3MgRGFnc3R1aGwg4oCTIExlaWJuaXotWmVudHJ1bSBmw7xyIEluZm9ybWF0aWs8L3B1Ymxpc2hlcj4KICA8cHVibGljYXRpb25ZZWFyPjIwMTM8L3B1YmxpY2F0aW9uWWVhcj4KICA8cmVzb3VyY2VUeXBlIHJlc291cmNlVHlwZUdlbmVyYWw9IkNvbmZlcmVuY2VQYXBlciIvPgogIDxzdWJqZWN0cz4KICAgIDxzdWJqZWN0IHhtbDpsYW5nPSJlbiI+dW5leHRlbmRpYmxlIHByb2R1Y3QgYmFzaXM7IHF1YW50dW0gZW50YW5nbGVtZW50OyBncmFwaCBmYWN0b3JpemF0aW9uPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkVkaXRvciI+CiAgICAgIDxjb250cmlidXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5TZXZlcmluaSwgU2ltb25lPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+U2ltb25lPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPlNldmVyaW5pPC9mYW1pbHlOYW1lPgogICAgPC9jb250cmlidXRvcj4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkVkaXRvciI+CiAgICAgIDxjb250cmlidXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CcmFuZGFvLCBGZXJuYW5kbzwvY29udHJpYnV0b3JOYW1lPgogICAgICA8Z2l2ZW5OYW1lPkZlcm5hbmRvPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJyYW5kYW88L2ZhbWlseU5hbWU+CiAgICA8L2NvbnRyaWJ1dG9yPgogIDwvY29udHJpYnV0b3JzPgogIDxkYXRlcz4KICAgIDxkYXRlIGRhdGVUeXBlPSJJc3N1ZWQiPjIwMTM8L2RhdGU+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iQXZhaWxhYmxlIj4yMDEzLTExLTEzPC9kYXRlPgogICAgPGRhdGUgZGF0ZVR5cGU9IkNyZWF0ZWQiPjIwMTMtMTEtMTM8L2RhdGU+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iQ29weXJpZ2h0ZWQiPjIwMTMtMTEtMTM8L2RhdGU+CiAgPC9kYXRlcz4KICA8bGFuZ3VhZ2U+ZW48L2xhbmd1YWdlPgogIDxhbHRlcm5hdGVJZGVudGlmaWVycz4KICAgIDxhbHRlcm5hdGVJZGVudGlmaWVyIGFsdGVybmF0ZUlkZW50aWZpZXJUeXBlPSJVUk4iPnVybjpuYm46ZGU6MDAzMC1kcm9wcy00MzE3MzwvYWx0ZXJuYXRlSWRlbnRpZmllcj4KICA8L2FsdGVybmF0ZUlkZW50aWZpZXJzPgogIDxyZWxhdGVkSWRlbnRpZmllcnM+CiAgICA8cmVsYXRlZElkZW50aWZpZXIgcmVsYXRlZElkZW50aWZpZXJUeXBlPSJET0kiIHJlbGF0aW9uVHlwZT0iSXNQYXJ0T2YiPjEwLjQyMzAvTElQSWNzLlRRQy4yMDEzPC9yZWxhdGVkSWRlbnRpZmllcj4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IklTQk4iIHJlbGF0aW9uVHlwZT0iSXNQYXJ0T2YiPjk3OC0zLTkzOTg5Ny01NS0yPC9yZWxhdGVkSWRlbnRpZmllcj4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IklTU04iIHJlbGF0aW9uVHlwZT0iSXNQYXJ0T2YiPjE4NjgtODk2OTwvcmVsYXRlZElkZW50aWZpZXI+CiAgPC9yZWxhdGVkSWRlbnRpZmllcnM+CiAgPHJlbGF0ZWRJdGVtcz4KICAgIDxyZWxhdGVkSXRlbSByZWxhdGVkSXRlbVR5cGU9IkNvbmZlcmVuY2VQcm9jZWVkaW5nIiByZWxhdGlvblR5cGU9IklzUHVibGlzaGVkSW4iPgogICAgICA8cmVsYXRlZEl0ZW1JZGVudGlmaWVyIHJlbGF0ZWRJdGVtSWRlbnRpZmllclR5cGU9IkRPSSI+MTAuNDIzMC9MSVBJY3MuVFFDLjIwMTM8L3JlbGF0ZWRJdGVtSWRlbnRpZmllcj4KICAgICAgPHRpdGxlcz4KICAgICAgICA8dGl0bGU+TElQSWNzLCBWb2x1bWUgMjIsIFRRQyAyMDEzPC90aXRsZT4KICAgICAgICA8dGl0bGUgdGl0bGVUeXBlPSJTdWJ0aXRsZSI+OHRoIENvbmZlcmVuY2Ugb24gdGhlIFRoZW9yeSBvZiBRdWFudHVtIENvbXB1dGF0aW9uLCBDb21tdW5pY2F0aW9uIGFuZCBDcnlwdG9ncmFwaHkgKFRRQyAyMDEzKTwvdGl0bGU+CiAgICAgIDwvdGl0bGVzPgogICAgICA8cHVibGljYXRpb25ZZWFyPjIwMTM8L3B1YmxpY2F0aW9uWWVhcj4KICAgICAgPHZvbHVtZT4yMjwvdm9sdW1lPgogICAgICA8bnVtYmVyPjY8L251bWJlcj4KICAgICAgPGZpcnN0UGFnZT45MzwvZmlyc3RQYWdlPgogICAgICA8bGFzdFBhZ2U+MTA1PC9sYXN0UGFnZT4KICAgICAgPHB1Ymxpc2hlcj5TY2hsb3NzIERhZ3N0dWhsIOKAkyBMZWlibml6LVplbnRydW0gZsO8ciBJbmZvcm1hdGlrPC9wdWJsaXNoZXI+CiAgICAgIDxjb250cmlidXRvcnM+CiAgICAgICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iRWRpdG9yIj4KICAgICAgICAgIDxjb250cmlidXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5TZXZlcmluaSwgU2ltb25lPC9jb250cmlidXRvck5hbWU+CiAgICAgICAgICA8Z2l2ZW5OYW1lPlNpbW9uZTwvZ2l2ZW5OYW1lPgogICAgICAgICAgPGZhbWlseU5hbWU+U2V2ZXJpbmk8L2ZhbWlseU5hbWU+CiAgICAgICAgPC9jb250cmlidXRvcj4KICAgICAgICA8Y29udHJpYnV0b3IgY29udHJpYnV0b3JUeXBlPSJFZGl0b3IiPgogICAgICAgICAgPGNvbnRyaWJ1dG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiPkJyYW5kYW8sIEZlcm5hbmRvPC9jb250cmlidXRvck5hbWU+CiAgICAgICAgICA8Z2l2ZW5OYW1lPkZlcm5hbmRvPC9naXZlbk5hbWU+CiAgICAgICAgICA8ZmFtaWx5TmFtZT5CcmFuZGFvPC9mYW1pbHlOYW1lPgogICAgICAgIDwvY29udHJpYnV0b3I+CiAgICAgIDwvY29udHJpYnV0b3JzPgogICAgPC9yZWxhdGVkSXRlbT4KICAgIDxyZWxhdGVkSXRlbSByZWxhdGVkSXRlbVR5cGU9IkNvbGxlY3Rpb24iIHJlbGF0aW9uVHlwZT0iSXNQdWJsaXNoZWRJbiI+CiAgICAgIDxyZWxhdGVkSXRlbUlkZW50aWZpZXIgcmVsYXRlZEl0ZW1JZGVudGlmaWVyVHlwZT0iSVNTTiI+MTg2OC04OTY5PC9yZWxhdGVkSXRlbUlkZW50aWZpZXI+CiAgICAgIDx0aXRsZXM+CiAgICAgICAgPHRpdGxlPkxlaWJuaXogSW50ZXJuYXRpb25hbCBQcm9jZWVkaW5ncyBpbiBJbmZvcm1hdGljcyAoTElQSWNzKTwvdGl0bGU+CiAgICAgIDwvdGl0bGVzPgogICAgICA8cHVibGljYXRpb25ZZWFyPjIwMTM8L3B1YmxpY2F0aW9uWWVhcj4KICAgICAgPHZvbHVtZT4yMjwvdm9sdW1lPgogICAgICA8cHVibGlzaGVyPlNjaGxvc3MgRGFnc3R1aGwg4oCTIExlaWJuaXotWmVudHJ1bSBmw7xyIEluZm9ybWF0aWs8L3B1Ymxpc2hlcj4KICAgIDwvcmVsYXRlZEl0ZW0+CiAgPC9yZWxhdGVkSXRlbXM+CiAgPHNpemVzPgogICAgPHNpemU+MTMgcGFnZXM8L3NpemU+CiAgICA8c2l6ZT41MjczODUgYnl0ZXM8L3NpemU+CiAgPC9zaXplcz4KICA8Zm9ybWF0cz4KICAgIDxmb3JtYXQ+YXBwbGljYXRpb24vcGRmPC9mb3JtYXQ+CiAgPC9mb3JtYXRzPgogIDx2ZXJzaW9uLz4KICA8cmlnaHRzTGlzdD4KICAgIDxyaWdodHMgcmlnaHRzVVJJPSJodHRwczovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnkvMy4wL2xlZ2FsY29kZSIgcmlnaHRzSWRlbnRpZmllcj0iQ0MgQlkgMy4wIiB4bWw6bGFuZz0iZW4iPkNyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24gMy4wIFVucG9ydGVkIGxpY2Vuc2U8L3JpZ2h0cz4KICAgIDxyaWdodHM+aW5mbzpldS1yZXBvL3NlbWFudGljcy9vcGVuQWNjZXNzPC9yaWdodHM+CiAgPC9yaWdodHNMaXN0PgogIDxkZXNjcmlwdGlvbnM+CiAgICA8ZGVzY3JpcHRpb24geG1sOmxhbmc9ImVuIiBkZXNjcmlwdGlvblR5cGU9IkFic3RyYWN0Ij5XZSBpbnZlc3RpZ2F0ZSB0aGUgcHJvYmxlbSBvZiBjb25zdHJ1Y3RpbmcgdW5leHRlbmRpYmxlIHByb2R1Y3QgYmFzZXMgaW4gdGhlIHF1Yml0IGNhc2UgLSB0aGF0IGlzLCB3aGVuIGVhY2ggbG9jYWwgZGltZW5zaW9uIGVxdWFscyAyLiBUaGUgY2FyZGluYWxpdHkgb2YgdGhlIHNtYWxsZXN0IHVuZXh0ZW5kaWJsZSBwcm9kdWN0IGJhc2lzIGlzIGtub3duIGluIGFsbCBxdWJpdCBjYXNlcyBleGNlcHQgd2hlbiB0aGUgbnVtYmVyIG9mIHBhcnRpZXMgaXMgYSBtdWx0aXBsZSBvZiA0IGdyZWF0ZXIgdGhhbiA0IGl0c2VsZi4gV2UgY29uc3RydWN0IHNtYWxsIHVuZXh0ZW5kaWJsZSBwcm9kdWN0IGJhc2VzIGluIGFsbCBvZiB0aGUgcmVtYWluaW5nIG9wZW4gY2FzZXMsIGFuZCB3ZSB1c2UgZ3JhcGggdGhlb3J5IHRlY2huaXF1ZXMgdG8gcHJvZHVjZSBhIGNvbXB1dGVyLWFzc2lzdGVkIHByb29mIHRoYXQgb3VyIGNvbnN0cnVjdGlvbnMgYXJlIGluZGVlZCB0aGUgc21hbGxlc3QgcG9zc2libGUuPC9kZXNjcmlwdGlvbj4KICAgIDxkZXNjcmlwdGlvbiB4bWw6bGFuZz0iZW4iIGRlc2NyaXB0aW9uVHlwZT0iU2VyaWVzSW5mb3JtYXRpb24iPkxJUEljcywgVm9sLiAyMiwgOHRoIENvbmZlcmVuY2Ugb24gdGhlIFRoZW9yeSBvZiBRdWFudHVtIENvbXB1dGF0aW9uLCBDb21tdW5pY2F0aW9uIGFuZCBDcnlwdG9ncmFwaHkgKFRRQyAyMDEzKSwgcGFnZXMgOTMtMTA1PC9kZXNjcmlwdGlvbj4KICA8L2Rlc2NyaXB0aW9ucz4KPC9yZXNvdXJjZT4K", + "url": "https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.TQC.2013.93", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "viewsOverTime": [], + "downloadCount": 0, + "downloadsOverTime": [], + "referenceCount": 0, + "citationCount": 0, + "citationsOverTime": [], + "partCount": 0, + "partOfCount": 1, + "versionCount": 0, + "versionOfCount": 0, + "created": "2013-11-13T13:42:17.000Z", + "registered": "2013-11-13T13:42:17.000Z", + "published": "2013", + "updated": "2023-12-21T12:03:17.000Z" }, - { - "type": "Person", - "contributorRoles": ["Editor"], - "givenName": "Simone", - "familyName": "Severini" - }, - { - "type": "Person", - "contributorRoles": ["Editor"], - "givenName": "Fernando", - "familyName": "Brandao" - } - ], - "date": { - "created": "2013-11-13", - "published": "2013", - "available": "2013-11-13" - }, - "descriptions": [ - { - "description": "We investigate the problem of constructing unextendible product bases in the qubit case - that is, when each local dimension equals 2. The cardinality of the smallest unextendible product basis is known in all qubit cases except when the number of parties is a multiple of 4 greater than 4 itself. We construct small unextendible product bases in all of the remaining open cases, and we use graph theory techniques to produce a computer-assisted proof that our constructions are indeed the smallest possible.", - "type": "Abstract", - "language": "en" - }, - { - "description": "LIPIcs, Vol. 22, 8th Conference on the Theory of Quantum Computation, Communication and Cryptography (TQC 2013), pages 93-105", - "type": "Other", - "language": "en" - } - ], - "identifiers": [ - { "identifier": "urn:nbn:de:0030-drops-43173", "identifierType": "URN" }, - { - "identifier": "https://doi.org/10.4230/lipics.tqc.2013.93", - "identifierType": "DOI" - } - ], - "language": "en", - "license": { - "id": "CC-BY-3.0", - "url": "https://creativecommons.org/licenses/by/3.0/legalcode" - }, - "provider": "DataCite", - "publisher": { "name": "Schloss Dagstuhl – Leibniz-Zentrum für Informatik" }, - "relations": [ - { "id": "https://doi.org/10.4230/lipics.tqc.2013", "type": "IsPartOf" }, - ], - "subjects": [ - { - "subject": "unextendible product basis; quantum entanglement; graph factorization", - "language": "en" - } - ], - "titles": [ - { - "title": "The Minimum Size of Qubit Unextendible Product Bases", - "language": "en" + "relationships": { + "client": { + "data": { + "id": "lzi.drops", + "type": "clients" + } + }, + "provider": { + "data": { + "id": "lzi", + "type": "providers" + } + }, + "media": { + "data": { + "id": "10.4230/lipics.tqc.2013.93", + "type": "media" + } + }, + "references": { + "data": [] + }, + "citations": { + "data": [] + }, + "parts": { + "data": [] + }, + "partOf": { + "data": [ + { + "id": "10.4230/lipics.tqc.2013", + "type": "dois" + } + ] + }, + "versions": { + "data": [] + }, + "versionOf": { + "data": [] + } } - ], - "url": "https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.TQC.2013.93" + } } diff --git a/datacite/testdata/10.5061_dryad.8515.json b/datacite/testdata/10.5061_dryad.8515.json index 050a3b9..84cff3e 100644 --- a/datacite/testdata/10.5061_dryad.8515.json +++ b/datacite/testdata/10.5061_dryad.8515.json @@ -1,120 +1,655 @@ { - "id": "https://doi.org/10.5061/dryad.8515", - "type": "Dataset", - "contributors": [ - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Benjamin", - "familyName": "Ollomo", - "affiliations": [ - { - "name": "Centre International de Recherches Médicales de Franceville" + "data": { + "id": "10.5061/dryad.8515", + "type": "dois", + "attributes": { + "doi": "10.5061/dryad.8515", + "prefix": "10.5061", + "suffix": "dryad.8515", + "identifiers": [], + "alternateIdentifiers": [], + "creators": [ + { + "name": "Ollomo, Benjamin", + "nameType": "Personal", + "givenName": "Benjamin", + "familyName": "Ollomo", + "affiliation": [ + "Centre International de Recherches Médicales de Franceville" + ], + "nameIdentifiers": [] + }, + { + "name": "Durand, Patrick", + "nameType": "Personal", + "givenName": "Patrick", + "familyName": "Durand", + "affiliation": ["French National Centre for Scientific Research"], + "nameIdentifiers": [] + }, + { + "name": "Prugnolle, Franck", + "nameType": "Personal", + "givenName": "Franck", + "familyName": "Prugnolle", + "affiliation": ["French National Centre for Scientific Research"], + "nameIdentifiers": [] + }, + { + "name": "Douzery, Emmanuel J. P.", + "nameType": "Personal", + "givenName": "Emmanuel J. P.", + "familyName": "Douzery", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Arnathau, Céline", + "nameType": "Personal", + "givenName": "Céline", + "familyName": "Arnathau", + "affiliation": ["French National Centre for Scientific Research"], + "nameIdentifiers": [] + }, + { + "name": "Nkoghe, Dieudonné", + "nameType": "Personal", + "givenName": "Dieudonné", + "familyName": "Nkoghe", + "affiliation": [ + "Centre International de Recherches Médicales de Franceville" + ], + "nameIdentifiers": [] + }, + { + "name": "Leroy, Eric", + "nameType": "Personal", + "givenName": "Eric", + "familyName": "Leroy", + "affiliation": [ + "Centre International de Recherches Médicales de Franceville" + ], + "nameIdentifiers": [] + }, + { + "name": "Renaud, François", + "nameType": "Personal", + "givenName": "François", + "familyName": "Renaud", + "affiliation": ["French National Centre for Scientific Research"], + "nameIdentifiers": [] } - ] - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Patrick", - "familyName": "Durand", - "affiliations": [ - { "name": "French National Centre for Scientific Research" } - ] - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Franck", - "familyName": "Prugnolle", - "affiliations": [ - { "name": "French National Centre for Scientific Research" } - ] - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Emmanuel J. P.", - "familyName": "Douzery" - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Céline", - "familyName": "Arnathau", - "affiliations": [ - { "name": "French National Centre for Scientific Research" } - ] - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Dieudonné", - "familyName": "Nkoghe", - "affiliations": [ - { - "name": "Centre International de Recherches Médicales de Franceville" + ], + "titles": [ + { + "title": "Data from: A new malaria agent in African hominids." } - ] - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Eric", - "familyName": "Leroy", - "affiliations": [ - { - "name": "Centre International de Recherches Médicales de Franceville" + ], + "publisher": "Dryad", + "container": {}, + "publicationYear": 2011, + "subjects": [ + { + "subject": "Plasmodium", + "schemeUri": "https://github.com/PLOS/plos-thesaurus", + "subjectScheme": "PLOS Subject Area Thesaurus" + }, + { + "subject": "Malaria", + "schemeUri": "https://github.com/PLOS/plos-thesaurus", + "subjectScheme": "PLOS Subject Area Thesaurus" + }, + { + "subject": "mitochondrial genome" + }, + { + "subject": "Parasites" } - ] - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "François", - "familyName": "Renaud", - "affiliations": [ - { "name": "French National Centre for Scientific Research" } - ] - } - ], - "date": { - "published": "2011-02-01T17:22:41Z", - "available": "2011-02-01T17:22:41Z" - }, - "descriptions": [ - { - "description": "Plasmodium falciparum is the major human malaria agent responsible for 200\n to 300 million infections and one to three million deaths annually, mainly\n among African infants. The origin and evolution of this pathogen within\n the human lineage is still unresolved. A single species, P. reichenowi,\n which infects chimpanzees, is known to be a close sister lineage of P.\n falciparum. Here we report the discovery of a new Plasmodium species\n infecting Hominids. This new species has been isolated in two chimpanzees\n (Pan troglodytes) kept as pets by villagers in Gabon (Africa). Analysis of\n its complete mitochondrial genome (5529 nucleotides including Cyt b, Cox I\n and Cox III genes) reveals an older divergence of this lineage from the\n clade that includes P. falciparum and P. reichenowi (approximately 21+/-9\n Myrs ago using Bayesian methods and considering that the divergence\n between P. falciparum and P. reichenowi occurred 4 to 7 million years ago\n as generally considered in the literature). This time frame would be\n congruent with the radiation of hominoids, suggesting that this Plasmodium\n lineage might have been present in early hominoids and that they may both\n have experienced a simultaneous diversification. Investigation of the\n nuclear genome of this new species will further the understanding of the\n genetic adaptations of P. falciparum to humans. The risk of transfer and\n emergence of this new species in humans must be now seriously considered\n given that it was found in two chimpanzees living in contact with humans\n and its close relatedness to the most virulent agent of malaria.", - "type": "Abstract" + ], + "contributors": [], + "dates": [ + { + "date": "2011-02-01T17:22:41Z", + "dateType": "Issued" + }, + { + "date": "2011-02-01T17:22:41Z", + "dateType": "Available" + } + ], + "language": "en", + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "dataset", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.1371/journal.ppat.1000446", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": ["128717 bytes"], + "formats": [], + "version": "1", + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Plasmodium falciparum is the major human malaria agent responsible for 200\n to 300 million infections and one to three million deaths annually, mainly\n among African infants. The origin and evolution of this pathogen within\n the human lineage is still unresolved. A single species, P. reichenowi,\n which infects chimpanzees, is known to be a close sister lineage of P.\n falciparum. Here we report the discovery of a new Plasmodium species\n infecting Hominids. This new species has been isolated in two chimpanzees\n (Pan troglodytes) kept as pets by villagers in Gabon (Africa). Analysis of\n its complete mitochondrial genome (5529 nucleotides including Cyt b, Cox I\n and Cox III genes) reveals an older divergence of this lineage from the\n clade that includes P. falciparum and P. reichenowi (approximately 21+/-9\n Myrs ago using Bayesian methods and considering that the divergence\n between P. falciparum and P. reichenowi occurred 4 to 7 million years ago\n as generally considered in the literature). This time frame would be\n congruent with the radiation of hominoids, suggesting that this Plasmodium\n lineage might have been present in early hominoids and that they may both\n have experienced a simultaneous diversification. Investigation of the\n nuclear genome of this new species will further the understanding of the\n genetic adaptations of P. falciparum to humans. The risk of transfer and\n emergence of this new species in humans must be now seriously considered\n given that it was found in two chimpanzees living in contact with humans\n and its close relatedness to the most virulent agent of malaria.", + "descriptionType": "Abstract" + }, + { + "description": "Ollomo_PLoSPathog_2009Nucleotide alignment concatenation of 4\n mitochondrial genes for 17 Plasmodium species and one\n outgroup.Ollomo_PLoSPathog_2009_PHYMLMaximum likelihood tree inferred from\n the 4-gene concatenation using PHYML.", + "descriptionType": "Other" + } + ], + "geoLocations": [ + { + "geoLocationPlace": "Africa" + } + ], + "fundingReferences": [], + "xml": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuNTA2MS9EUllBRC44NTE1PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWU+T2xsb21vLCBCZW5qYW1pbjwvY3JlYXRvck5hbWU+CiAgICAgIDxhZmZpbGlhdGlvbiBhZmZpbGlhdGlvbklkZW50aWZpZXI9Imh0dHBzOi8vcm9yLm9yZy8wMXd5cWI5OTciIGFmZmlsaWF0aW9uSWRlbnRpZmllclNjaGVtZT0iUk9SIiBzY2hlbWVVUkk9Imh0dHBzOi8vcm9yLm9yZyI+Q2VudHJlIEludGVybmF0aW9uYWwgZGUgUmVjaGVyY2hlcyBNw6lkaWNhbGVzIGRlIEZyYW5jZXZpbGxlPC9hZmZpbGlhdGlvbj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWU+RHVyYW5kLCBQYXRyaWNrPC9jcmVhdG9yTmFtZT4KICAgICAgPGFmZmlsaWF0aW9uIGFmZmlsaWF0aW9uSWRlbnRpZmllcj0iaHR0cHM6Ly9yb3Iub3JnLzAyZmVhaHc3MyIgYWZmaWxpYXRpb25JZGVudGlmaWVyU2NoZW1lPSJST1IiIHNjaGVtZVVSST0iaHR0cHM6Ly9yb3Iub3JnIj5GcmVuY2ggTmF0aW9uYWwgQ2VudHJlIGZvciBTY2llbnRpZmljIFJlc2VhcmNoPC9hZmZpbGlhdGlvbj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWU+UHJ1Z25vbGxlLCBGcmFuY2s8L2NyZWF0b3JOYW1lPgogICAgICA8YWZmaWxpYXRpb24gYWZmaWxpYXRpb25JZGVudGlmaWVyPSJodHRwczovL3Jvci5vcmcvMDJmZWFodzczIiBhZmZpbGlhdGlvbklkZW50aWZpZXJTY2hlbWU9IlJPUiIgc2NoZW1lVVJJPSJodHRwczovL3Jvci5vcmciPkZyZW5jaCBOYXRpb25hbCBDZW50cmUgZm9yIFNjaWVudGlmaWMgUmVzZWFyY2g8L2FmZmlsaWF0aW9uPgogICAgPC9jcmVhdG9yPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZT5Eb3V6ZXJ5LCBFbW1hbnVlbCBKLiBQLjwvY3JlYXRvck5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lPkFybmF0aGF1LCBDw6lsaW5lPC9jcmVhdG9yTmFtZT4KICAgICAgPGFmZmlsaWF0aW9uIGFmZmlsaWF0aW9uSWRlbnRpZmllcj0iaHR0cHM6Ly9yb3Iub3JnLzAyZmVhaHc3MyIgYWZmaWxpYXRpb25JZGVudGlmaWVyU2NoZW1lPSJST1IiIHNjaGVtZVVSST0iaHR0cHM6Ly9yb3Iub3JnIj5GcmVuY2ggTmF0aW9uYWwgQ2VudHJlIGZvciBTY2llbnRpZmljIFJlc2VhcmNoPC9hZmZpbGlhdGlvbj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWU+TmtvZ2hlLCBEaWV1ZG9ubsOpPC9jcmVhdG9yTmFtZT4KICAgICAgPGFmZmlsaWF0aW9uIGFmZmlsaWF0aW9uSWRlbnRpZmllcj0iaHR0cHM6Ly9yb3Iub3JnLzAxd3lxYjk5NyIgYWZmaWxpYXRpb25JZGVudGlmaWVyU2NoZW1lPSJST1IiIHNjaGVtZVVSST0iaHR0cHM6Ly9yb3Iub3JnIj5DZW50cmUgSW50ZXJuYXRpb25hbCBkZSBSZWNoZXJjaGVzIE3DqWRpY2FsZXMgZGUgRnJhbmNldmlsbGU8L2FmZmlsaWF0aW9uPgogICAgPC9jcmVhdG9yPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZT5MZXJveSwgRXJpYzwvY3JlYXRvck5hbWU+CiAgICAgIDxhZmZpbGlhdGlvbiBhZmZpbGlhdGlvbklkZW50aWZpZXI9Imh0dHBzOi8vcm9yLm9yZy8wMXd5cWI5OTciIGFmZmlsaWF0aW9uSWRlbnRpZmllclNjaGVtZT0iUk9SIiBzY2hlbWVVUkk9Imh0dHBzOi8vcm9yLm9yZyI+Q2VudHJlIEludGVybmF0aW9uYWwgZGUgUmVjaGVyY2hlcyBNw6lkaWNhbGVzIGRlIEZyYW5jZXZpbGxlPC9hZmZpbGlhdGlvbj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWU+UmVuYXVkLCBGcmFuw6dvaXM8L2NyZWF0b3JOYW1lPgogICAgICA8YWZmaWxpYXRpb24gYWZmaWxpYXRpb25JZGVudGlmaWVyPSJodHRwczovL3Jvci5vcmcvMDJmZWFodzczIiBhZmZpbGlhdGlvbklkZW50aWZpZXJTY2hlbWU9IlJPUiIgc2NoZW1lVVJJPSJodHRwczovL3Jvci5vcmciPkZyZW5jaCBOYXRpb25hbCBDZW50cmUgZm9yIFNjaWVudGlmaWMgUmVzZWFyY2g8L2FmZmlsaWF0aW9uPgogICAgPC9jcmVhdG9yPgogIDwvY3JlYXRvcnM+CiAgPHRpdGxlcz4KICAgIDx0aXRsZT5EYXRhIGZyb206IEEgbmV3IG1hbGFyaWEgYWdlbnQgaW4gQWZyaWNhbiBob21pbmlkcy48L3RpdGxlPgogIDwvdGl0bGVzPgogIDxwdWJsaXNoZXIgcHVibGlzaGVySWRlbnRpZmllcj0iaHR0cHM6Ly9yb3Iub3JnLzAweDZoNW45NSIgcHVibGlzaGVySWRlbnRpZmllclNjaGVtZT0iUk9SIiBzY2hlbWVVUkk9Imh0dHBzOi8vcm9yLm9yZy8iPkRyeWFkPC9wdWJsaXNoZXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJEYXRhc2V0Ij5kYXRhc2V0PC9yZXNvdXJjZVR5cGU+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDExPC9wdWJsaWNhdGlvblllYXI+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Qgc3ViamVjdFNjaGVtZT0iUExPUyBTdWJqZWN0IEFyZWEgVGhlc2F1cnVzIiBzY2hlbWVVUkk9Imh0dHBzOi8vZ2l0aHViLmNvbS9QTE9TL3Bsb3MtdGhlc2F1cnVzIj5QbGFzbW9kaXVtPC9zdWJqZWN0PgogICAgPHN1YmplY3Qgc3ViamVjdFNjaGVtZT0iUExPUyBTdWJqZWN0IEFyZWEgVGhlc2F1cnVzIiBzY2hlbWVVUkk9Imh0dHBzOi8vZ2l0aHViLmNvbS9QTE9TL3Bsb3MtdGhlc2F1cnVzIj5NYWxhcmlhPC9zdWJqZWN0PgogICAgPHN1YmplY3Q+bWl0b2Nob25kcmlhbCBnZW5vbWU8L3N1YmplY3Q+CiAgICA8c3ViamVjdD5QYXJhc2l0ZXM8L3N1YmplY3Q+CiAgPC9zdWJqZWN0cz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDExLTAyLTAxVDE3OjIyOjQxWjwvZGF0ZT4KICAgIDxkYXRlIGRhdGVUeXBlPSJBdmFpbGFibGUiPjIwMTEtMDItMDFUMTc6MjI6NDFaPC9kYXRlPgogIDwvZGF0ZXM+CiAgPGxhbmd1YWdlPmVuPC9sYW5ndWFnZT4KICA8cmVsYXRlZElkZW50aWZpZXJzPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0aW9uVHlwZT0iSXNDaXRlZEJ5IiByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzNzEvam91cm5hbC5wcGF0LjEwMDA0NDY8L3JlbGF0ZWRJZGVudGlmaWVyPgogIDwvcmVsYXRlZElkZW50aWZpZXJzPgogIDxzaXplcz4KICAgIDxzaXplPjEyODcxNyBieXRlczwvc2l6ZT4KICA8L3NpemVzPgogIDx2ZXJzaW9uPjE8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cHM6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL3B1YmxpY2RvbWFpbi96ZXJvLzEuMC8iPkNDMCAxLjAgVW5pdmVyc2FsIChDQzAgMS4wKSBQdWJsaWMgRG9tYWluIERlZGljYXRpb248L3JpZ2h0cz4KICA8L3JpZ2h0c0xpc3Q+CiAgPGRlc2NyaXB0aW9ucz4KICAgIDxkZXNjcmlwdGlvbiBkZXNjcmlwdGlvblR5cGU9IkFic3RyYWN0Ij4KICAgICAgUGxhc21vZGl1bSBmYWxjaXBhcnVtIGlzIHRoZSBtYWpvciBodW1hbiBtYWxhcmlhIGFnZW50IHJlc3BvbnNpYmxlIGZvciAyMDAKICAgICAgdG8gMzAwIG1pbGxpb24gaW5mZWN0aW9ucyBhbmQgb25lIHRvIHRocmVlIG1pbGxpb24gZGVhdGhzIGFubnVhbGx5LCBtYWlubHkKICAgICAgYW1vbmcgQWZyaWNhbiBpbmZhbnRzLiBUaGUgb3JpZ2luIGFuZCBldm9sdXRpb24gb2YgdGhpcyBwYXRob2dlbiB3aXRoaW4KICAgICAgdGhlIGh1bWFuIGxpbmVhZ2UgaXMgc3RpbGwgdW5yZXNvbHZlZC4gQSBzaW5nbGUgc3BlY2llcywgUC4gcmVpY2hlbm93aSwKICAgICAgd2hpY2ggaW5mZWN0cyBjaGltcGFuemVlcywgaXMga25vd24gdG8gYmUgYSBjbG9zZSBzaXN0ZXIgbGluZWFnZSBvZiBQLgogICAgICBmYWxjaXBhcnVtLiBIZXJlIHdlIHJlcG9ydCB0aGUgZGlzY292ZXJ5IG9mIGEgbmV3IFBsYXNtb2RpdW0gc3BlY2llcwogICAgICBpbmZlY3RpbmcgSG9taW5pZHMuIFRoaXMgbmV3IHNwZWNpZXMgaGFzIGJlZW4gaXNvbGF0ZWQgaW4gdHdvIGNoaW1wYW56ZWVzCiAgICAgIChQYW4gdHJvZ2xvZHl0ZXMpIGtlcHQgYXMgcGV0cyBieSB2aWxsYWdlcnMgaW4gR2Fib24gKEFmcmljYSkuIEFuYWx5c2lzIG9mCiAgICAgIGl0cyBjb21wbGV0ZSBtaXRvY2hvbmRyaWFsIGdlbm9tZSAoNTUyOSBudWNsZW90aWRlcyBpbmNsdWRpbmcgQ3l0IGIsIENveCBJCiAgICAgIGFuZCBDb3ggSUlJIGdlbmVzKSByZXZlYWxzIGFuIG9sZGVyIGRpdmVyZ2VuY2Ugb2YgdGhpcyBsaW5lYWdlIGZyb20gdGhlCiAgICAgIGNsYWRlIHRoYXQgaW5jbHVkZXMgUC4gZmFsY2lwYXJ1bSBhbmQgUC4gcmVpY2hlbm93aSAoYXBwcm94aW1hdGVseSAyMSsvLTkKICAgICAgTXlycyBhZ28gdXNpbmcgQmF5ZXNpYW4gbWV0aG9kcyBhbmQgY29uc2lkZXJpbmcgdGhhdCB0aGUgZGl2ZXJnZW5jZQogICAgICBiZXR3ZWVuIFAuIGZhbGNpcGFydW0gYW5kIFAuIHJlaWNoZW5vd2kgb2NjdXJyZWQgNCB0byA3IG1pbGxpb24geWVhcnMgYWdvCiAgICAgIGFzIGdlbmVyYWxseSBjb25zaWRlcmVkIGluIHRoZSBsaXRlcmF0dXJlKS4gVGhpcyB0aW1lIGZyYW1lIHdvdWxkIGJlCiAgICAgIGNvbmdydWVudCB3aXRoIHRoZSByYWRpYXRpb24gb2YgaG9taW5vaWRzLCBzdWdnZXN0aW5nIHRoYXQgdGhpcyBQbGFzbW9kaXVtCiAgICAgIGxpbmVhZ2UgbWlnaHQgaGF2ZSBiZWVuIHByZXNlbnQgaW4gZWFybHkgaG9taW5vaWRzIGFuZCB0aGF0IHRoZXkgbWF5IGJvdGgKICAgICAgaGF2ZSBleHBlcmllbmNlZCBhIHNpbXVsdGFuZW91cyBkaXZlcnNpZmljYXRpb24uIEludmVzdGlnYXRpb24gb2YgdGhlCiAgICAgIG51Y2xlYXIgZ2Vub21lIG9mIHRoaXMgbmV3IHNwZWNpZXMgd2lsbCBmdXJ0aGVyIHRoZSB1bmRlcnN0YW5kaW5nIG9mIHRoZQogICAgICBnZW5ldGljIGFkYXB0YXRpb25zIG9mIFAuIGZhbGNpcGFydW0gdG8gaHVtYW5zLiBUaGUgcmlzayBvZiB0cmFuc2ZlciBhbmQKICAgICAgZW1lcmdlbmNlIG9mIHRoaXMgbmV3IHNwZWNpZXMgaW4gaHVtYW5zIG11c3QgYmUgbm93IHNlcmlvdXNseSBjb25zaWRlcmVkCiAgICAgIGdpdmVuIHRoYXQgaXQgd2FzIGZvdW5kIGluIHR3byBjaGltcGFuemVlcyBsaXZpbmcgaW4gY29udGFjdCB3aXRoIGh1bWFucwogICAgICBhbmQgaXRzIGNsb3NlIHJlbGF0ZWRuZXNzIHRvIHRoZSBtb3N0IHZpcnVsZW50IGFnZW50IG9mIG1hbGFyaWEuCiAgICA8L2Rlc2NyaXB0aW9uPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iT3RoZXIiPgogICAgICBPbGxvbW9fUExvU1BhdGhvZ18yMDA5TnVjbGVvdGlkZSBhbGlnbm1lbnQgY29uY2F0ZW5hdGlvbiBvZiA0CiAgICAgIG1pdG9jaG9uZHJpYWwgZ2VuZXMgZm9yIDE3IFBsYXNtb2RpdW0gc3BlY2llcyBhbmQgb25lCiAgICAgIG91dGdyb3VwLk9sbG9tb19QTG9TUGF0aG9nXzIwMDlfUEhZTUxNYXhpbXVtIGxpa2VsaWhvb2QgdHJlZSBpbmZlcnJlZCBmcm9tCiAgICAgIHRoZSA0LWdlbmUgY29uY2F0ZW5hdGlvbiB1c2luZyBQSFlNTC4KICAgIDwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGdlb0xvY2F0aW9ucz4KICAgIDxnZW9Mb2NhdGlvbj4KICAgICAgPGdlb0xvY2F0aW9uUGxhY2U+QWZyaWNhPC9nZW9Mb2NhdGlvblBsYWNlPgogICAgPC9nZW9Mb2NhdGlvbj4KICA8L2dlb0xvY2F0aW9ucz4KPC9yZXNvdXJjZT4=", + "url": "https://datadryad.org/stash/dataset/doi:10.5061/dryad.8515", + "contentUrl": null, + "metadataVersion": 25, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 394, + "viewsOverTime": [ + { + "yearMonth": "2014-11", + "total": 1 + }, + { + "yearMonth": "2015-03", + "total": 4 + }, + { + "yearMonth": "2015-04", + "total": 4 + }, + { + "yearMonth": "2015-05", + "total": 3 + }, + { + "yearMonth": "2015-08", + "total": 8 + }, + { + "yearMonth": "2015-09", + "total": 4 + }, + { + "yearMonth": "2015-11", + "total": 1 + }, + { + "yearMonth": "2016-01", + "total": 2 + }, + { + "yearMonth": "2016-04", + "total": 2 + }, + { + "yearMonth": "2016-08", + "total": 1 + }, + { + "yearMonth": "2017-01", + "total": 19 + }, + { + "yearMonth": "2017-02", + "total": 26 + }, + { + "yearMonth": "2017-03", + "total": 13 + }, + { + "yearMonth": "2017-04", + "total": 8 + }, + { + "yearMonth": "2017-05", + "total": 8 + }, + { + "yearMonth": "2017-06", + "total": 5 + }, + { + "yearMonth": "2017-08", + "total": 2 + }, + { + "yearMonth": "2017-09", + "total": 5 + }, + { + "yearMonth": "2018-01", + "total": 4 + }, + { + "yearMonth": "2018-02", + "total": 1 + }, + { + "yearMonth": "2018-04", + "total": 1 + }, + { + "yearMonth": "2018-10", + "total": 2 + }, + { + "yearMonth": "2018-12", + "total": 1 + }, + { + "yearMonth": "2019-01", + "total": 2 + }, + { + "yearMonth": "2019-02", + "total": 1 + }, + { + "yearMonth": "2019-04", + "total": 5 + }, + { + "yearMonth": "2019-05", + "total": 1 + }, + { + "yearMonth": "2019-06", + "total": 2 + }, + { + "yearMonth": "2019-07", + "total": 2 + }, + { + "yearMonth": "2019-08", + "total": 1 + }, + { + "yearMonth": "2019-10", + "total": 4 + }, + { + "yearMonth": "2019-12", + "total": 3 + }, + { + "yearMonth": "2020-01", + "total": 3 + }, + { + "yearMonth": "2020-02", + "total": 4 + }, + { + "yearMonth": "2020-03", + "total": 1 + }, + { + "yearMonth": "2020-04", + "total": 4 + }, + { + "yearMonth": "2020-05", + "total": 6 + }, + { + "yearMonth": "2020-07", + "total": 6 + }, + { + "yearMonth": "2020-08", + "total": 1 + }, + { + "yearMonth": "2020-09", + "total": 2 + }, + { + "yearMonth": "2020-10", + "total": 4 + }, + { + "yearMonth": "2020-11", + "total": 4 + }, + { + "yearMonth": "2020-12", + "total": 2 + }, + { + "yearMonth": "2021-01", + "total": 11 + }, + { + "yearMonth": "2021-02", + "total": 1 + }, + { + "yearMonth": "2021-03", + "total": 2 + }, + { + "yearMonth": "2021-04", + "total": 6 + }, + { + "yearMonth": "2021-06", + "total": 6 + }, + { + "yearMonth": "2021-07", + "total": 3 + }, + { + "yearMonth": "2021-08", + "total": 3 + }, + { + "yearMonth": "2021-09", + "total": 1 + }, + { + "yearMonth": "2021-10", + "total": 7 + }, + { + "yearMonth": "2021-11", + "total": 3 + }, + { + "yearMonth": "2022-01", + "total": 1 + }, + { + "yearMonth": "2022-02", + "total": 4 + }, + { + "yearMonth": "2022-03", + "total": 8 + }, + { + "yearMonth": "2022-04", + "total": 2 + }, + { + "yearMonth": "2022-07", + "total": 1 + }, + { + "yearMonth": "2022-09", + "total": 2 + }, + { + "yearMonth": "2022-10", + "total": 3 + }, + { + "yearMonth": "2022-11", + "total": 3 + }, + { + "yearMonth": "2022-12", + "total": 8 + }, + { + "yearMonth": "2023-01", + "total": 11 + }, + { + "yearMonth": "2023-03", + "total": 1 + }, + { + "yearMonth": "2023-04", + "total": 2 + }, + { + "yearMonth": "2023-05", + "total": 5 + }, + { + "yearMonth": "2023-06", + "total": 2 + }, + { + "yearMonth": "2023-07", + "total": 3 + }, + { + "yearMonth": "2023-08", + "total": 42 + }, + { + "yearMonth": "2023-09", + "total": 48 + }, + { + "yearMonth": "2023-10", + "total": 9 + }, + { + "yearMonth": "2023-11", + "total": 5 + }, + { + "yearMonth": "2023-12", + "total": 5 + }, + { + "yearMonth": "2024-06", + "total": 1 + }, + { + "yearMonth": "2024-08", + "total": 1 + }, + { + "yearMonth": "2024-10", + "total": 1 + } + ], + "downloadCount": 31, + "downloadsOverTime": [ + { + "yearMonth": "2014-11", + "total": 1 + }, + { + "yearMonth": "2015-03", + "total": 1 + }, + { + "yearMonth": "2015-04", + "total": 2 + }, + { + "yearMonth": "2015-08", + "total": 2 + }, + { + "yearMonth": "2015-09", + "total": 2 + }, + { + "yearMonth": "2017-02", + "total": 2 + }, + { + "yearMonth": "2017-04", + "total": 2 + }, + { + "yearMonth": "2017-05", + "total": 2 + }, + { + "yearMonth": "2017-06", + "total": 1 + }, + { + "yearMonth": "2019-10", + "total": 1 + }, + { + "yearMonth": "2020-02", + "total": 1 + }, + { + "yearMonth": "2020-05", + "total": 1 + }, + { + "yearMonth": "2020-11", + "total": 1 + }, + { + "yearMonth": "2021-01", + "total": 5 + }, + { + "yearMonth": "2021-02", + "total": 1 + }, + { + "yearMonth": "2022-10", + "total": 1 + }, + { + "yearMonth": "2022-12", + "total": 1 + }, + { + "yearMonth": "2023-01", + "total": 1 + }, + { + "yearMonth": "2023-03", + "total": 1 + }, + { + "yearMonth": "2023-11", + "total": 1 + }, + { + "yearMonth": "2023-12", + "total": 1 + }, + { + "yearMonth": "2024-06", + "total": 0 + }, + { + "yearMonth": "2024-08", + "total": 0 + }, + { + "yearMonth": "2024-10", + "total": 0 + } + ], + "referenceCount": 1, + "citationCount": 1, + "citationsOverTime": [ + { + "year": "2019", + "total": 1 + } + ], + "partCount": 2, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2011-11-22T18:34:51.000Z", + "registered": "2011-02-01T17:32:02.000Z", + "published": "2011", + "updated": "2024-11-01T01:06:00.000Z" }, - { - "description": "Ollomo_PLoSPathog_2009Nucleotide alignment concatenation of 4\n mitochondrial genes for 17 Plasmodium species and one\n outgroup.Ollomo_PLoSPathog_2009_PHYMLMaximum likelihood tree inferred from\n the 4-gene concatenation using PHYML.", - "type": "Other" - } - ], - "geoLocations": [{ "geoLocationPlace": "Africa" }], - "identifiers": [ - { - "identifier": "https://doi.org/10.5061/dryad.8515", - "identifierType": "DOI" + "relationships": { + "client": { + "data": { + "id": "dryad.dryad", + "type": "clients" + } + }, + "provider": { + "data": { + "id": "dryad", + "type": "providers" + } + }, + "media": { + "data": { + "id": "10.5061/dryad.8515", + "type": "media" + } + }, + "references": { + "data": [ + { + "id": "10.1371/journal.ppat.1000446", + "type": "dois" + } + ] + }, + "citations": { + "data": [ + { + "id": "10.1371/journal.ppat.1000446", + "type": "dois" + } + ] + }, + "parts": { + "data": [ + { + "id": "10.5061/dryad.8515/1", + "type": "dois" + }, + { + "id": "10.5061/dryad.8515/2", + "type": "dois" + } + ] + }, + "partOf": { + "data": [] + }, + "versions": { + "data": [] + }, + "versionOf": { + "data": [] + } } - ], - "language": "en", - "license": { - "id": "CC0-1.0", - "url": "https://creativecommons.org/publicdomain/zero/1.0/legalcode" - }, - "provider": "DataCite", - "publisher": { "name": "Dryad" }, - "subjects": [ - { "subject": "Plasmodium" }, - { "subject": "Malaria" }, - { "subject": "mitochondrial genome" }, - { "subject": "Parasites" } - ], - "titles": [ - { "title": "Data from: A new malaria agent in African hominids." } - ], - "url": "https://datadryad.org/stash/dataset/doi:10.5061/dryad.8515", - "version": "1" + } } diff --git a/datacite/testdata/10.5438_zhyx-n122.json b/datacite/testdata/10.5438_zhyx-n122.json index b4e408c..1c6ea7f 100644 --- a/datacite/testdata/10.5438_zhyx-n122.json +++ b/datacite/testdata/10.5438_zhyx-n122.json @@ -1,56 +1,217 @@ { - "id": "https://doi.org/10.5438/zhyx-n122", - "type": "Document", - "additionalType": "blog post", - "contributors": [ - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Rorie", - "familyName": "Edmunds", - "affiliations": [{ "name": "DataCite" }] + "data": { + "id": "10.5438/zhyx-n122", + "type": "dois", + "attributes": { + "doi": "10.5438/zhyx-n122", + "prefix": "10.5438", + "suffix": "zhyx-n122", + "identifiers": [], + "alternateIdentifiers": [], + "creators": [ + { + "name": "Edmunds, Rorie", + "nameType": "Personal", + "givenName": "Rorie", + "familyName": "Edmunds", + "affiliation": ["DataCite"], + "nameIdentifiers": [] + }, + { + "name": "Vierkant, Paul", + "nameType": "Personal", + "givenName": "Paul", + "familyName": "Vierkant", + "affiliation": ["DataCite"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0003-4448-3844", + "nameIdentifierScheme": "ORCID" + } + ] + } + ], + "titles": [ + { + "lang": "en", + "title": "DataCite Member Survey 2022", + "titleType": null + } + ], + "publisher": "DataCite", + "container": {}, + "publicationYear": 2023, + "subjects": [], + "contributors": [], + "dates": [], + "language": "en", + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "blog post", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "schemeUri": null, + "schemeType": null, + "relationType": "Cites", + "relatedIdentifier": "10.5438/K1GW-Y723", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI", + "relatedMetadataScheme": null + }, + { + "schemeUri": null, + "schemeType": null, + "relationType": "Cites", + "relatedIdentifier": "10.5438/1tek-7522", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI", + "relatedMetadataScheme": null + }, + { + "schemeUri": null, + "schemeType": null, + "relationType": "Cites", + "relatedIdentifier": "10.5438/cnsf-ec48", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI", + "relatedMetadataScheme": null + }, + { + "schemeUri": null, + "schemeType": null, + "relationType": "Cites", + "relatedIdentifier": "10.5438/q34f-c696", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI", + "relatedMetadataScheme": null + }, + { + "schemeUri": null, + "schemeType": null, + "relationType": "Cites", + "relatedIdentifier": "10.5438/vacd-ve62", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI", + "relatedMetadataScheme": null + }, + { + "schemeUri": null, + "schemeType": null, + "relationType": "Cites", + "relatedIdentifier": "10.5438/h7x6-qf64", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI", + "relatedMetadataScheme": null + }, + { + "schemeUri": null, + "schemeType": null, + "relationType": "Cites", + "relatedIdentifier": "10.5438/vjz9-kx84", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI", + "relatedMetadataScheme": null + }, + { + "schemeUri": null, + "schemeType": null, + "relationType": "Cites", + "relatedIdentifier": "10.5438/ptv6-vf36", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI", + "relatedMetadataScheme": null + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "1.0", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "lang": "en", + "description": "At the end of 2022, we conducted our annual member survey, asking our members about their experience being part of the DataCite community and how DataCite services might alleviate any challenges they are facing. We thank the many members who participated in the survey for sharing their valuable perspectives with us. After analyzing their insights, we are pleased to publish the following summary of the main outcomes.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "xml": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuNTQzOC9aSFlYLU4xMjI8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiPkVkbXVuZHMsIFJvcmllPC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5Sb3JpZTwvZ2l2ZW5OYW1lPgogICAgICA8ZmFtaWx5TmFtZT5FZG11bmRzPC9mYW1pbHlOYW1lPgogICAgICA8YWZmaWxpYXRpb24gYWZmaWxpYXRpb25JZGVudGlmaWVyPSJodHRwczovL3Jvci5vcmcvMDR3eG5zajgxIiBhZmZpbGlhdGlvbklkZW50aWZpZXJTY2hlbWU9IlJPUiIgc2NoZW1lVVJJPSJodHRwczovL3Jvci5vcmciPkRhdGFDaXRlPC9hZmZpbGlhdGlvbj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5WaWVya2FudCwgUGF1bDwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+UGF1bDwvZ2l2ZW5OYW1lPgogICAgICA8ZmFtaWx5TmFtZT5WaWVya2FudDwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTQ0NDgtMzg0NDwvbmFtZUlkZW50aWZpZXI+CiAgICAgIDxhZmZpbGlhdGlvbiBhZmZpbGlhdGlvbklkZW50aWZpZXI9Imh0dHBzOi8vcm9yLm9yZy8wNHd4bnNqODEiIGFmZmlsaWF0aW9uSWRlbnRpZmllclNjaGVtZT0iUk9SIiBzY2hlbWVVUkk9Imh0dHBzOi8vcm9yLm9yZyI+RGF0YUNpdGU8L2FmZmlsaWF0aW9uPgogICAgPC9jcmVhdG9yPgogIDwvY3JlYXRvcnM+CiAgPHRpdGxlcz4KICAgIDx0aXRsZSB4bWw6bGFuZz0iZW4iPkRhdGFDaXRlIE1lbWJlciBTdXJ2ZXkgMjAyMjwvdGl0bGU+CiAgPC90aXRsZXM+CiAgPHB1Ymxpc2hlcj5EYXRhQ2l0ZTwvcHVibGlzaGVyPgogIDxwdWJsaWNhdGlvblllYXI+MjAyMzwvcHVibGljYXRpb25ZZWFyPgogIDxyZXNvdXJjZVR5cGUgcmVzb3VyY2VUeXBlR2VuZXJhbD0iVGV4dCI+YmxvZyBwb3N0PC9yZXNvdXJjZVR5cGU+CiAgPGxhbmd1YWdlPmVuPC9sYW5ndWFnZT4KICA8cmVsYXRlZElkZW50aWZpZXJzPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9IkNpdGVzIiByZXNvdXJjZVR5cGVHZW5lcmFsPSJUZXh0Ij4xMC41NDM4L0sxR1ctWTcyMzwvcmVsYXRlZElkZW50aWZpZXI+CiAgICA8cmVsYXRlZElkZW50aWZpZXIgcmVsYXRlZElkZW50aWZpZXJUeXBlPSJET0kiIHJlbGF0aW9uVHlwZT0iQ2l0ZXMiIHJlc291cmNlVHlwZUdlbmVyYWw9IlRleHQiPjEwLjU0MzgvMXRlay03NTIyPC9yZWxhdGVkSWRlbnRpZmllcj4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJDaXRlcyIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iVGV4dCI+MTAuNTQzOC9jbnNmLWVjNDg8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9IkNpdGVzIiByZXNvdXJjZVR5cGVHZW5lcmFsPSJUZXh0Ij4xMC41NDM4L3EzNGYtYzY5NjwvcmVsYXRlZElkZW50aWZpZXI+CiAgICA8cmVsYXRlZElkZW50aWZpZXIgcmVsYXRlZElkZW50aWZpZXJUeXBlPSJET0kiIHJlbGF0aW9uVHlwZT0iQ2l0ZXMiIHJlc291cmNlVHlwZUdlbmVyYWw9IlRleHQiPjEwLjU0MzgvdmFjZC12ZTYyPC9yZWxhdGVkSWRlbnRpZmllcj4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJDaXRlcyIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iVGV4dCI+MTAuNTQzOC9oN3g2LXFmNjQ8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9IkNpdGVzIiByZXNvdXJjZVR5cGVHZW5lcmFsPSJUZXh0Ij4xMC41NDM4L3Zqejkta3g4NDwvcmVsYXRlZElkZW50aWZpZXI+CiAgICA8cmVsYXRlZElkZW50aWZpZXIgcmVsYXRlZElkZW50aWZpZXJUeXBlPSJET0kiIHJlbGF0aW9uVHlwZT0iQ2l0ZXMiIHJlc291cmNlVHlwZUdlbmVyYWw9IlRleHQiPjEwLjU0MzgvcHR2Ni12ZjM2PC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cHM6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL2xpY2Vuc2VzL2J5LzQuMC9sZWdhbGNvZGUiPkNyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24gNC4wIEludGVybmF0aW9uYWw8L3JpZ2h0cz4KICA8L3JpZ2h0c0xpc3Q+CiAgPGRlc2NyaXB0aW9ucz4KICAgIDxkZXNjcmlwdGlvbiB4bWw6bGFuZz0iZW4iIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkF0IHRoZSBlbmQgb2YgMjAyMiwgd2UgY29uZHVjdGVkIG91ciBhbm51YWwgbWVtYmVyIHN1cnZleSwgYXNraW5nIG91ciBtZW1iZXJzIGFib3V0IHRoZWlyIGV4cGVyaWVuY2UgYmVpbmcgcGFydCBvZiB0aGUgRGF0YUNpdGUgY29tbXVuaXR5IGFuZCBob3cgRGF0YUNpdGUgc2VydmljZXMgbWlnaHQgYWxsZXZpYXRlIGFueSBjaGFsbGVuZ2VzIHRoZXkgYXJlIGZhY2luZy4gV2UgdGhhbmsgdGhlIG1hbnkgbWVtYmVycyB3aG8gcGFydGljaXBhdGVkIGluIHRoZSBzdXJ2ZXkgZm9yIHNoYXJpbmcgdGhlaXIgdmFsdWFibGUgcGVyc3BlY3RpdmVzIHdpdGggdXMuIEFmdGVyIGFuYWx5emluZyB0aGVpciBpbnNpZ2h0cywgd2UgYXJlIHBsZWFzZWQgdG8gcHVibGlzaCB0aGUgZm9sbG93aW5nIHN1bW1hcnkgb2YgdGhlIG1haW4gb3V0Y29tZXMuPC9kZXNjcmlwdGlvbj4KICA8L2Rlc2NyaXB0aW9ucz4KPC9yZXNvdXJjZT4K", + "url": "https://datacite.org/blog/datacite-member-survey-2022/", + "contentUrl": null, + "metadataVersion": 4, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "fabricaForm", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "viewsOverTime": [], + "downloadCount": 0, + "downloadsOverTime": [], + "referenceCount": 0, + "citationCount": 0, + "citationsOverTime": [], + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-01-31T12:41:28.000Z", + "registered": "2023-01-31T12:41:28.000Z", + "published": "2023", + "updated": "2023-08-31T15:51:40.000Z" }, - { - "id": "https://orcid.org/0000-0003-4448-3844", - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Paul", - "familyName": "Vierkant", - "affiliations": [{ "name": "DataCite" }] + "relationships": { + "client": { + "data": { + "id": "datacite.blog", + "type": "clients" + } + }, + "provider": { + "data": { + "id": "datacite", + "type": "providers" + } + }, + "media": { + "data": { + "id": "10.5438/zhyx-n122", + "type": "media" + } + }, + "references": { + "data": [] + }, + "citations": { + "data": [] + }, + "parts": { + "data": [] + }, + "partOf": { + "data": [] + }, + "versions": { + "data": [] + }, + "versionOf": { + "data": [] + } } - ], - "date": { "published": "2023" }, - "descriptions": [ - { - "description": "At the end of 2022, we conducted our annual member survey, asking our members about their experience being part of the DataCite community and how DataCite services might alleviate any challenges they are facing. We thank the many members who participated in the survey for sharing their valuable perspectives with us. After analyzing their insights, we are pleased to publish the following summary of the main outcomes.", - "type": "Abstract", - "language": "en" - } - ], - "identifiers": [ - { - "identifier": "https://doi.org/10.5438/zhyx-n122", - "identifierType": "DOI" - } - ], - "language": "en", - "license": { - "id": "CC-BY-4.0", - "url": "https://creativecommons.org/licenses/by/4.0/legalcode" - }, - "provider": "DataCite", - "publisher": { "name": "DataCite" }, - "references": [ - { "key": "ref1", "id": "https://doi.org/10.5438/k1gw-y723" }, - { "key": "ref2", "id": "https://doi.org/10.5438/1tek-7522" }, - { "key": "ref3", "id": "https://doi.org/10.5438/cnsf-ec48" }, - { "key": "ref4", "id": "https://doi.org/10.5438/q34f-c696" }, - { "key": "ref5", "id": "https://doi.org/10.5438/vacd-ve62" }, - { "key": "ref6", "id": "https://doi.org/10.5438/h7x6-qf64" }, - { "key": "ref7", "id": "https://doi.org/10.5438/vjz9-kx84" }, - { "key": "ref8", "id": "https://doi.org/10.5438/ptv6-vf36" } - ], - "titles": [{ "title": "DataCite Member Survey 2022", "language": "en" }], - "url": "https://datacite.org/blog/datacite-member-survey-2022", - "version": "1.0" + } } diff --git a/datacite/testdata/10.6071_z7wc73.json b/datacite/testdata/10.6071_z7wc73.json index 764377c..7375cd1 100644 --- a/datacite/testdata/10.6071_z7wc73.json +++ b/datacite/testdata/10.6071_z7wc73.json @@ -1,221 +1,821 @@ { - "id": "https://doi.org/10.6071/z7wc73", - "type": "Dataset", - "container": {}, - "contributors": [ - { - "id": "https://orcid.org/0000-0002-0811-8535", - "type": "Person", - "givenName": "Roger", - "familyName": "Bales", - "affiliations": [ - { - "name": "University of California, Merced" + "data": { + "id": "10.6071/z7wc73", + "type": "dois", + "attributes": { + "doi": "10.6071/z7wc73", + "prefix": "10.6071", + "suffix": "z7wc73", + "identifiers": [], + "alternateIdentifiers": [], + "creators": [ + { + "name": "Bales, Roger", + "nameType": "Personal", + "givenName": "Roger", + "familyName": "Bales", + "affiliation": ["University of California, Merced"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0002-0811-8535", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Meadows, Matt", + "nameType": "Personal", + "givenName": "Matt", + "familyName": "Meadows", + "affiliation": ["University of California, Merced"], + "nameIdentifiers": [] + }, + { + "name": "Stacy, Erin", + "nameType": "Personal", + "givenName": "Erin", + "familyName": "Stacy", + "affiliation": ["University of California, Merced"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0002-8862-1404", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Conklin, Martha", + "nameType": "Personal", + "givenName": "Martha", + "familyName": "Conklin", + "affiliation": ["University of California, Merced"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0002-9627-2427", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Meng, Xiande", + "nameType": "Personal", + "givenName": "Xiande", + "familyName": "Meng", + "affiliation": ["University of California, Merced"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0001-5344-0673", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Southern Sierra Critical Zone Observatory, SSCZO", + "nameType": "Personal", + "givenName": "SSCZO", + "familyName": "Southern Sierra Critical Zone Observatory", + "affiliation": ["National Science Foundation"], + "nameIdentifiers": [] } ], - "contributorRoles": [ - "Author" - ] - }, - { - "type": "Person", - "givenName": "Matt", - "familyName": "Meadows", - "affiliations": [ + "titles": [ { - "name": "University of California, Merced" + "title": "Southern Sierra Critical Zone Observatory (SSCZO), Providence Creek meteorological data, soil moisture and temperature, snow depth and air temperature" } ], - "contributorRoles": [ - "Author" - ] - }, - { - "id": "https://orcid.org/0000-0002-8862-1404", - "type": "Person", - "givenName": "Erin", - "familyName": "Stacy", - "affiliations": [ + "publisher": "Dryad", + "container": {}, + "publicationYear": 2016, + "subjects": [ + { + "subject": "air temperature", + "schemeUri": "http://vocab.lternet.edu", + "subjectScheme": "LTER Controlled Vocabulary" + }, + { + "subject": "Earth sciences", + "schemeUri": "https://github.com/PLOS/plos-thesaurus", + "subjectScheme": "PLOS Subject Area Thesaurus" + }, + { + "subject": "Nevada, Sierra (mountain range)", + "schemeUri": "http://www.getty.edu/research/tools/vocabularies/tgn/", + "subjectScheme": "Getty Thesaurus of Geographic Names" + }, + { + "subject": "snow depth", + "schemeUri": "http://vocab.lternet.edu", + "subjectScheme": "LTER Controlled Vocabulary" + }, + { + "subject": "soil temperature", + "schemeUri": "http://vocab.lternet.edu", + "subjectScheme": "LTER Controlled Vocabulary" + }, { - "name": "University of California, Merced" + "subject": "water balance", + "schemeUri": "http://vocab.lternet.edu", + "subjectScheme": "LTER Controlled Vocabulary" + }, + { + "subject": "FOS: Environmental engineering", + "subjectScheme": "fos" + }, + { + "subject": "FOS: Environmental engineering", + "schemeUri": "http://www.oecd.org/science/inno/38235147.pdf", + "subjectScheme": "Fields of Science and Technology (FOS)" } ], - "contributorRoles": [ - "Author" - ] - }, - { - "id": "https://orcid.org/0000-0002-9627-2427", - "type": "Person", - "givenName": "Martha", - "familyName": "Conklin", - "affiliations": [ + "contributors": [ + { + "name": "Bales, Roger", + "nameType": "Personal", + "givenName": "Roger", + "familyName": "Bales", + "affiliation": [], + "contributorType": "ProjectLeader", + "nameIdentifiers": [] + }, + { + "name": "Meadows, Matt", + "nameType": "Personal", + "givenName": "Matt", + "familyName": "Meadows", + "affiliation": [], + "contributorType": "DataCollector", + "nameIdentifiers": [] + }, + { + "name": "Meng, Xiande", + "nameType": "Personal", + "givenName": "Xiande", + "familyName": "Meng", + "affiliation": [], + "contributorType": "DataManager", + "nameIdentifiers": [] + }, { - "name": "University of California, Merced" + "name": "Southern Sierra Critical Zone Observatory", + "affiliation": [], + "contributorType": "ResearchGroup", + "nameIdentifiers": [] } ], - "contributorRoles": [ - "Author" - ] - }, - { - "id": "https://orcid.org/0000-0001-5344-0673", - "type": "Person", - "givenName": "Xiande", - "familyName": "Meng", - "affiliations": [ + "dates": [ + { + "date": "2016-03-14T17:02:02Z", + "dateType": "Issued" + }, { - "name": "University of California, Merced" + "date": "2016-03-14T17:02:02Z", + "dateType": "Available" } ], - "contributorRoles": [ - "Author" - ] - }, - { - "type": "Person", - "givenName": "SSCZO", - "familyName": "Southern Sierra Critical Zone Observatory", - "affiliations": [ + "language": "en", + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "dataset", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ { - "name": "National Science Foundation" + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5194/essd-10-1795-2018", + "relatedIdentifierType": "DOI" } ], - "contributorRoles": [ - "Author" - ] - }, - { - "type": "Person", - "givenName": "Roger", - "familyName": "Bales", - "contributorRoles": [ - "ProjectLeader" - ] - }, - { - "type": "Person", - "givenName": "Matt", - "familyName": "Meadows", - "contributorRoles": [ - "DataCollector" - ] - }, - { - "type": "Person", - "givenName": "Xiande", - "familyName": "Meng", - "contributorRoles": [ - "DataManager" - ] - }, - { - "type": "Organization", - "name": "Southern Sierra Critical Zone Observatory", - "contributorRoles": [ - "ResearchGroup" - ] - } - ], - "date": { - "published": "2016-03-14T17:02:02Z", - "available": "2016-03-14T17:02:02Z" - }, - "descriptions": [ - { - "description": "Snow depth, soil moisture and soil temperature are measured at lower\n Providence South facing (LowMetS) and North facing (LowMetN), Upper\n Providence South facing (UpMetS), North facing (UpMetN) and Flat aspect\n (UpMetF), and Subcatchment basin P301 (P301) with a wireless sensor\n network, using a Campbell Scientific logger to control peripheral devices.\n Snow depth is measured in the open, at the drip edge and under canopies.\n Soil moisture and temperature are measured at 10, 30, 60 and 90 cm depths\n coincident with the snow depth nodes. 10 watt solar panels provides power\n for monitoring at 10 minute intervals. Raw data have been processed to\n level 1 (QA/QC) and level 2 (gap-filled, derived) data. Time period: water\n year 2008 through water year 2012 (version 1), 2013 to 2016 (version 2,\n zip files), 2017 to 2021 (version 3, zip files).", - "type": "Abstract" - }, - { - "description": "Soil volumetric water content (VWC) and soil temperature measured using\n Decagon Devices ECHO-TM at depths of 10, 30, 60, an 90 cm below the\n mineral soil surface. Sensor now equivalent to 5TM\n (http://www.decagon.com/soil-moisture-sensors/). Distance to snow/soil\n surface and air temperature measured with Judd Communications ultrasonic\n depth sensor, using analog control ( http://www.juddcom.com/ ). Data\n control and storage on Campbell Scientific CR1000 datalogger, using\n AM16/32B multiplexer ( http://www.campbellsci.com ). Program for data\n acquisition are located on UC Merced-SNRI digital library (\n https://sndl.ucmerced.edu/files/MHWG/Field/Southern...)", - "type": "Methods" - }, - { - "description": "Lower and upper Providence Creek, Subcatchment basin P301.acde: white fir\n drip edge; acuc: white fir under canopy; cdde: incense-cedar drip edge;\n cduc: incense-cedar under canopy; open: open canopy; plde: sugar pine drip\n edge; pluc: sugar pine under canopy; ppde: Ponderosa pine drip; edge ppde:\n Ponderosa pine drip edge; ppuc: Ponderosa pine under canopy; ppuc:\n Ponderosa pine under canopy; qkde: black oak drip edge; qkuc: black oak\n under canopy. SSCZOKREW-Providence.gdb: boundaries, met stations, sensor\n nodes, stream gauging. Please see README and\n Providence_met_soil_snow_metadata.xml for additional information", - "type": "Other" - } - ], - "fundingReferences": [ - { - "funderIdentifier": "https://ror.org/021nxhr62", - "funderIdentifierType": "ROR", - "funderName": "National Science Foundation", - "awardNumber": "1331939" + "relatedItems": [], + "sizes": ["2592742591 bytes"], + "formats": [], + "version": "7", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Snow depth, soil moisture and soil temperature are measured at lower\n Providence South facing (LowMetS) and North facing (LowMetN), Upper\n Providence South facing (UpMetS), North facing (UpMetN) and Flat aspect\n (UpMetF), and Subcatchment basin P301 (P301) with a wireless sensor\n network, using a Campbell Scientific logger to control peripheral devices.\n Snow depth is measured in the open, at the drip edge and under canopies.\n Soil moisture and temperature are measured at 10, 30, 60 and 90 cm depths\n coincident with the snow depth nodes. 10 watt solar panels provides power\n for monitoring at 10 minute intervals. Raw data have been processed to\n level 1 (QA/QC) and level 2 (gap-filled, derived) data. Time period: water\n year 2008 through water year 2012 (version 1), 2013 to 2016 (version 2,\n zip files), 2017 to 2021 (version 3, zip files).", + "descriptionType": "Abstract" + }, + { + "description": "Soil volumetric water content (VWC) and soil temperature measured using\n Decagon Devices ECHO-TM at depths of 10, 30, 60, an 90 cm below the\n mineral soil surface. Sensor now equivalent to 5TM\n (http://www.decagon.com/soil-moisture-sensors/). Distance to snow/soil\n surface and air temperature measured with Judd Communications ultrasonic\n depth sensor, using analog control ( http://www.juddcom.com/ ). Data\n control and storage on Campbell Scientific CR1000 datalogger, using\n AM16/32B multiplexer ( http://www.campbellsci.com ). Program for data\n acquisition are located on UC Merced-SNRI digital library (\n https://sndl.ucmerced.edu/files/MHWG/Field/Southern...)", + "descriptionType": "Methods" + }, + { + "description": "Lower and upper Providence Creek, Subcatchment basin P301.acde: white fir\n drip edge; acuc: white fir under canopy; cdde: incense-cedar drip edge;\n cduc: incense-cedar under canopy; open: open canopy; plde: sugar pine drip\n edge; pluc: sugar pine under canopy; ppde: Ponderosa pine drip; edge ppde:\n Ponderosa pine drip edge; ppuc: Ponderosa pine under canopy; ppuc:\n Ponderosa pine under canopy; qkde: black oak drip edge; qkuc: black oak\n under canopy. SSCZOKREW-Providence.gdb: boundaries, met stations, sensor\n nodes, stream gauging. Please see README and\n Providence_met_soil_snow_metadata.xml for additional information", + "descriptionType": "Other" + } + ], + "geoLocations": [ + { + "geoLocationBox": { + "eastBoundLongitude": "-119.182", + "northBoundLatitude": "37.075", + "southBoundLatitude": "37.046", + "westBoundLongitude": "-119.211" + }, + "geoLocationPlace": "Providence Creek (Lower, Upper and P301)", + "geoLocationPoint": { + "pointLatitude": "37.047756", + "pointLongitude": "-119.221094" + } + }, + { + "geoLocationBox": { + "eastBoundLongitude": "-119.182", + "northBoundLatitude": "37.075", + "southBoundLatitude": "37.046", + "westBoundLongitude": "-119.211" + } + } + ], + "fundingReferences": [ + { + "schemeUri": "https://ror.org", + "funderName": "National Science Foundation", + "awardNumber": "1331939", + "funderIdentifier": "https://ror.org/021nxhr62", + "funderIdentifierType": "ROR" + }, + { + "schemeUri": "https://ror.org", + "funderName": "National Science Foundation", + "awardNumber": "0725097", + "funderIdentifier": "https://ror.org/021nxhr62", + "funderIdentifierType": "ROR" + } + ], + "xml": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuNjA3MS9aN1dDNzM8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZT5CYWxlcywgUm9nZXI8L2NyZWF0b3JOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHA6Ly9vcmNpZC5vcmcvIj4wMDAwLTAwMDItMDgxMS04NTM1PC9uYW1lSWRlbnRpZmllcj4KICAgICAgPGFmZmlsaWF0aW9uIGFmZmlsaWF0aW9uSWRlbnRpZmllcj0iaHR0cHM6Ly9yb3Iub3JnLzAwZDlhaDEwNSIgYWZmaWxpYXRpb25JZGVudGlmaWVyU2NoZW1lPSJST1IiIHNjaGVtZVVSST0iaHR0cHM6Ly9yb3Iub3JnIj5Vbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEsIE1lcmNlZDwvYWZmaWxpYXRpb24+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lPk1lYWRvd3MsIE1hdHQ8L2NyZWF0b3JOYW1lPgogICAgICA8YWZmaWxpYXRpb24gYWZmaWxpYXRpb25JZGVudGlmaWVyPSJodHRwczovL3Jvci5vcmcvMDBkOWFoMTA1IiBhZmZpbGlhdGlvbklkZW50aWZpZXJTY2hlbWU9IlJPUiIgc2NoZW1lVVJJPSJodHRwczovL3Jvci5vcmciPlVuaXZlcnNpdHkgb2YgQ2FsaWZvcm5pYSwgTWVyY2VkPC9hZmZpbGlhdGlvbj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWU+U3RhY3ksIEVyaW48L2NyZWF0b3JOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHA6Ly9vcmNpZC5vcmcvIj4wMDAwLTAwMDItODg2Mi0xNDA0PC9uYW1lSWRlbnRpZmllcj4KICAgICAgPGFmZmlsaWF0aW9uIGFmZmlsaWF0aW9uSWRlbnRpZmllcj0iaHR0cHM6Ly9yb3Iub3JnLzAwZDlhaDEwNSIgYWZmaWxpYXRpb25JZGVudGlmaWVyU2NoZW1lPSJST1IiIHNjaGVtZVVSST0iaHR0cHM6Ly9yb3Iub3JnIj5Vbml2ZXJzaXR5IG9mIENhbGlmb3JuaWEsIE1lcmNlZDwvYWZmaWxpYXRpb24+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lPkNvbmtsaW4sIE1hcnRoYTwvY3JlYXRvck5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cDovL29yY2lkLm9yZy8iPjAwMDAtMDAwMi05NjI3LTI0Mjc8L25hbWVJZGVudGlmaWVyPgogICAgICA8YWZmaWxpYXRpb24gYWZmaWxpYXRpb25JZGVudGlmaWVyPSJodHRwczovL3Jvci5vcmcvMDBkOWFoMTA1IiBhZmZpbGlhdGlvbklkZW50aWZpZXJTY2hlbWU9IlJPUiIgc2NoZW1lVVJJPSJodHRwczovL3Jvci5vcmciPlVuaXZlcnNpdHkgb2YgQ2FsaWZvcm5pYSwgTWVyY2VkPC9hZmZpbGlhdGlvbj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWU+TWVuZywgWGlhbmRlPC9jcmVhdG9yTmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwOi8vb3JjaWQub3JnLyI+MDAwMC0wMDAxLTUzNDQtMDY3MzwvbmFtZUlkZW50aWZpZXI+CiAgICAgIDxhZmZpbGlhdGlvbiBhZmZpbGlhdGlvbklkZW50aWZpZXI9Imh0dHBzOi8vcm9yLm9yZy8wMGQ5YWgxMDUiIGFmZmlsaWF0aW9uSWRlbnRpZmllclNjaGVtZT0iUk9SIiBzY2hlbWVVUkk9Imh0dHBzOi8vcm9yLm9yZyI+VW5pdmVyc2l0eSBvZiBDYWxpZm9ybmlhLCBNZXJjZWQ8L2FmZmlsaWF0aW9uPgogICAgPC9jcmVhdG9yPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZT5Tb3V0aGVybiBTaWVycmEgQ3JpdGljYWwgWm9uZSBPYnNlcnZhdG9yeSwgU1NDWk88L2NyZWF0b3JOYW1lPgogICAgICA8YWZmaWxpYXRpb24gYWZmaWxpYXRpb25JZGVudGlmaWVyPSJodHRwczovL3Jvci5vcmcvMDIxbnhocjYyIiBhZmZpbGlhdGlvbklkZW50aWZpZXJTY2hlbWU9IlJPUiIgc2NoZW1lVVJJPSJodHRwczovL3Jvci5vcmciPk5hdGlvbmFsIFNjaWVuY2UgRm91bmRhdGlvbjwvYWZmaWxpYXRpb24+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPgogICAgICBTb3V0aGVybiBTaWVycmEgQ3JpdGljYWwgWm9uZSBPYnNlcnZhdG9yeSAoU1NDWk8pLCBQcm92aWRlbmNlIENyZWVrCiAgICAgIG1ldGVvcm9sb2dpY2FsIGRhdGEsIHNvaWwgbW9pc3R1cmUgYW5kIHRlbXBlcmF0dXJlLCBzbm93IGRlcHRoIGFuZCBhaXIKICAgICAgdGVtcGVyYXR1cmUKICAgIDwvdGl0bGU+CiAgPC90aXRsZXM+CiAgPHB1Ymxpc2hlciBwdWJsaXNoZXJJZGVudGlmaWVyPSJodHRwczovL3Jvci5vcmcvMDB4Nmg1bjk1IiBwdWJsaXNoZXJJZGVudGlmaWVyU2NoZW1lPSJST1IiIHNjaGVtZVVSST0iaHR0cHM6Ly9yb3Iub3JnLyI+RHJ5YWQ8L3B1Ymxpc2hlcj4KICA8cmVzb3VyY2VUeXBlIHJlc291cmNlVHlwZUdlbmVyYWw9IkRhdGFzZXQiPmRhdGFzZXQ8L3Jlc291cmNlVHlwZT4KICA8cHVibGljYXRpb25ZZWFyPjIwMTY8L3B1YmxpY2F0aW9uWWVhcj4KICA8c3ViamVjdHM+CiAgICA8c3ViamVjdCBzdWJqZWN0U2NoZW1lPSJMVEVSIENvbnRyb2xsZWQgVm9jYWJ1bGFyeSIgc2NoZW1lVVJJPSJodHRwOi8vdm9jYWIubHRlcm5ldC5lZHUiPmFpciB0ZW1wZXJhdHVyZTwvc3ViamVjdD4KICAgIDxzdWJqZWN0IHN1YmplY3RTY2hlbWU9IlBMT1MgU3ViamVjdCBBcmVhIFRoZXNhdXJ1cyIgc2NoZW1lVVJJPSJodHRwczovL2dpdGh1Yi5jb20vUExPUy9wbG9zLXRoZXNhdXJ1cyI+RWFydGggc2NpZW5jZXM8L3N1YmplY3Q+CiAgICA8c3ViamVjdCBzdWJqZWN0U2NoZW1lPSJHZXR0eSBUaGVzYXVydXMgb2YgR2VvZ3JhcGhpYyBOYW1lcyIgc2NoZW1lVVJJPSJodHRwOi8vd3d3LmdldHR5LmVkdS9yZXNlYXJjaC90b29scy92b2NhYnVsYXJpZXMvdGduLyI+TmV2YWRhLCBTaWVycmEgKG1vdW50YWluIHJhbmdlKTwvc3ViamVjdD4KICAgIDxzdWJqZWN0IHN1YmplY3RTY2hlbWU9IkxURVIgQ29udHJvbGxlZCBWb2NhYnVsYXJ5IiBzY2hlbWVVUkk9Imh0dHA6Ly92b2NhYi5sdGVybmV0LmVkdSI+c25vdyBkZXB0aDwvc3ViamVjdD4KICAgIDxzdWJqZWN0IHN1YmplY3RTY2hlbWU9IkxURVIgQ29udHJvbGxlZCBWb2NhYnVsYXJ5IiBzY2hlbWVVUkk9Imh0dHA6Ly92b2NhYi5sdGVybmV0LmVkdSI+c29pbCB0ZW1wZXJhdHVyZTwvc3ViamVjdD4KICAgIDxzdWJqZWN0IHN1YmplY3RTY2hlbWU9IkxURVIgQ29udHJvbGxlZCBWb2NhYnVsYXJ5IiBzY2hlbWVVUkk9Imh0dHA6Ly92b2NhYi5sdGVybmV0LmVkdSI+d2F0ZXIgYmFsYW5jZTwvc3ViamVjdD4KICAgIDxzdWJqZWN0IHN1YmplY3RTY2hlbWU9ImZvcyI+Rk9TOiBFbnZpcm9ubWVudGFsIGVuZ2luZWVyaW5nPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPk5hdGlvbmFsIFNjaWVuY2UgRm91bmRhdGlvbjwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IlJPUiI+aHR0cHM6Ly9yb3Iub3JnLzAyMW54aHI2MjwvZnVuZGVySWRlbnRpZmllcj4KICAgICAgPGF3YXJkTnVtYmVyPjEzMzE5Mzk8L2F3YXJkTnVtYmVyPgogICAgPC9mdW5kaW5nUmVmZXJlbmNlPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPk5hdGlvbmFsIFNjaWVuY2UgRm91bmRhdGlvbjwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IlJPUiI+aHR0cHM6Ly9yb3Iub3JnLzAyMW54aHI2MjwvZnVuZGVySWRlbnRpZmllcj4KICAgICAgPGF3YXJkTnVtYmVyPjA3MjUwOTc8L2F3YXJkTnVtYmVyPgogICAgPC9mdW5kaW5nUmVmZXJlbmNlPgogIDwvZnVuZGluZ1JlZmVyZW5jZXM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IlByb2plY3RMZWFkZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lPkJhbGVzLCBSb2dlcjwvY29udHJpYnV0b3JOYW1lPgogICAgPC9jb250cmlidXRvcj4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lPk1lYWRvd3MsIE1hdHQ8L2NvbnRyaWJ1dG9yTmFtZT4KICAgIDwvY29udHJpYnV0b3I+CiAgICA8Y29udHJpYnV0b3IgY29udHJpYnV0b3JUeXBlPSJEYXRhTWFuYWdlciI+CiAgICAgIDxjb250cmlidXRvck5hbWU+TWVuZywgWGlhbmRlPC9jb250cmlidXRvck5hbWU+CiAgICA8L2NvbnRyaWJ1dG9yPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iUmVzZWFyY2hHcm91cCI+CiAgICAgIDxjb250cmlidXRvck5hbWU+U291dGhlcm4gU2llcnJhIENyaXRpY2FsIFpvbmUgT2JzZXJ2YXRvcnk8L2NvbnRyaWJ1dG9yTmFtZT4KICAgIDwvY29udHJpYnV0b3I+CiAgPC9jb250cmlidXRvcnM+CiAgPGRhdGVzPgogICAgPGRhdGUgZGF0ZVR5cGU9Iklzc3VlZCI+MjAxNi0wMy0xNFQxNzowMjowMlo8L2RhdGU+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iQXZhaWxhYmxlIj4yMDE2LTAzLTE0VDE3OjAyOjAyWjwvZGF0ZT4KICA8L2RhdGVzPgogIDxsYW5ndWFnZT5lbjwvbGFuZ3VhZ2U+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGlvblR5cGU9IklzQ2l0ZWRCeSIgcmVsYXRlZElkZW50aWZpZXJUeXBlPSJET0kiPmh0dHBzOi8vZG9pLm9yZy8xMC41MTk0L2Vzc2QtMTAtMTc5NS0yMDE4PC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8c2l6ZXM+CiAgICA8c2l6ZT4yNTkyNzQyNTkxIGJ5dGVzPC9zaXplPgogIDwvc2l6ZXM+CiAgPHZlcnNpb24+NzwvdmVyc2lvbj4KICA8cmlnaHRzTGlzdD4KICAgIDxyaWdodHMgcmlnaHRzVVJJPSJodHRwczovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnkvNC4wLyI+Q3JlYXRpdmUgQ29tbW9ucyBBdHRyaWJ1dGlvbiA0LjAgSW50ZXJuYXRpb25hbCAoQ0MgQlkgNC4wKTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPgogICAgICBTbm93IGRlcHRoLCBzb2lsIG1vaXN0dXJlIGFuZCBzb2lsIHRlbXBlcmF0dXJlIGFyZSBtZWFzdXJlZCBhdCBsb3dlcgogICAgICBQcm92aWRlbmNlIFNvdXRoIGZhY2luZyAoTG93TWV0UykgYW5kIE5vcnRoIGZhY2luZyAoTG93TWV0TiksIFVwcGVyCiAgICAgIFByb3ZpZGVuY2UgU291dGggZmFjaW5nIChVcE1ldFMpLCBOb3J0aCBmYWNpbmcgKFVwTWV0TikgYW5kIEZsYXQgYXNwZWN0CiAgICAgIChVcE1ldEYpLCBhbmQgU3ViY2F0Y2htZW50IGJhc2luIFAzMDEgKFAzMDEpIHdpdGggYSB3aXJlbGVzcyBzZW5zb3IKICAgICAgbmV0d29yaywgdXNpbmcgYSBDYW1wYmVsbCBTY2llbnRpZmljIGxvZ2dlciB0byBjb250cm9sIHBlcmlwaGVyYWwgZGV2aWNlcy4KICAgICAgU25vdyBkZXB0aCBpcyBtZWFzdXJlZCBpbiB0aGUgb3BlbiwgYXQgdGhlIGRyaXAgZWRnZSBhbmQgdW5kZXIgY2Fub3BpZXMuCiAgICAgIFNvaWwgbW9pc3R1cmUgYW5kIHRlbXBlcmF0dXJlIGFyZSBtZWFzdXJlZCBhdCAxMCwgMzAsIDYwIGFuZCA5MCBjbSBkZXB0aHMKICAgICAgY29pbmNpZGVudCB3aXRoIHRoZSBzbm93IGRlcHRoIG5vZGVzLiAxMCB3YXR0IHNvbGFyIHBhbmVscyBwcm92aWRlcyBwb3dlcgogICAgICBmb3IgbW9uaXRvcmluZyBhdCAxMCBtaW51dGUgaW50ZXJ2YWxzLiBSYXcgZGF0YSBoYXZlIGJlZW4gcHJvY2Vzc2VkIHRvCiAgICAgIGxldmVsIDEgKFFBL1FDKSBhbmQgbGV2ZWwgMiAoZ2FwLWZpbGxlZCwgZGVyaXZlZCkgZGF0YS4gVGltZSBwZXJpb2Q6IHdhdGVyCiAgICAgIHllYXIgMjAwOCB0aHJvdWdoIHdhdGVyIHllYXIgMjAxMiAodmVyc2lvbiAxKSwgMjAxMyB0byAyMDE2ICh2ZXJzaW9uIDIsCiAgICAgIHppcCBmaWxlcyksIDIwMTcgdG8gMjAyMSAodmVyc2lvbiAzLCB6aXAgZmlsZXMpLgogICAgPC9kZXNjcmlwdGlvbj4KICAgIDxkZXNjcmlwdGlvbiBkZXNjcmlwdGlvblR5cGU9Ik1ldGhvZHMiPgogICAgICBTb2lsIHZvbHVtZXRyaWMgd2F0ZXIgY29udGVudCAoVldDKSBhbmQgc29pbCB0ZW1wZXJhdHVyZSBtZWFzdXJlZCB1c2luZwogICAgICBEZWNhZ29uIERldmljZXMgRUNITy1UTSBhdCBkZXB0aHMgb2YgMTAsIDMwLCA2MCwgYW4gOTAgY20gYmVsb3cgdGhlCiAgICAgIG1pbmVyYWwgc29pbCBzdXJmYWNlLiBTZW5zb3Igbm93IGVxdWl2YWxlbnQgdG8gNVRNCiAgICAgIChodHRwOi8vd3d3LmRlY2Fnb24uY29tL3NvaWwtbW9pc3R1cmUtc2Vuc29ycy8pLiBEaXN0YW5jZSB0byBzbm93L3NvaWwKICAgICAgc3VyZmFjZSBhbmQgYWlyIHRlbXBlcmF0dXJlIG1lYXN1cmVkIHdpdGggSnVkZCBDb21tdW5pY2F0aW9ucyB1bHRyYXNvbmljCiAgICAgIGRlcHRoIHNlbnNvciwgdXNpbmcgYW5hbG9nIGNvbnRyb2wgKCBodHRwOi8vd3d3Lmp1ZGRjb20uY29tLyApLiBEYXRhCiAgICAgIGNvbnRyb2wgYW5kIHN0b3JhZ2Ugb24gQ2FtcGJlbGwgU2NpZW50aWZpYyBDUjEwMDAgZGF0YWxvZ2dlciwgdXNpbmcKICAgICAgQU0xNi8zMkIgbXVsdGlwbGV4ZXIgKCBodHRwOi8vd3d3LmNhbXBiZWxsc2NpLmNvbSApLiBQcm9ncmFtIGZvciBkYXRhCiAgICAgIGFjcXVpc2l0aW9uIGFyZSBsb2NhdGVkIG9uIFVDIE1lcmNlZC1TTlJJIGRpZ2l0YWwgbGlicmFyeSAoCiAgICAgIGh0dHBzOi8vc25kbC51Y21lcmNlZC5lZHUvZmlsZXMvTUhXRy9GaWVsZC9Tb3V0aGVybi4uLikKICAgIDwvZGVzY3JpcHRpb24+CiAgICA8ZGVzY3JpcHRpb24gZGVzY3JpcHRpb25UeXBlPSJPdGhlciI+CiAgICAgIExvd2VyIGFuZCB1cHBlciBQcm92aWRlbmNlIENyZWVrLCBTdWJjYXRjaG1lbnQgYmFzaW4gUDMwMS5hY2RlOiB3aGl0ZSBmaXIKICAgICAgZHJpcCBlZGdlOyBhY3VjOiB3aGl0ZSBmaXIgdW5kZXIgY2Fub3B5OyBjZGRlOiBpbmNlbnNlLWNlZGFyIGRyaXAgZWRnZTsKICAgICAgY2R1YzogaW5jZW5zZS1jZWRhciB1bmRlciBjYW5vcHk7IG9wZW46IG9wZW4gY2Fub3B5OyBwbGRlOiBzdWdhciBwaW5lIGRyaXAKICAgICAgZWRnZTsgcGx1Yzogc3VnYXIgcGluZSB1bmRlciBjYW5vcHk7IHBwZGU6IFBvbmRlcm9zYSBwaW5lIGRyaXA7IGVkZ2UgcHBkZToKICAgICAgUG9uZGVyb3NhIHBpbmUgZHJpcCBlZGdlOyBwcHVjOiBQb25kZXJvc2EgcGluZSB1bmRlciBjYW5vcHk7IHBwdWM6CiAgICAgIFBvbmRlcm9zYSBwaW5lIHVuZGVyIGNhbm9weTsgcWtkZTogYmxhY2sgb2FrIGRyaXAgZWRnZTsgcWt1YzogYmxhY2sgb2FrCiAgICAgIHVuZGVyIGNhbm9weS4gU1NDWk9LUkVXLVByb3ZpZGVuY2UuZ2RiOiBib3VuZGFyaWVzLCBtZXQgc3RhdGlvbnMsIHNlbnNvcgogICAgICBub2Rlcywgc3RyZWFtIGdhdWdpbmcuIFBsZWFzZSBzZWUgUkVBRE1FIGFuZAogICAgICBQcm92aWRlbmNlX21ldF9zb2lsX3Nub3dfbWV0YWRhdGEueG1sIGZvciBhZGRpdGlvbmFsIGluZm9ybWF0aW9uCiAgICA8L2Rlc2NyaXB0aW9uPgogIDwvZGVzY3JpcHRpb25zPgogIDxnZW9Mb2NhdGlvbnM+CiAgICA8Z2VvTG9jYXRpb24+CiAgICAgIDxnZW9Mb2NhdGlvblBvaW50PgogICAgICAgIDxwb2ludExhdGl0dWRlPjM3LjA0Nzc1NjwvcG9pbnRMYXRpdHVkZT4KICAgICAgICA8cG9pbnRMb25naXR1ZGU+LTExOS4yMjEwOTQ8L3BvaW50TG9uZ2l0dWRlPgogICAgICA8L2dlb0xvY2F0aW9uUG9pbnQ+CiAgICAgIDxnZW9Mb2NhdGlvbkJveD4KICAgICAgICA8d2VzdEJvdW5kTG9uZ2l0dWRlPi0xMTkuMjExPC93ZXN0Qm91bmRMb25naXR1ZGU+CiAgICAgICAgPGVhc3RCb3VuZExvbmdpdHVkZT4tMTE5LjE4MjwvZWFzdEJvdW5kTG9uZ2l0dWRlPgogICAgICAgIDxzb3V0aEJvdW5kTGF0aXR1ZGU+MzcuMDQ2PC9zb3V0aEJvdW5kTGF0aXR1ZGU+CiAgICAgICAgPG5vcnRoQm91bmRMYXRpdHVkZT4zNy4wNzU8L25vcnRoQm91bmRMYXRpdHVkZT4KICAgICAgPC9nZW9Mb2NhdGlvbkJveD4KICAgICAgPGdlb0xvY2F0aW9uUGxhY2U+UHJvdmlkZW5jZSBDcmVlayAoTG93ZXIsIFVwcGVyIGFuZCBQMzAxKTwvZ2VvTG9jYXRpb25QbGFjZT4KICAgIDwvZ2VvTG9jYXRpb24+CiAgICA8Z2VvTG9jYXRpb24+CiAgICAgIDxnZW9Mb2NhdGlvbkJveD4KICAgICAgICA8d2VzdEJvdW5kTG9uZ2l0dWRlPi0xMTkuMjExPC93ZXN0Qm91bmRMb25naXR1ZGU+CiAgICAgICAgPGVhc3RCb3VuZExvbmdpdHVkZT4tMTE5LjE4MjwvZWFzdEJvdW5kTG9uZ2l0dWRlPgogICAgICAgIDxzb3V0aEJvdW5kTGF0aXR1ZGU+MzcuMDQ2PC9zb3V0aEJvdW5kTGF0aXR1ZGU+CiAgICAgICAgPG5vcnRoQm91bmRMYXRpdHVkZT4zNy4wNzU8L25vcnRoQm91bmRMYXRpdHVkZT4KICAgICAgPC9nZW9Mb2NhdGlvbkJveD4KICAgIDwvZ2VvTG9jYXRpb24+CiAgPC9nZW9Mb2NhdGlvbnM+CjwvcmVzb3VyY2U+", + "url": "https://datadryad.org/stash/dataset/doi:10.6071/Z7WC73", + "contentUrl": null, + "metadataVersion": 23, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 5536, + "viewsOverTime": [ + { + "yearMonth": "2018-04", + "total": 290 + }, + { + "yearMonth": "2018-09", + "total": 254 + }, + { + "yearMonth": "2018-10", + "total": 179 + }, + { + "yearMonth": "2018-12", + "total": 504 + }, + { + "yearMonth": "2019-01", + "total": 892 + }, + { + "yearMonth": "2019-02", + "total": 128 + }, + { + "yearMonth": "2019-04", + "total": 71 + }, + { + "yearMonth": "2019-05", + "total": 77 + }, + { + "yearMonth": "2019-06", + "total": 53 + }, + { + "yearMonth": "2019-07", + "total": 47 + }, + { + "yearMonth": "2019-09", + "total": 25 + }, + { + "yearMonth": "2019-10", + "total": 128 + }, + { + "yearMonth": "2020-01", + "total": 40 + }, + { + "yearMonth": "2020-02", + "total": 22 + }, + { + "yearMonth": "2020-03", + "total": 3 + }, + { + "yearMonth": "2020-04", + "total": 8 + }, + { + "yearMonth": "2020-05", + "total": 1 + }, + { + "yearMonth": "2020-06", + "total": 10 + }, + { + "yearMonth": "2020-07", + "total": 9 + }, + { + "yearMonth": "2020-08", + "total": 1 + }, + { + "yearMonth": "2020-09", + "total": 13 + }, + { + "yearMonth": "2020-10", + "total": 31 + }, + { + "yearMonth": "2020-11", + "total": 22 + }, + { + "yearMonth": "2020-12", + "total": 11 + }, + { + "yearMonth": "2021-01", + "total": 6 + }, + { + "yearMonth": "2021-02", + "total": 3 + }, + { + "yearMonth": "2021-03", + "total": 1 + }, + { + "yearMonth": "2021-04", + "total": 5 + }, + { + "yearMonth": "2021-05", + "total": 3 + }, + { + "yearMonth": "2021-06", + "total": 9 + }, + { + "yearMonth": "2021-07", + "total": 81 + }, + { + "yearMonth": "2021-08", + "total": 59 + }, + { + "yearMonth": "2021-09", + "total": 61 + }, + { + "yearMonth": "2021-10", + "total": 57 + }, + { + "yearMonth": "2021-11", + "total": 70 + }, + { + "yearMonth": "2021-12", + "total": 76 + }, + { + "yearMonth": "2022-01", + "total": 82 + }, + { + "yearMonth": "2022-02", + "total": 69 + }, + { + "yearMonth": "2022-03", + "total": 124 + }, + { + "yearMonth": "2022-04", + "total": 66 + }, + { + "yearMonth": "2022-05", + "total": 70 + }, + { + "yearMonth": "2022-06", + "total": 48 + }, + { + "yearMonth": "2022-07", + "total": 43 + }, + { + "yearMonth": "2022-08", + "total": 73 + }, + { + "yearMonth": "2022-09", + "total": 108 + }, + { + "yearMonth": "2022-10", + "total": 159 + }, + { + "yearMonth": "2022-11", + "total": 118 + }, + { + "yearMonth": "2022-12", + "total": 105 + }, + { + "yearMonth": "2023-01", + "total": 109 + }, + { + "yearMonth": "2023-02", + "total": 70 + }, + { + "yearMonth": "2023-03", + "total": 97 + }, + { + "yearMonth": "2023-04", + "total": 61 + }, + { + "yearMonth": "2023-05", + "total": 52 + }, + { + "yearMonth": "2023-06", + "total": 58 + }, + { + "yearMonth": "2023-07", + "total": 50 + }, + { + "yearMonth": "2023-08", + "total": 86 + }, + { + "yearMonth": "2023-09", + "total": 96 + }, + { + "yearMonth": "2023-10", + "total": 249 + }, + { + "yearMonth": "2023-11", + "total": 254 + }, + { + "yearMonth": "2023-12", + "total": 22 + }, + { + "yearMonth": "2024-03", + "total": 3 + }, + { + "yearMonth": "2024-04", + "total": 2 + }, + { + "yearMonth": "2024-05", + "total": 2 + }, + { + "yearMonth": "2024-06", + "total": 3 + }, + { + "yearMonth": "2024-08", + "total": 3 + }, + { + "yearMonth": "2024-10", + "total": 4 + } + ], + "downloadCount": 3118, + "downloadsOverTime": [ + { + "yearMonth": "2018-04", + "total": 278 + }, + { + "yearMonth": "2018-09", + "total": 232 + }, + { + "yearMonth": "2018-10", + "total": 155 + }, + { + "yearMonth": "2018-12", + "total": 485 + }, + { + "yearMonth": "2019-01", + "total": 883 + }, + { + "yearMonth": "2019-02", + "total": 108 + }, + { + "yearMonth": "2019-04", + "total": 18 + }, + { + "yearMonth": "2019-05", + "total": 20 + }, + { + "yearMonth": "2019-06", + "total": 4 + }, + { + "yearMonth": "2019-10", + "total": 61 + }, + { + "yearMonth": "2020-02", + "total": 10 + }, + { + "yearMonth": "2020-04", + "total": 5 + }, + { + "yearMonth": "2020-06", + "total": 3 + }, + { + "yearMonth": "2020-07", + "total": 7 + }, + { + "yearMonth": "2020-08", + "total": 1 + }, + { + "yearMonth": "2020-09", + "total": 2 + }, + { + "yearMonth": "2020-10", + "total": 2 + }, + { + "yearMonth": "2020-11", + "total": 5 + }, + { + "yearMonth": "2020-12", + "total": 1 + }, + { + "yearMonth": "2021-02", + "total": 1 + }, + { + "yearMonth": "2021-04", + "total": 1 + }, + { + "yearMonth": "2021-10", + "total": 5 + }, + { + "yearMonth": "2021-11", + "total": 14 + }, + { + "yearMonth": "2021-12", + "total": 12 + }, + { + "yearMonth": "2022-01", + "total": 11 + }, + { + "yearMonth": "2022-02", + "total": 17 + }, + { + "yearMonth": "2022-03", + "total": 50 + }, + { + "yearMonth": "2022-04", + "total": 13 + }, + { + "yearMonth": "2022-05", + "total": 25 + }, + { + "yearMonth": "2022-06", + "total": 2 + }, + { + "yearMonth": "2022-07", + "total": 7 + }, + { + "yearMonth": "2022-08", + "total": 23 + }, + { + "yearMonth": "2022-09", + "total": 40 + }, + { + "yearMonth": "2022-10", + "total": 42 + }, + { + "yearMonth": "2022-11", + "total": 50 + }, + { + "yearMonth": "2022-12", + "total": 23 + }, + { + "yearMonth": "2023-01", + "total": 17 + }, + { + "yearMonth": "2023-02", + "total": 3 + }, + { + "yearMonth": "2023-03", + "total": 19 + }, + { + "yearMonth": "2023-04", + "total": 4 + }, + { + "yearMonth": "2023-05", + "total": 11 + }, + { + "yearMonth": "2023-06", + "total": 15 + }, + { + "yearMonth": "2023-07", + "total": 1 + }, + { + "yearMonth": "2023-08", + "total": 2 + }, + { + "yearMonth": "2023-09", + "total": 3 + }, + { + "yearMonth": "2023-10", + "total": 204 + }, + { + "yearMonth": "2023-11", + "total": 212 + }, + { + "yearMonth": "2023-12", + "total": 5 + }, + { + "yearMonth": "2024-03", + "total": 1 + }, + { + "yearMonth": "2024-04", + "total": 2 + }, + { + "yearMonth": "2024-05", + "total": 0 + }, + { + "yearMonth": "2024-06", + "total": 2 + }, + { + "yearMonth": "2024-08", + "total": 0 + }, + { + "yearMonth": "2024-10", + "total": 1 + } + ], + "referenceCount": 0, + "citationCount": 2, + "citationsOverTime": [ + { + "year": "2024", + "total": 2 + } + ], + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2016-03-14T23:49:45.000Z", + "registered": "2016-03-14T23:49:47.000Z", + "published": "2016", + "updated": "2024-11-09T08:55:35.000Z" }, - { - "funderIdentifier": "https://ror.org/021nxhr62", - "funderIdentifierType": "ROR", - "funderName": "National Science Foundation", - "awardNumber": "0725097" - } - ], - "geoLocations": [ - { - "geoLocationPlace": "Providence Creek (Lower, Upper and P301)", - "geoLocationPoint": { - "pointLongitude": -119.221094, - "pointLatitude": 37.047756 + "relationships": { + "client": { + "data": { + "id": "dryad.dryad", + "type": "clients" + } }, - "geoLocationBox": { - "eastBoundLongitude": -119.182, - "westBoundLongitude": -119.211, - "southBoundLatitude": 37.046, - "northBoundLatitude": 37.075 - } - }, - { - "geoLocationPoint": {}, - "geoLocationBox": { - "eastBoundLongitude": -119.182, - "westBoundLongitude": -119.211, - "southBoundLatitude": 37.046, - "northBoundLatitude": 37.075 + "provider": { + "data": { + "id": "dryad", + "type": "providers" + } + }, + "media": { + "data": { + "id": "10.6071/z7wc73", + "type": "media" + } + }, + "references": { + "data": [] + }, + "citations": { + "data": [ + { + "id": "10.5194/essd-10-1795-2018", + "type": "dois" + }, + { + "id": "10.1007/s10533-023-01107-x", + "type": "dois" + } + ] + }, + "parts": { + "data": [] + }, + "partOf": { + "data": [] + }, + "versions": { + "data": [] + }, + "versionOf": { + "data": [] } } - ], - "identifiers": [ - { - "identifier": "https://doi.org/10.6071/z7wc73", - "identifierType": "DOI" - } - ], - "language": "en", - "license": { - "id": "CC-BY-4.0", - "url": "https://creativecommons.org/licenses/by/4.0/legalcode" - }, - "provider": "DataCite", - "publisher": { - "name": "Dryad" - }, - "subjects": [ - { - "subject": "air temperature" - }, - { - "subject": "Earth sciences" - }, - { - "subject": "Nevada, Sierra (mountain range)" - }, - { - "subject": "snow depth" - }, - { - "subject": "soil temperature" - }, - { - "subject": "water balance" - }, - { - "subject": "FOS: Environmental engineering" - } - ], - "titles": [ - { - "title": "Southern Sierra Critical Zone Observatory (SSCZO), Providence Creek meteorological data, soil moisture and temperature, snow depth and air temperature" - } - ], - "url": "https://datadryad.org/stash/dataset/doi:10.6071/Z7WC73", - "version": "7" + } } diff --git a/datacite/testdata/10.6084_m9.figshare.1449060.json b/datacite/testdata/10.6084_m9.figshare.1449060.json index 0aba73e..bbfa501 100644 --- a/datacite/testdata/10.6084_m9.figshare.1449060.json +++ b/datacite/testdata/10.6084_m9.figshare.1449060.json @@ -1,67 +1,202 @@ { - "id": "https://doi.org/10.6084/m9.figshare.1449060", - "type": "Dataset", - "contributors": [ - { - "id": "https://orcid.org/0000-0002-2874-287X", - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Ian", - "familyName": "Dworkin" + "data": { + "id": "10.6084/m9.figshare.1449060", + "type": "dois", + "attributes": { + "doi": "10.6084/m9.figshare.1449060", + "prefix": "10.6084", + "suffix": "m9.figshare.1449060", + "identifiers": [], + "alternateIdentifiers": [], + "creators": [ + { + "name": "Dworkin, Ian", + "nameType": "Personal", + "givenName": "Ian", + "familyName": "Dworkin", + "affiliation": [], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0002-2874-287X", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Pool, John", + "nameType": "Personal", + "givenName": "John", + "familyName": "Pool", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Pitchers, William", + "nameType": "Personal", + "givenName": "William", + "familyName": "Pitchers", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Pesevski, Maria", + "nameType": "Personal", + "givenName": "Maria", + "familyName": "Pesevski", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Drosophila melanogaster wing images from low and high altitude populations in Ethiopia and Zambia." + } + ], + "publisher": "figshare", + "container": {}, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Evolutionary Biology" + }, + { + "subject": "FOS: Biological sciences", + "schemeUri": "http://www.oecd.org/science/inno/38235147.pdf", + "subjectScheme": "Fields of Science and Technology (FOS)" + }, + { + "subject": "FOS: Biological sciences", + "subjectScheme": "Fields of Science and Technology (FOS)" + }, + { + "subject": "60412 Quantitative Genetics (incl. Disease and Trait Mapping Genetics)", + "subjectScheme": "FOR" + } + ], + "contributors": [], + "dates": [ + { + "date": "2015-06-14", + "dateType": "Created" + }, + { + "date": "2020-06-02", + "dateType": "Updated" + }, + { + "date": "2020", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "Dataset", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [], + "relatedItems": [], + "sizes": ["3009125660 Bytes"], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "These are raw wing images from Drosophila melanogaster isofemale lines collected from Sub-Saharan Africa by John Pool. The progeny from these lines eclosed and then one wing was dissected from each individual (~20 males and females from each line). Imaged at 20X total magnification (2X objective) on an Olympus BX-51 microscope.
Please note. It looks like some images did not transfer successfully, but there is no easy way on figshare of getting a list of files, so I may need to re-upload all of them.

", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "xml": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00LjEvbWV0YWRhdGEueHNkIj4KICA8aWRlbnRpZmllciBpZGVudGlmaWVyVHlwZT0iRE9JIj4xMC42MDg0L005LkZJR1NIQVJFLjE0NDkwNjA8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZT5JYW4gRHdvcmtpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cDovL29yY2lkLm9yZyI+MDAwMC0wMDAyLTI4NzQtMjg3WDwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lPkpvaG4gUG9vbDwvY3JlYXRvck5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lPldpbGxpYW0gUGl0Y2hlcnM8L2NyZWF0b3JOYW1lPgogICAgPC9jcmVhdG9yPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZT5NYXJpYSBQZXNldnNraTwvY3JlYXRvck5hbWU+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPkRyb3NvcGhpbGEgbWVsYW5vZ2FzdGVyIHdpbmcgaW1hZ2VzIGZyb20gbG93IGFuZCBoaWdoIGFsdGl0dWRlIHBvcHVsYXRpb25zIGluIEV0aGlvcGlhIGFuZCBaYW1iaWEuPC90aXRsZT4KICA8L3RpdGxlcz4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPiZsdDtwJmd0O1RoZXNlIGFyZSByYXcgd2luZyBpbWFnZXMgZnJvbSAmbHQ7aSZndDtEcm9zb3BoaWxhIG1lbGFub2dhc3RlciZsdDsvaSZndDsgaXNvZmVtYWxlIGxpbmVzIGNvbGxlY3RlZCBmcm9tIFN1Yi1TYWhhcmFuIEFmcmljYSBieSBKb2huIFBvb2wuIFRoZSBwcm9nZW55IGZyb20gdGhlc2UgbGluZXMgZWNsb3NlZCBhbmQgdGhlbiBvbmUgd2luZyB3YXMgZGlzc2VjdGVkIGZyb20gZWFjaCBpbmRpdmlkdWFsICh+MjAgbWFsZXMgYW5kIGZlbWFsZXMgZnJvbSBlYWNoIGxpbmUpLiBJbWFnZWQgYXQgMjBYIHRvdGFsIG1hZ25pZmljYXRpb24gKDJYIG9iamVjdGl2ZSkgb24gYW4gT2x5bXB1cyBCWC01MSBtaWNyb3Njb3BlLiZsdDsvcCZndDsmbHQ7cCZndDsmbHQ7YnImZ3Q7Jmx0Oy9wJmd0OyZsdDtwJmd0O1BsZWFzZSBub3RlLiBJdCBsb29rcyBsaWtlIHNvbWUgaW1hZ2VzIGRpZCBub3QgdHJhbnNmZXIgc3VjY2Vzc2Z1bGx5LCBidXQgdGhlcmUgaXMgbm8gZWFzeSB3YXkgb24gZmlnc2hhcmUgb2YgZ2V0dGluZyBhIGxpc3Qgb2YgZmlsZXMsIHNvIEkgbWF5IG5lZWQgdG8gcmUtdXBsb2FkIGFsbCBvZiB0aGVtLiZsdDsvcCZndDsmbHQ7cCZndDsmbHQ7YnImZ3Q7Jmx0Oy9wJmd0OyZsdDtwJmd0OyZsdDticiZndDsmbHQ7L3AmZ3Q7PC9kZXNjcmlwdGlvbj4KICA8L2Rlc2NyaXB0aW9ucz4KICA8c3ViamVjdHM+CiAgICA8c3ViamVjdD5Fdm9sdXRpb25hcnkgQmlvbG9neTwvc3ViamVjdD4KICAgIDxzdWJqZWN0IHNjaGVtZVVSST0iaHR0cDovL3d3dy5hYnMuZ292LmF1L2F1c3N0YXRzL2Fic0AubnNmLzAvNkJCNDI3QUI5Njk2QzIyNUNBMjU3NDE4MDAwNDQ2M0UiIHN1YmplY3RTY2hlbWU9IkZPUiI+NjA0MTIgUXVhbnRpdGF0aXZlIEdlbmV0aWNzIChpbmNsLiBEaXNlYXNlIGFuZCBUcmFpdCBNYXBwaW5nIEdlbmV0aWNzKTwvc3ViamVjdD4KICA8L3N1YmplY3RzPgogIDxwdWJsaXNoZXI+Zmlnc2hhcmU8L3B1Ymxpc2hlcj4KICA8cHVibGljYXRpb25ZZWFyPjIwMjA8L3B1YmxpY2F0aW9uWWVhcj4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iQ3JlYXRlZCI+MjAxNS0wNi0xNDwvZGF0ZT4KICAgIDxkYXRlIGRhdGVUeXBlPSJVcGRhdGVkIj4yMDIwLTA2LTAyPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJEYXRhc2V0Ij5EYXRhc2V0PC9yZXNvdXJjZVR5cGU+CiAgPHNpemVzPgogICAgPHNpemU+MzAwOTEyNTY2MCBCeXRlczwvc2l6ZT4KICA8L3NpemVzPgogIDxyaWdodHNMaXN0PgogICAgPHJpZ2h0cyByaWdodHNVUkk9Imh0dHBzOi8vY3JlYXRpdmVjb21tb25zLm9yZy9saWNlbnNlcy9ieS80LjAvIj5DQyBCWSA0LjA8L3JpZ2h0cz4KICA8L3JpZ2h0c0xpc3Q+CjwvcmVzb3VyY2U+", + "url": "https://figshare.com/articles/dataset/Drosophila_melanogaster_African_Wings/1449060/4", + "contentUrl": null, + "metadataVersion": 3, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "viewsOverTime": [], + "downloadCount": 0, + "downloadsOverTime": [], + "referenceCount": 1, + "citationCount": 1, + "citationsOverTime": [ + { + "year": "2021", + "total": 1 + } + ], + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2015-06-15T04:17:37.000Z", + "registered": "2015-06-15T04:17:38.000Z", + "published": "2020", + "updated": "2024-04-03T15:08:19.000Z" }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "John", - "familyName": "Pool" - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "William", - "familyName": "Pitchers" - }, - { - "type": "Person", - "contributorRoles": ["Author"], - "givenName": "Maria", - "familyName": "Pesevski" - } - ], - "date": { - "created": "2015-06-14", - "published": "2020", - "updated": "2020-06-02" - }, - "descriptions": [ - { - "description": "These are raw wing images from Drosophila melanogaster isofemale lines collected from Sub-Saharan Africa by John Pool. The progeny from these lines eclosed and then one wing was dissected from each individual (~20 males and females from each line). Imaged at 20X total magnification (2X objective) on an Olympus BX-51 microscope.
Please note. It looks like some images did not transfer successfully, but there is no easy way on figshare of getting a list of files, so I may need to re-upload all of them.

", - "type": "Abstract" - } - ], - "identifiers": [ - { - "identifier": "https://doi.org/10.6084/m9.figshare.1449060", - "identifierType": "DOI" - } - ], - "license": { - "id": "CC-BY-4.0", - "url": "https://creativecommons.org/licenses/by/4.0/legalcode" - }, - "provider": "DataCite", - "publisher": { "name": "figshare" }, - "subjects": [ - { "subject": "Evolutionary Biology" }, - { "subject": "FOS: Biological sciences" }, - { - "subject": "60412 Quantitative Genetics (incl. Disease and Trait Mapping Genetics)" - } - ], - "titles": [ - { - "title": "Drosophila melanogaster wing images from low and high altitude populations in Ethiopia and Zambia." + "relationships": { + "client": { + "data": { + "id": "figshare.ars", + "type": "clients" + } + }, + "provider": { + "data": { + "id": "otjm", + "type": "providers" + } + }, + "media": { + "data": { + "id": "10.6084/m9.figshare.1449060", + "type": "media" + } + }, + "references": { + "data": [ + { + "id": "10.5061/dryad.b8gtht79c", + "type": "dois" + } + ] + }, + "citations": { + "data": [ + { + "id": "10.5061/dryad.b8gtht79c", + "type": "dois" + } + ] + }, + "parts": { + "data": [] + }, + "partOf": { + "data": [] + }, + "versions": { + "data": [] + }, + "versionOf": { + "data": [] + } } - ], - "url": "https://figshare.com/articles/dataset/Drosophila_melanogaster_African_Wings/1449060/4" + } } diff --git a/datacite/testdata/sample.json b/datacite/testdata/sample.json new file mode 100644 index 0000000..0813a1c --- /dev/null +++ b/datacite/testdata/sample.json @@ -0,0 +1,15257 @@ +{ + "data": [ + { + "id": "10.5281/zenodo.10916569", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10916569", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/B97558B431D4E79CE0A1809FB6C6EBC9", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Info Flora", + "nameType": "Personal", + "familyName": "Info Flora", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Salix purpurea L." + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2021, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Plantae" + }, + { + "subject": "Tracheophyta" + }, + { + "subject": "Magnoliopsida" + }, + { + "subject": "Malpighiales" + }, + { + "subject": "Salicaceae" + }, + { + "subject": "Salix" + }, + { + "subject": "Salix purpurea" + } + ], + "contributors": [], + "dates": [ + { + "date": "2021-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/F480E79528BEC73795BC29AB8B210999", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/B97558B431D4E79CE0A1809FB6C6EBC9", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.gbif.org/species/224779811", + "relatedIdentifierType": "URL" + }, + { + "relationType": "Cites", + "relatedIdentifier": "https://www.dora.lib4ri.ch/wsl/islandora/object/wsl%3A9966", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.10680266", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5962/bhl.title.44833", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "http://treatment.plazi.org/id/582AACD47CB369C3E91D19F42CC347D0", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10916570", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Salix purpurea L. \nPurpur-Weide \nArt ISFS: 365800 Checklist: 1040920 Salicaceae Salix Salix purpurea L. \nZusammenfassung \n Artbeschreibung (nach Lauber & al. 2018): Bis 6 m hoher Strauch. Zweige dünn, oft purpurn, kahl. Blätter schmal-lanzettlich, 4-12 cm lang, 3-10mal so lang wie breit, meist im vorderen Drittel am breitesten. oberseits matt dunkelgrün, unterseits blaugrün, Rand nur in den vorderen 2/3 mit feinen Zähnchen, beidseits kahl. Nebenblätter fehlend. Blüten erscheinen vor den Blättern. Staubbeutel und Narben vor dem Aufblühen purpurn. Kätzchen 1,2- 4 cm lang. Früchte 2-3 mm lang, eiförmig, fast sitzend, kurz und dicht behaart. Staubfäden auf der ganzen Länge verwachsen. \n Blütezeit (nach Lauber & al. 2018): 3-6 \n Standort und Verbreitung in der Schweiz (nach Lauber & al. 2018): Ufer, Gebüsche, oft auch gepflanzt / kollin-subalpin / CH \n Verbreitung global (nach Lauber & al. 2018): Eurasiatisch \n Ökologische Zeigerwerte (nach Landolt & al. 2010) 3 + w + 43-43 + 3.n.2n=38 \nStatus \nStatus IUCN: Nicht gefährdet \nÖkologie \nLebensraum Lebensraum nach Delarze & al. 2015 \n 5.3.6 - Auen-Weidengebüsch (Salicion elaeagni) 6.1.2 - Weichholz-Auenwald (Salicion albae) 6.1.3 - Grauerlen-Auenwald (Alnion incanae) \n fett Dominante Art, welche das Aussehen des Lebensraumes mitprägt Charakterart Weniger strikt an den Lebensraum gebundene Art \nÖkologische Zeigerwerte nach Landolt & al. (2010) \n Bodenfaktoren Klimafaktoren Salztoleranz Feuchtezahl F -- Lichtzahl L -- Salzzeichen -- Reaktionszahl R -- Temperaturzahl T -- Nährstoffzahl N -- Kontinentalitätszahl K -- \nNomenklatur \n Gültiger Name (Checklist 2017): Salix purpurea L. \nVolksname Deutscher Name: Purpur-Weide Nom français: Osier rouge, Saule pourpre Nome italiano: Salice rosso \nÜbereinstimmung mit anderen Referenzwerken \n Relation Nom Referenzwerke No = Salix purpurea L. Checklist 2017 365800 = Salix purpurea L. Flora Helvetica 2001 585-586 = Salix purpurea L. Flora Helvetica 2012 767-768 = Salix purpurea L. Flora Helvetica 2018 767-768 = Salix purpurea L. Index synonymique 1996 365800 = Salix purpurea L. Landolt 1977 789 = Salix purpurea L. Landolt 1991 694 < Salix purpurea subsp. gracilis (Wimm.) Buser SISF/ISFS 2 365900 = Salix purpurea L. SISF/ISFS 2 365800 < Salix purpurea L. s.str. SISF/ISFS 2 365850 = Salix purpurea L. Welten & Sutter 1982 122 \n= Taxon stimmt mit akzeptiertem Taxon überein (Checklist 2017) Taxon enthält (neben anderen) auch das akzeptierte Taxon (Checklist 2017) \nStatus Indigenat: Indigen \nListe der gefährdeten Pflanzen IUCN (nach Walter & Gillett 1997): Nein \nStatus Rote Liste national 2016 \nStatus IUCN: Nicht gefährdet \nZusätzliche Informationen Kriterien IUCN: -- \nStatus Rote Liste regional 2019 \n Biogeografische Regionen Status Kriterien IUCN Jura (JU) nicht gefährdet (Least Concern) Mittelland (MP) nicht gefährdet (Least Concern) Alpennordflanke (NA) nicht gefährdet (Least Concern) Alpensüdflanke (SA) nicht gefährdet (Least Concern) Östliche Zentralalpen (EA) nicht gefährdet (Least Concern) Westliche Zentralalpen (WA) nicht gefährdet (Least Concern) \nStatus nationale Priorität /Verantwortung \n Keine nationale Priorität oder internationale Verantwortung \nSchutzstatus \n International (Berner Konvention) Nein BL Teilweise geschützt (Blütezeit) (01.01.2012) FR Teilweise geschützt (12.03.1973) JU Teilweise geschützt (Blütezeit) (06.12.1978) NE Teilweise geschützt (01.08.2013) OW Teilweise geschützt (Blütezeit) (01.04.2013) \n Schweiz -- SO Teilweise geschützt (Blütezeit) (23.02.1972) UR Teilweise geschützt (Blütezeit) (01.07.2009) ZH Teilweise geschützt (03.12.1964) SG Teilweise geschützt (Blütezeit) (01.10.2017)", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Info Flora, 2021,", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10916569", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 3, + "citationCount": 0, + "partCount": 0, + "partOfCount": 1, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-04-04T00:26:57Z", + "registered": "2024-04-04T00:26:58Z", + "published": null, + "updated": "2024-08-19T20:47:12Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.6840194", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.6840194", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/6840195", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Karuzaki, Effie", + "givenName": "Effie", + "familyName": "Karuzaki", + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0002-2905-1878", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Dubois, Arnaud", + "givenName": "Arnaud", + "familyName": "Dubois", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Partarakis, Nikolaos", + "givenName": "Nikolaos", + "familyName": "Partarakis", + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0003-0497-7348", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Zabulis, Xenophon", + "givenName": "Xenophon", + "familyName": "Zabulis", + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0002-1520-4327", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + } + ], + "titles": [ + { + "title": "blocking_2" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2022, + "subjects": [ + { + "subject": "Carafe Making" + }, + { + "subject": "Glassblowing" + }, + { + "subject": "Glass" + }, + { + "subject": "craft" + }, + { + "subject": "Mingei" + }, + { + "subject": "CERFAV" + } + ], + "contributors": [], + "dates": [ + { + "date": "2022-07-15", + "dateType": "Issued" + }, + { + "date": "2019-06-17", + "dateType": "Collected", + "dateInformation": "Image captured at June 17, 2019" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Photo", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.6840195", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution Share Alike 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by-sa/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-sa-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "This is the process of making a carafe Bontemps. The step depicted is called \"blocking\"(from the Mingei project).", + "descriptionType": "Abstract" + } + ], + "geoLocations": [ + { + "geoLocationPlace": "CERFAV", + "geoLocationPoint": { + "pointLatitude": "48.54651", + "pointLongitude": "5.78362" + } + } + ], + "fundingReferences": [ + { + "awardUri": "info:eu-repo/grantAgreement/EC/H2020/822336/", + "awardTitle": "Representation and Preservation of Heritage Crafts", + "funderName": "European Commission", + "awardNumber": "822336", + "funderIdentifier": "https://doi.org/10.13039/100010661", + "funderIdentifierType": "Crossref Funder ID" + } + ], + "url": "https://zenodo.org/record/6840194", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2022-07-15T13:46:30Z", + "registered": "2022-07-15T13:46:31Z", + "published": null, + "updated": "2022-07-15T13:46:31Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.4564980", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.4564980", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/DA46C129FFCAFFD1E791C4CCFAA5FA71", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Arias-Bohart, Elizabeth T.", + "nameType": "Personal", + "givenName": "Elizabeth T.", + "familyName": "Arias-Bohart", + "affiliation": [ + "Essig Museum of Entomology, University of California, 1101 Valley Life Sciences Building, Berkeley 94720, California, U. S. A." + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Carlota coigue Arias-Bohart 2014" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.5281/zenodo.4564876", + "identifierType": "DOI" + }, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Coleoptera" + }, + { + "subject": "Elateridae" + }, + { + "subject": "Carlota" + }, + { + "subject": "Carlota coigue" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-09-25", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.5281/zenodo.4564876", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/267FB951FFC9FFD5E751C05DFFBFFF88", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/DA46C129FFCAFFD1E791C4CCFAA5FA71", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.gbif.org/species/180298686", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.checklistbank.org/dataset/7874/taxon/DA46C129FFCAFFD1E791C4CCFAA5FA71.taxon", + "relatedIdentifierType": "URL" + }, + { + "relationType": "Cites", + "relatedIdentifier": "http://treatment.plazi.org/id/03DC402F27591CEA3E6EDC6FE50489A1", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/75AD9558-7B1A-460E-8D9A-49AEBD08CAEF", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.4564981", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Carlota coigue Arias-Bohart 2014: 59 \n CHILE IX Region [15]. Flor del Lago Ranch Villarrica. 39°12.63 ′ S 72°15.55 ′ W, 312 m. 12.XII.2003. Canopy Fogging 60cc/l. Arias et al UCB. HOLOTYPE. Carlota coigue. E. Arias-Bohart 2013. Male. EMEC10005989 [MNNC]. \n CHILE IX Region [15]. Flor del Lago Ranch Villarrica. 39°12.63 ′ S 72°15.55 ′ W, 312 m. 12.XII.2003. Canopy Fogging 60cc/l. Arias et al UCB. PARATYPE Carlota coigue E. Arias-Bohart 2013. Male (3 specimens). EMEC 10005990 [ETA] EMEC 10005991 [ANIC] EMEC 10005992 [SRC]; (Chile) Shangrila. VIII Region 30-10-1988. Elizabeth Arias. PARATYPE. Carlota coigue E. Arias-Bohart 2013. Male. EMEC 10005993 [ETA]; CHILE: Cautín P.R.: P.N. Conguillío, 1.5 km East/Laguna Captrén guard sta. 1365 m, 38°38.67 ′ S, 71°41.37 ′ W. 23.xii.1996 – 5.ii.1997. Deciduous spp., / Araucaria, with Chusquea understory/ FMHD #96-229, flight/ intercept trap. A.New- ton & M.Thayer 977. FIELD MUS. NAT. HIST. PARATYPE. Carlota coigue E. Arias-Bohart 2013. Male. EMEC 10005994 [FMNH]; Chile Marimenuco. Lonquimay. 10–15.XII.1986. Coll. L.E. Peña. PARATYPE. Carlota coigue E. Arias-Bohart 2013. Male. EMEC 10005996 [ETA]; Chile, prov. Curicó, 15 km. E. Potrero Grande, Puente Morongos, 25/ nov 2003, fogging Nothofagus dombeyi 35°12.96 ′S 70°58.62 ′ W. leg. J. E. Barriga. Colección J. E. Barriga. CHILE 148098. PARATYPE. Carlota coigue E. Arias-Bohart 2013. Male. EMEC 10005997 [MNHN]; Chile, prov. Curicó, 15 km. E. Potrero Grande. Camino El Relvo, 19. Leg. JE. Barriga T. N. alpina, N. obliqua 35°11.14 ′ S 70°56.1 ′ W. Colección J. E. Barriga. CHILE 163778. PARATYPE. Carlota coigue E. Arias-Bohart 2013. Male. EMEC 10005998 [RBINS]; Chile Talca 1300 m. Altos de Vilches. 26. I.69 Valencia. Ex-colección. Jorge Valencia. JVCC. Chile 003660. Colección JEBC. Juan Enrique Barriga-Tuñon. Chile 0204053. PARATYPE. Carlota coigue E. Arias-Bohart 2013. Male. EMEC 10005999 [JEB]; Chile Arauco. Pichinahuel. 15. I.59. G. Barria. Ex. Colección. Jorge Valencia. JVCC / Chile 003152. Valencia. Ex-colección. Jorge Valencia. JVCC Chile 003660. Colección JEBC. Juan Enrique. Barriga-Tuñon. Chile 0204684. PARATYPE Carlota coigue E. Arias-Bohart 2013. Male. EMEC 10006000 [JEB]; CHILE prov.Ñuble/ Shangri-lá, 1490 mt 36°52 ′ 34 ″ S 71°28 ′ 3 ″ W, 7dic 2008. Fogging Lenga (Nothofagus pumilio). leg J. E. Barriga-Tuñon. Colección. JE Barriga-Tuñon. Chile 122722. PARATYPE Carlota coigue E. Arias-Bohart 2013. Female. EMEC 10006001 [JEB]; CHILE- ÑUBLE Shangri-lá. 6-11-12, 1998. col. J. Mondaca. PARATYPE Carlota coigue E. Arias-Bohart 2013. Male. EMEC 10006002. [MNNC].", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Arias-Bohart, Elizabeth T., 2020, Systematic status of the Chilean genus Carlota Arias-Bohart, 2014 (Coleoptera: Elateridae: Agrypninae: Agrypnini), pp. 1-7 in Insecta Mundi 2020 (791) on page 2, DOI: 10.5281/zenodo.4564876", + "descriptionType": "Other" + } + ], + "geoLocations": [ + { + "geoLocationPlace": "Flor del Lago Ranch Villarrica.", + "geoLocationPoint": { + "pointLatitude": -72.25916, + "pointLongitude": -39.2105 + } + } + ], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.4564980", + "contentUrl": null, + "metadataVersion": 4, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 1, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2021-02-26T15:13:51Z", + "registered": "2021-02-26T15:13:52Z", + "published": null, + "updated": "2024-01-18T07:26:16Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.1109994", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.1109994", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/1109995", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Raza Abdulla Saeed", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Numerical Simulation Of Three-Dimensional Cavitating Turbulent Flow In Francis Turbines With Ansys" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2015, + "subjects": [ + { + "subject": "Computational Fluid Dynamics" + }, + { + "subject": "Hydraulic Francis Turbine" + }, + { + "subject": "Numerical Simulation" + }, + { + "subject": "Two-Phase Mixture Cavitation Model." + } + ], + "contributors": [], + "dates": [ + { + "date": "2015-10-01", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Journal article", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.1109995", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0", + "rightsUri": "https://creativecommons.org/licenses/by/4.0" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "In this study, the three-dimensional cavitating\nturbulent flow in a complete Francis turbine is simulated using\nmixture model for cavity/liquid two-phase flows. Numerical analysis\nis carried out using ANSYS CFX software release 12, and standard k-ε\nturbulence model is adopted for this analysis. The computational\nfluid domain consist of spiral casing, stay vanes, guide vanes, runner\nand draft tube. The computational domain is discretized with a threedimensional\nmesh system of unstructured tetrahedron mesh. The\nfinite volume method (FVM) is used to solve the governing equations\nof the mixture model. Results of cavitation on the runner's blades\nunder three different boundary conditions are presented and\ndiscussed. From the numerical results it has been found that the\nnumerical method was successfully applied to simulate the cavitating\ntwo-phase turbulent flow through a Francis turbine, and also\ncavitation is clearly predicted in the form of water vapor formation\ninside the turbine. By comparison the numerical prediction results\nwith a real runner; it's shown that the region of higher volume\nfraction obtained by simulation is consistent with the region of runner\ncavitation damage.", + "descriptionType": "Abstract" + }, + { + "description": "{\"references\": [\"U. Dorji, R. Ghomashchi, \\\"Hydro turbine failure mechanisms: An\\noverview,\\\" Engineering Failure Analysis, vol. 44, pp. 136-147, 2014.\", \"P., Kumar, R. P. Saini, \\\"Study of Cavitation in Hydro Turbines a\\nReview,\\\" Renewable and Sustainable Energy Reviews, vol. 14, no. 1,\\npp. 374\\u201383, 2010.\", \"L., Zhang, J. T. Liu, Y. L. Wu and S. H. Liu, \\\"Numerical simulation of\\ncavitating turbulent flow through a Francis turbine,\\\" 26th IAHR\\nSymposium on Hydraulic Machinery and Systems, pp. 1-7, 2012.\", \"X. Escaler, E. Egusquiza, M. Farhat, F. Avellan, \\\"Detection of cavitation\\nin hydraulic turbines\\\". Mechanical Systems and Signal Processing 20,\\npp. 983-1007, 2006.\", \"H.-J. Choi, M. A. Zullah, H.-W. Roh, P.-S. Ha, S.-Y. Oh, and Y.-H. Lee,\\n\\\"CFD validation of performance improvement of a 500 kW Francis\\nturbine,\\\" Renewable Energy, vol. 54, pp. 111\\u2013123, 2013.\", \"D. Jo\\u0161t, A. Lipej, P. Me\\u017enar, \\\"Numerical prediction of efficiency,\\ncavitation and unsteady phenomena in water turbines,\\\" ASME 2008 9th\\nbiennial conference on engineering systems design and analysis, pp.157-\\n166, 2008.\", \"S. Bernad, S. Muntean, R. Resiga, I. Anton, \\\"Numerical analysis of the\\ncavitating flows,\\\" Proceedings of the Romanian Academy A, vol. 7, no.\\n1, pp. 33-45, 2006.\", \"R. Resiga, S. Muntean, S. Bernad, I. Anton, \\\"Numerical Investigation of\\n3D Cavitating Flow in Francis Turbines.\\\" Proceedings of the Conference\\non Modelling Fluid Flow 2, pp. 950-957, 2003.\", \"M. Sedlar, P. Zima, M. Muller, \\\"CFD Analysis of Cavitation Erosion\\nPotential in Hydraulic Machinery,\\\" Proc. 3rd IAHR WG Meeting, pp.\\n205-21, 2009.\\n[10] F. Avellan, \\\"Introduction to cavitation in hydraulic machinery\\\",\\nProceedings of 6th International Conference on Hydraulic Machinery and\\nHydrodynamics, Timisoara, Romania, pp.11-22, 2004.\\n[11] G. Wang, I Senocak, W. Shyy, \\\"Dynamics of attached turbulent\\ncavitating flows,\\\" Progress in Aerospace Sciences, pp. vol. 37, pp.551\\u2013\\n581, 2001.\\n[12] R. A. Saeed, A. N. Galybin, V. Popov, \\\"3D fluid-structure modelling\\nand vibration analysis for fault diagnosis of Francis turbine using\\nmultiple ANN and multiple ANFIS,\\\" Mechanical Systems and Signal\\nProcessing, Vol. 34, no. 1-2, pp. 259-276, 2013.\\n[13] D. Jost, A. Lipej, \\\"Numerical prediction of non-cavitating and cavitating\\nvortex rope in a Francis turbine draft tube,\\\" Strojniski vestnik-Journal of\\nMechanical Engineering, Vol. 57, no. 6, pp. 445-456, 2011.\"]}", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/1109994", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": null, + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2018-01-16T15:25:08Z", + "registered": "2018-01-16T15:25:09Z", + "published": null, + "updated": "2020-09-19T20:48:53Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5163508", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5163508", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/03D0B226FFA7FFE218B76627FB169596", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Fernandez, Nestor", + "nameType": "Personal", + "givenName": "Nestor", + "familyName": "Fernandez", + "affiliation": [ + "National Council of Scientific and Technological Research (CONICET), Subtropical Biological Institut (IBS), Evolutive Genetic Laboratory FCEQyN, Misiones National University, Felix de Azara 1552, 3300 Posadas Misiones (Argentina) nestorfernand 51 @ yahoo. fr" + ], + "nameIdentifiers": [] + }, + { + "name": "Theron, Pieter", + "nameType": "Personal", + "givenName": "Pieter", + "familyName": "Theron", + "affiliation": [ + "Research Unit for Environmental Sciences and Management, North-West University, 2520 Potchefstroom Campus (South Africa) pieter. theron @ nwu. ac. za" + ], + "nameIdentifiers": [] + }, + { + "name": "Rollard, Christine", + "nameType": "Personal", + "givenName": "Christine", + "familyName": "Rollard", + "affiliation": [ + "Muséum national d'Histoire naturelle, Département Systématique et Évolution, UMR 7205 case postale 53, 57 rue Cuvier F- 75231 Paris cedex 05 (France) chroll @ mnhn. fr" + ], + "nameIdentifiers": [] + }, + { + "name": "Castillo, Elio Rodrigo", + "nameType": "Personal", + "givenName": "Elio Rodrigo", + "familyName": "Castillo", + "affiliation": [ + "National Council of Scientific and Technological Research (CONICET), Subtropical Biological Institut (IBS), Evolutive Genetic Laboratory FCEQyN, Misiones National University, Felix de Azara 1552, 3300 Posadas Misiones (Argentina) castillo. eliorodrigo @ gmail. com" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Bedoslohmannia Fernandez & Theron & Rollard & Castillo 2014, n. gen." + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.5252/z2014n4a5", + "identifierType": "DOI" + }, + "publicationYear": 2014, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Arachnida" + }, + { + "subject": "Sarcoptiformes" + }, + { + "subject": "Lohmanniidae" + }, + { + "subject": "Bedoslohmannia" + } + ], + "contributors": [], + "dates": [ + { + "date": "2014-12-26", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.5252/z2014n4a5", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zenodo.org/record/5159517", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFE9CA5EFFA5FFE0186F634BFF999446", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/03D0B226FFA7FFE218B76627FB169596", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.5163509", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Genus Bedoslohmannia n. gen. \n TYPE SPECIES. — Bedoslohmannia anneae n. sp. \nETYMOLOGY. — The generic prefix “Bedos” and the specific epithet are in homage to Dr Anne Bedos, MNHN. \nDIAGNOSIS (ADULT) \n Notogastral neotrichy \nGenital plate undivided, ten pairs of setae; anal and adanal plate fused, with six pairs of setae, four pairs antiaxial and two pairs paraxial situated in the middle posterior zone; preanal plate broadly triangular, posterior part covering the anterior anal-adanal plate zone; preanal plate, anterior part fused on posterior genital opening margin. Leg ventral blades: femora I and II with two prominences; femora III and IV with teeth; all femora presenting umbrella-shaped setae that conceal legs during folding process.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Fernandez, Nestor, Theron, Pieter, Rollard, Christine & Castillo, Elio Rodrigo, 2014, Oribatid mites from deep soils of Hòn Chông limestone hills, Vietnam: the family Lohmanniidae (Acari: Oribatida), with the descriptions of Bedoslohmannia anneae n. gen., n. sp., and Paulianacarus vietnamese n. sp., pp. 771-787 in Zoosystema 36 (4) on page 773, DOI: 10.5252/z2014n4a5, http://zenodo.org/record/5159517", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.5163508", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2021-08-05T12:06:07Z", + "registered": "2021-08-05T12:06:08Z", + "published": null, + "updated": "2024-01-19T20:21:14Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.11596174", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.11596174", + "identifiers": [ + { + "identifier": "oai:zenodo.org:11596174", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Research Center DIGITAL ORGANOLOGY", + "nameType": "Personal", + "familyName": "Research Center DIGITAL ORGANOLOGY", + "affiliation": ["Leipzig University"], + "nameIdentifiers": [] + }, + { + "name": "Dominik Ukolov", + "nameType": "Personal", + "familyName": "Dominik Ukolov", + "affiliation": ["Leipzig University"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-7904-3892", + "nameIdentifierScheme": "ORCID" + }, + { + "nameIdentifier": "gnd:1305820150", + "nameIdentifierScheme": "GND" + } + ] + } + ], + "titles": [ + { + "title": "Andre Lautenmacher (l0236)" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [ + { + "subject": "musiXplora" + }, + { + "subject": "Organology" + }, + { + "subject": "Persons" + }, + { + "subject": "Novy Kinsky" + }, + { + "subject": "Musical Instruments" + }, + { + "subject": "Digital Organology" + }, + { + "subject": "Leipzig University" + } + ], + "contributors": [ + { + "name": "Research Center DIGITAL ORGANOLOGY", + "nameType": "Personal", + "familyName": "Research Center DIGITAL ORGANOLOGY", + "affiliation": ["Leipzig University"], + "contributorType": "HostingInstitution", + "nameIdentifiers": [] + }, + { + "name": "Josef Focht", + "nameType": "Personal", + "familyName": "Josef Focht", + "affiliation": ["Leipzig University"], + "contributorType": "Supervisor", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0001-6053-7932", + "nameIdentifierScheme": "ORCID" + }, + { + "nameIdentifier": "gnd:115059865", + "nameIdentifierScheme": "GND" + } + ] + }, + { + "name": "Dominik Ukolov", + "nameType": "Personal", + "familyName": "Dominik Ukolov", + "affiliation": ["Leipzig University"], + "contributorType": "DataManager", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-7904-3892", + "nameIdentifierScheme": "ORCID" + }, + { + "nameIdentifier": "gnd:1305820150", + "nameIdentifierScheme": "GND" + } + ] + } + ], + "dates": [ + { + "date": "2024-06-12", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.11596173", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "0.0.1", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "-- Documentation --Name: Andre LautenmachermusiXplora-ID: l0236musiXplora-URI: https://musixplora.de/mxp/l0236Gender: mConfessions: römisch-katholischFirst Mentioned: 1462Last Mentioned: 1496Sectors: Instrumentenbau, StadtProfessions (Historical): Lautenmacher, LautenslaherProfessions (Musical): Lautenist, LautenmacherMain Place of Activity: MünchenPortfolio:\nGroupRoleNamemXp-IDSortimenteSortimentLaute2001475Changelog: - v0.0.1: Initial Upload.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.11596174", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2024-06-12T01:29:43Z", + "registered": "2024-06-12T01:29:43Z", + "published": null, + "updated": "2024-06-12T01:29:43Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.11160548", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.11160548", + "identifiers": [], + "creators": [ + { + "name": "Junior Professorship for Digital Humanities (Image/Object)", + "nameType": "Personal", + "familyName": "Junior Professorship for Digital Humanities (Image/Object)", + "affiliation": ["Friedrich-Schiller-University Jena"], + "nameIdentifiers": [ + { + "nameIdentifier": "gnd:2012133-7", + "nameIdentifierScheme": "GND" + } + ] + }, + { + "name": "9351345@N04", + "nameType": "Personal", + "familyName": "9351345@N04", + "affiliation": ["Flickr"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "IMG_20220906_170954.jpg" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2022, + "subjects": [ + { + "subject": "4D City" + }, + { + "subject": "Digital Humanities" + }, + { + "subject": "Jena" + } + ], + "contributors": [ + { + "name": "Junior Professorship for Digital Humanities (Image/Object)", + "nameType": "Personal", + "familyName": "Junior Professorship for Digital Humanities (Image/Object)", + "affiliation": ["Friedrich-Schiller-University Jena"], + "contributorType": "HostingInstitution", + "nameIdentifiers": [] + } + ], + "dates": [ + { + "date": "2022-10-09", + "dateType": "Issued" + }, + { + "date": "2022-10-09", + "dateType": "Valid", + "dateInformation": "Import Date of 4DCity." + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Photo", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.11160549", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "0.0.1", + "rightsList": [], + "descriptions": [ + { + "description": "Source: Flickr 4DCity URL: https://4dcity.org/imgupload/1665337048.6869.jpg Original Image URL: https://live.staticflickr.com/65535/52385965601_4d66f7c207_m.jpg Image-Metadata:Filename: 1665337048.6869.jpgImage Dimensions: 180x240Megapixels: 0.04 MPFilesize: 20.20 KBExifOffset: 38", + "descriptionType": "Abstract" + } + ], + "geoLocations": [ + { + "geoLocationPlace": "Undefined" + } + ], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.11160548", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2024-05-09T08:19:30Z", + "registered": "2024-05-09T08:19:30Z", + "published": null, + "updated": "2024-05-09T08:19:30Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.7538238", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.7538238", + "identifiers": [], + "creators": [ + { + "name": "Schmiedmayer, Paul", + "nameType": "Personal", + "givenName": "Paul", + "familyName": "Schmiedmayer", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-8607-9148", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Bauer, Andreas", + "nameType": "Personal", + "givenName": "Andreas", + "familyName": "Bauer", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-1680-237X", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Zagar, Philipp", + "nameType": "Personal", + "givenName": "Philipp", + "familyName": "Zagar", + "nameIdentifiers": [ + { + "nameIdentifier": "0009-0001-5934-2078", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Ravi, Vishnu", + "nameType": "Personal", + "givenName": "Vishnu", + "familyName": "Ravi", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-0359-1275", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Aalami, Oliver", + "nameType": "Personal", + "givenName": "Oliver", + "familyName": "Aalami", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-7799-2429", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Stanford Spezi" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-10-29", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceType": "", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/StanfordSpezi/Spezi/tree/1.8.0", + "resourceTypeGeneral": "Software", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10681345", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8419999", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8084980", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.11488154", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10699497", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13376899", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7645682", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7703198", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.12549798", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8166105", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8085755", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7566371", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.12748296", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10476073", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10289423", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10114902", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13317437", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7566708", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7823419", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7927633", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8166212", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10086226", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10482368", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7538239", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8013043", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.12799231", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13619984", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7703807", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.12723816", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10798596", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8231230", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7686088", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7809473", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7638516", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7658904", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13309404", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13327754", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8271076", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.14006855", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "1.8.0", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "What's Changed\n\n\n\nProvide integration points for SpeziNotifications, Swift 6 and silence some warnings by @Supereg in https://github.com/StanfordSpezi/Spezi/pull/117\n\n\nFull Changelog: https://github.com/StanfordSpezi/Spezi/compare/1.7.4...1.8.0", + "descriptionType": "Abstract" + }, + { + "description": "If you use this software, please cite it as below.", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.7538238", + "contentUrl": null, + "metadataVersion": 38, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 39, + "versionOfCount": 0, + "created": "2023-01-15T08:18:06Z", + "registered": "2023-01-15T08:18:06Z", + "published": null, + "updated": "2024-10-29T11:02:13Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.6866430", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.6866430", + "identifiers": [], + "creators": [ + { + "name": "Hunaiber, Mona", + "nameType": "Personal", + "givenName": "Mona", + "familyName": "Hunaiber", + "affiliation": [ + "Department of Mathematics, Faculty of Education and Sciences, Albaydha University, Yemen." + ], + "nameIdentifiers": [] + }, + { + "name": "Al-Aati, Ali", + "nameType": "Personal", + "givenName": "Ali", + "familyName": "Al-Aati", + "affiliation": [ + "Department of Mathematics, Faculty of Education and Sciences, Albaydha University, Yemen." + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "SOME FUNDAMENTAL PROPERTIES OF HUNAIBER TRANSFORM AND ITS APPLICATIONS TO PARTIAL DIFFERENTIAL EQUATIONS" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2022, + "subjects": [ + { + "subject": "Hunaiber Transform, Integral Transform, Differential equations, partial differential equations, Linear Partial Differential Equations ." + } + ], + "contributors": [], + "dates": [ + { + "date": "2022-07-20", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.6866429", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "In this paper, we study some basic properties of a new integral transform '' Hunaiber transform''. Moreover, we apply Hunaiber transform to solve linear partial differential equations with initial and boundary conditions. We solve first order partial differential equations and Second order partial differential equations which are essential equations in mathematical physics and applied mathematics.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/6866430", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2022-07-20T10:23:44Z", + "registered": "2022-07-20T10:23:45Z", + "published": null, + "updated": "2022-07-20T10:23:45Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.14070701", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.14070701", + "identifiers": [ + { + "identifier": "oai:zenodo.org:14070701", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Paul Maeyaert", + "nameType": "Personal", + "familyName": "Paul Maeyaert", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "PM_018902_E_Vallbona_de_les_Monjes" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [ + { + "subject": "Abbey/convent/monastery" + }, + { + "subject": "Catalunya" + }, + { + "subject": "Cultural heritage" + }, + { + "subject": "Europe" + }, + { + "subject": "Lleida" + }, + { + "subject": "Monuments" + }, + { + "subject": "Sculpture" + }, + { + "subject": "Spain" + }, + { + "subject": "Techniques" + }, + { + "subject": "Vallbona de les Monjes" + } + ], + "contributors": [ + { + "name": "Paul Maeyaert", + "nameType": "Personal", + "familyName": "Paul Maeyaert", + "contributorType": "RightsHolder", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "dates": [ + { + "date": "2024-11-11", + "dateType": "Issued" + }, + { + "date": "2008-09-28", + "dateType": "Collected" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Photo", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.14070700", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "0.0.1", + "rightsList": [ + { + "rights": "Creative Commons Attribution Share Alike 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by-sa/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-sa-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "File Name: PM_018902_E_Vallbona_de_les_Monjes Sublocation: Monestir Location: Vallbona de les Monjes Province: Catalunya, Lleida Country: Spain Header: El claustre; Part nord; Detall; Una capital; Restes de policromia; Gòtic; Segle 14; Description: Monastery (Monestir Santa Maria de Vallbona de les Monjes) The cloister North part Detail A capital Rests of polychrome Gothic 14th century Keywords: Abbey/convent/monastery, Catalunya, Cultural heritage, Europe, Lleida, Monuments, Sculpture, Spain, Techniques, Vallbona de les Monjes Author: Photo: Paul M.R. Maeyaert Copyright: Paul M.R. Maeyaert", + "descriptionType": "Abstract" + } + ], + "geoLocations": [ + { + "geoLocationPlace": "Monestir Santa Maria de Vallbona de les Monjes", + "geoLocationPoint": { + "pointLatitude": "41.61674", + "pointLongitude": "0.62218" + } + } + ], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.14070701", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-11-11T14:50:59Z", + "registered": "2024-11-11T14:50:59Z", + "published": null, + "updated": "2024-11-11T14:51:00Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3815394", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3815394", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/5D0E2915FF8DC35BFF703F2DB125D19E", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Jin, Xingbao", + "nameType": "Personal", + "givenName": "Xingbao", + "familyName": "Jin", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Liu, Xianwei", + "nameType": "Personal", + "givenName": "Xianwei", + "familyName": "Liu", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Wang, Hanqiang", + "nameType": "Personal", + "givenName": "Hanqiang", + "familyName": "Wang", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Athaumaspis minutus Wang & Liu 2014" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4772.1.1", + "identifierType": "DOI" + }, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Orthoptera" + }, + { + "subject": "Tettigoniidae" + }, + { + "subject": "Athaumaspis" + }, + { + "subject": "Athaumaspis minutus" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-05-07", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4772.1.1", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zenodo.org/record/3814111", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/A137516DFFBCC36AFFE73B03B31BD50F", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/5D0E2915FF8DC35BFF703F2DB125D19E", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.gbif.org/species/163975495", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.checklistbank.org/dataset/22332/taxon/5D0E2915FF8DC35BFF703F2DB125D19E.taxon", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/F0641A6C-D049-4CD1-BEA5-5E09F3B01923", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.3815393", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "71) Athaumaspis minutus Wang & Liu, 2014 \n1♂ (Holotype): VIETNAM: Mt. Lang / Bian, 1500–2000 m./ 19.V–8. VI.1961; N.R. Spencer / Collector / BISHOP 2♀ (Paratype): labeled same as above", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Jin, Xingbao, Liu, Xianwei & Wang, Hanqiang, 2020, New taxa of the tribe Meconematini from South-Pacific and Indo-Malayan Regions (Orthoptera, Tettigoniidae, Meconematinae), pp. 1-53 in Zootaxa 4772 (1) on page 50, DOI: 10.11646/zootaxa.4772.1.1, http://zenodo.org/record/3814111", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.3815394", + "contentUrl": null, + "metadataVersion": 4, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 1, + "created": "2020-05-08T03:34:07Z", + "registered": "2020-05-08T03:34:07Z", + "published": null, + "updated": "2024-01-08T13:31:56Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3607076", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3607076", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/3607077", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Samková, Alena", + "givenName": "Alena", + "familyName": "Samková", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Janšta, Petr", + "givenName": "Petr", + "familyName": "Janšta", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Huber, John T.", + "givenName": "John T.", + "familyName": "Huber", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURES 61–68 in Illustrated key to European genera, subgenera and species groups of Mymaridae (Hymenoptera), with new records for the Czech Republic" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4722.3.1", + "identifierType": "DOI" + }, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Hymenoptera" + }, + { + "subject": "Mymaridae" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-01-14", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4722.3.1", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:360C010CFF9FFF97FC3BDA69FFF9D32C", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/360C010CFF9FFF97FC3BDA69FFF9D32C", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/3607055", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/CA357974FF9AFF91FCACD9ABFA64D561", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.3607077", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURES 61–68. Antenna (scale bars 0.1 mm) and fore wing (scale bars 0.2 mm). 61, Caraphractus cinctus, antenna; 62, Anagrus s.s. sp., antenna; 63, Eustochus sp., antenna; 64, Gonatocerus sp., fore wing; 65, Cosmocomoidea sp., fore wing; 66, Arescon sp., fore wing; 67, Camptoptera sp., fore wing; 68, Macrocamptoptera metotarsa, fore wing.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Samková, Alena, Janšta, Petr & Huber, John T., 2020, Illustrated key to European genera, subgenera and species groups of Mymaridae (Hymenoptera), with new records for the Czech Republic, pp. 201-233 in Zootaxa 4722 (3) on page 219, DOI: 10.11646/zootaxa.4722.3.1, http://zenodo.org/record/3607055", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3607076", + "contentUrl": null, + "metadataVersion": 3, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2020-01-14T07:10:26Z", + "registered": "2020-01-14T07:10:26Z", + "published": null, + "updated": "2021-10-29T15:25:39Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.24510", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.24510", + "identifiers": [], + "creators": [ + { + "name": "Garcia, J. L.", + "nameType": "Personal", + "givenName": "J. L.", + "familyName": "Garcia", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Masner, L.", + "nameType": "Personal", + "givenName": "L.", + "familyName": "Masner", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "A Redefinition Of Aradophagus (Hymenoptera: Scelionidae), With A Key To Described Species." + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 1994, + "subjects": [ + { + "subject": "biodiversity" + }, + { + "subject": "taxonomy" + }, + { + "subject": "insects" + }, + { + "subject": "Animalia" + }, + { + "subject": "Platygastroidea" + }, + { + "subject": "Platygastridae" + }, + { + "subject": "Hymenoptera" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Scelioninae" + }, + { + "subject": "Hexapoda" + } + ], + "contributors": [], + "dates": [ + { + "date": "1994-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Journal article", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsIdenticalTo", + "relatedIdentifier": "http://bioguid.osu.edu/xbiod_pubs/1728", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "xBio:D Automated Upload", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/24510", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": null, + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2015-08-07T20:44:28Z", + "registered": "2015-08-07T20:44:28Z", + "published": null, + "updated": "2020-07-27T13:24:47Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.1000594", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.1000594", + "identifiers": [ + { + "identifier": "https://doi.org/10.5281/zenodo.1000594", + "identifierType": "DOI" + }, + { + "identifier": "https://zenodo.org/record/1000595", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Belokobylskij, Sergey A.", + "nameType": "Personal", + "givenName": "Sergey A.", + "familyName": "Belokobylskij", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Clóvis Sormus De Castro", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Shimbori, Eduardo Mitio", + "nameType": "Personal", + "givenName": "Eduardo Mitio", + "familyName": "Shimbori", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Zaldívar-Riverón, Alejandro", + "nameType": "Personal", + "givenName": "Alejandro", + "familyName": "Zaldívar-Riverón", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Penteado-Dias, Angélica Maria", + "nameType": "Personal", + "givenName": "Angélica Maria", + "familyName": "Penteado-Dias", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Braet, Yves", + "nameType": "Personal", + "givenName": "Yves", + "familyName": "Braet", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 21 in Taxonomic revision of the Neotropical species of the braconid wasp genus Pedinotus Szépligeti, 1902 (Hymenoptera: Braconidae: Doryctinae)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4327.1.1", + "identifierType": "DOI" + }, + "publicationYear": 2017, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Hymenoptera" + }, + { + "subject": "Braconidae" + }, + { + "subject": "Pedinotus" + } + ], + "contributors": [], + "dates": [ + { + "date": "2017-10-02", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4327.1.1", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FF91FFF1F82D360E4D58FFF1A324FFEC", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FF91FFF1F82D360E4D58FFF1A324FFEC", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/1000553", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03A88789F82B36064DCFFF69A6BFFA76", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03A88789F801363E4DCFFB18A1A7FC48", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.1000595", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 21. Pedinotus glabroscutum sp. nov. (female, holotype). A, Habitus, lateral view. B, Basal segments of antenna. C, Head, front view. D, Head, dorsal view. E, Head, lateral view. F, Apex of ovipositor. G, Mesosoma, dorsal view. H, Mesosoma, lateral view. I, Propodeum and first metasomal tergite, dorsal view.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/1000594", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": null, + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2017-10-02T10:28:48Z", + "registered": "2017-10-02T10:28:49Z", + "published": null, + "updated": "2020-06-29T15:43:08Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5029954", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5029954", + "identifiers": [], + "creators": [ + { + "name": "Ahyong, Shane T.", + "givenName": "Shane T.", + "familyName": "Ahyong", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Poore, Gary C. B.", + "givenName": "Gary C. B.", + "familyName": "Poore", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 20. Uroptychus patulus n in The Chirostylidae of southern Australia (Crustacea: Decapoda: Anomura)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.436.1.1", + "identifierType": "DOI" + }, + "publicationYear": 2004, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Malacostraca" + }, + { + "subject": "Decapoda" + }, + { + "subject": "Chirostylidae" + }, + { + "subject": "Uroptychus" + } + ], + "contributors": [], + "dates": [ + { + "date": "2004-02-18", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.436.1.1", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FFC1FFB19B27FF89E320FF86FFC0C74C", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFC1FFB19B27FF89E320FF86FFC0C74C", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/5028297", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.5244494", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03F887C99B63FFCFE228FE9AFB25C2F2", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.5029953", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 20. Uroptychus patulus n. sp., holotype female, 12.3 mm, NMV J21045. A, dorsum. B, anterior carapace, right lateral. C, telson. D, sternum. E, maxilliped 3, right lateral. F, crista dentata, right. G, antenna, right ventral. A–B = 2 mm, C–E = 1 mm, F–G = 0.5 mm.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Ahyong, Shane T. & Poore, Gary C. B., 2004, The Chirostylidae of southern Australia (Crustacea: Decapoda: Anomura), pp. 1-88 in Zootaxa 436 (1) on page 70, DOI: 10.11646/zootaxa.436.1.1, http://zenodo.org/record/5028297", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/5029954", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 3, + "citationCount": 0, + "partCount": 0, + "partOfCount": 3, + "versionCount": 0, + "versionOfCount": 1, + "created": "2021-06-24T22:34:51Z", + "registered": "2021-06-24T22:34:52Z", + "published": null, + "updated": "2021-10-06T14:43:48Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5353692", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5353692", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/5353693", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Kurczewski, Frank E.", + "givenName": "Frank E.", + "familyName": "Kurczewski", + "affiliation": ["1188 Converse Drive NE Atlanta, GA 30324"], + "nameIdentifiers": [] + }, + { + "name": "West, Rick C.", + "givenName": "Rick C.", + "familyName": "West", + "affiliation": ["6365 Willowpark Way Sooke, BC, Canada V9Z 1L9"], + "nameIdentifiers": [] + }, + { + "name": "Crews, Sarah C.", + "givenName": "Sarah C.", + "familyName": "Crews", + "affiliation": [ + "Department of Entomology California Academy of Sciences San Francisco, CA 94118" + ], + "nameIdentifiers": [] + }, + { + "name": "Jenzen-Jones, N. R.", + "givenName": "N. R.", + "familyName": "Jenzen-Jones", + "affiliation": ["P.O. Box 2178 Churchlands, WA 6018 Australia"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Figure 2 in Selenopidae (Arachnida: Araneae), a new host spider family for the spider wasp Tachypompilus ferrugineus (Say) (Hymenoptera: Pompilidae: Pompilini)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.5281/zenodo.5353689", + "identifierType": "DOI" + }, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-11-27", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.5281/zenodo.5353689", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:B753FFD0B01BFFD1FFBBFF9EFFDAFF83", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.5353693", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Figure 2. Route traveled (black line with arrow) by Tachypompi-", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Kurczewski, Frank E., West, Rick C., Crews, Sarah C. & Jenzen-Jones, N. R., 2020, Selenopidae (Arachnida: Araneae), a new host spider family for the spider wasp Tachypompilus ferrugineus (Say) (Hymenoptera: Pompilidae: Pompilini), pp. 1-6 in Insecta Mundi 2020 (824) on page 5, DOI: 10.5281/zenodo.5353689", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/5353692", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2021-09-01T07:08:05Z", + "registered": "2021-09-01T07:08:05Z", + "published": null, + "updated": "2021-09-01T07:08:05Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.255157", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.255157", + "identifiers": [], + "creators": [ + { + "name": "Khaefi, Roozbehan", + "givenName": "Roozbehan", + "familyName": "Khaefi", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Esmaeili, Hamid Reza", + "givenName": "Hamid Reza", + "familyName": "Esmaeili", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Sayyadzadeh, Golnaz", + "givenName": "Golnaz", + "familyName": "Sayyadzadeh", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Geiger, Matthias F.", + "givenName": "Matthias F.", + "familyName": "Geiger", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Freyhof, Jörg", + "givenName": "Jörg", + "familyName": "Freyhof", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 5 in Squalius namak, a new chub from Lake Namak basin in Iran (Teleostei: Cyprinidae)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4169.1.7", + "identifierType": "DOI" + }, + "publicationYear": 2016, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Chordata" + }, + { + "subject": "Actinopterygii" + }, + { + "subject": "Cypriniformes" + }, + { + "subject": "Cyprinidae" + }, + { + "subject": "Squalius" + } + ], + "contributors": [], + "dates": [ + { + "date": "2016-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4169.1.7", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:1461FFCBA30C0910C51EA031FFE72377", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/1461FFCBA30C0910C51EA031FFE72377", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/255153", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.5658195", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/E85887B3A30F0913C589A29FFA7C2742", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.5658197", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/E85887B3A30F091DC589A4B5FB7D21DF", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 5. Pattern of flank-scale pigmentation below dorsal fin: a, S. berak, ZM-CBSU J1725, 143 mm SL; Iran: Little Zab River between Piranshahr and Sardasht; b, S. lepidus ZM-CBSU G794, 145 mm SL; Iran: Seymareh River west of Charu Dareh; c, S. namak ZM-CBSU G437, 145 mm SL; Iran: Bolagh Spring at Shazand; d, S. turcicus IUSHM 1059, 148 mm SL; Turkey: stream between Sarikamis and Handere, about 4 km south of Sarikmis.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Khaefi, Roozbehan, Esmaeili, Hamid Reza, Sayyadzadeh, Golnaz, Geiger, Matthias F. & Freyhof, Jörg, 2016, Squalius namak, a new chub from Lake Namak basin in Iran (Teleostei: Cyprinidae), pp. 145-159 in Zootaxa 4169 (1) on page 152, DOI: 10.11646/zootaxa.4169.1.7, http://zenodo.org/record/255153", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/255157", + "contentUrl": null, + "metadataVersion": 5, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 3, + "citationCount": 4, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 0, + "created": "2017-01-21T08:33:27Z", + "registered": "2017-01-21T08:33:28Z", + "published": null, + "updated": "2023-12-03T03:49:53Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.1200378", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.1200378", + "identifiers": [], + "creators": [ + { + "name": "Martineau, Celine N.", + "nameType": "Personal", + "givenName": "Celine N.", + "familyName": "Martineau", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Nollen, Ellen A. A.", + "nameType": "Personal", + "givenName": "Ellen A. A.", + "familyName": "Nollen", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Ow956 Zgis144[P(Dat-1)::Yfp] | 2014-02-27T10:11:48+01:00" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2018, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2018-03-16", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.1200377", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0", + "rightsUri": "https://creativecommons.org/licenses/by/4.0" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "This experiment is part of the C.elegans behavioural database. For more information and the complete collection of experiments visit http://movement.openworm.org\n\n\n\npreview link : https://www.youtube.com/watch?v=Bk-v6vNqPPw\nstrain : OW956\ntimestamp : 2014-02-27T10:11:48+01:00\nstrain_description : zgIs144[P(dat-1)::YFP]\nsex : hermaphrodite\nstage : adult\nventral_side : anticlockwise\nmedia : NGM agar low peptone\narena : \n style : petri\n size : 35\n orientation : away\n \n\nfood : OP50\nwho : Celine N. Martineau, Bora Baskaner\nprotocol : Method in E. Yemini et al. doi:10.1038/nmeth.2560. Worm transferred to arena 30 minutes before recording starts.\nlab : \n name : European Research Institute for the Biology of Ageing\n location : The Netherlands\n \n\nsoftware : \n name : tierpsy (https://github.com/ver228/tierpsy-tracker)\n version : 423b4be3119d36644e9fd44c5d8c216756a55ed6\n featureID : @OMG\n \n\nbase_name : 20_R#1_OW956#5_day1_CCW_2014_02_27__10_11_48___8___5\ndays_of_adulthood : 1\nworm_id : 15041\ntotal time (s) : 899.632\nframes per second : 26.3852\nvideo micrometers per pixel : 4.62556\nnumber of segmented skeletons : 20753", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/1200378", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": null, + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2018-03-20T18:25:34Z", + "registered": "2018-03-20T18:25:34Z", + "published": null, + "updated": "2020-09-20T00:24:22Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.6315051", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.6315051", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/039F87BE67AA9BF8441CAE27FB892BAE", + "identifierType": "URL" + }, + { + "identifier": "https://zenodo.org/record/6315052", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Becherer", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Primula hirsuta L." + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "http://publication.plazi.org/id/FFA6FFC667649B364568A929FFBB2C30", + "identifierType": "URL" + }, + "publicationYear": 1956, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "1956-08-15", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFA6FFC667649B364568A929FFBB2C30", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.6315052", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "C. hirsuta L. Cat. 21. 3a: Gondo, mehrfach (Becherer).", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Becherer, 1956, Florae Vallesiacae Supplementum, pp. 1-556 in Denkschriften der Schweizerischen Naturforschenden Gesellschaft 71 on pages 1-556", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/6315051", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2022-02-28T23:52:42Z", + "registered": "2022-02-28T23:52:43Z", + "published": null, + "updated": "2023-03-21T16:56:34Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.11501076", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.11501076", + "identifiers": [], + "creators": [ + { + "name": "Djalalov, Bakhromjon", + "nameType": "Personal", + "givenName": "Bakhromjon", + "familyName": "Djalalov", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Mirzayeva, Zilola", + "nameType": "Personal", + "givenName": "Zilola", + "familyName": "Mirzayeva", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "INCREASING THE TECHNOLOGICAL COMPETENCE OF STUDENTS WITH SPECIAL NEEDS" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-06-06", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.11501077", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "This article aims to increase the technological component of students with special needs.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.11501076", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-06-06T07:51:18Z", + "registered": "2024-06-06T07:51:18Z", + "published": null, + "updated": "2024-06-10T07:50:21Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.2557844", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.2557844", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/2557845", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Guerra C., Maria de Lourdes", + "nameType": "Personal", + "givenName": "Maria de Lourdes", + "familyName": "Guerra C.", + "affiliation": ["Instituto Antártico Ecuatoriano (INAE)"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Interacciones entre diatomeas y otros microorganismos extremófilos en biopelículas antárticas de la Isla Greenwich (Islas Shetland del Sur-Antárctica)" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2019, + "subjects": [ + { + "subject": "Diatomeas, biopeículas, organismos extremófilos, Antárctica, Isla Greenwich" + } + ], + "contributors": [], + "dates": [ + { + "date": "2019-02-05", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Poster", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.2557845", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "El clima antártico es excepcionalmente frío, seco, ventoso y pobre en precipitaciones donde predomina la nieve y esporádicamente lluvia. La existencia de agua líquida es el principal factor que facilita la proliferación de organismos vivos. La primavera y el verano austral reducen las condiciones extremas del ambiente y facilitan el desarrollo de comunidades planctónicas y bentónicas microbianas, que incluyen bacterias autótrofas y heterótrofas, protistas. Estas comunidades han desarrollado distintos mecanismos de adaptación, como son las biopelículas o tapetes microbianos, formados por substancias secretadas por los microorganismos. Durante el deshielo estival en el área de Punta Ambato (isla Greenwich) se formó una biopelícula. Con la ayuda de un corer de 10 cm de diámetro, se colectó de manera aleatoria en 5 puntos diferentes del área; aproximadamente 3,5 cm de sustrato considerando que la altura de la biopelícula fue de 2,5 cm. Con la ayuda de un microscopio se analizó la comunidad presente en todo el perfil de cada tapete. En las biopelículas predominaron las diatomeas, sin embargo también se encontraron cianobacterias del género Lyngbya, así como otros microorganismos tales como bacterias, tardígrados y nemátodos. Las biopelículas están ampliamente distribuidos por el planeta encontrándose frecuentemente en ambientes considerados extremos. En la Antártica estos tapetes presentan en general una mayor diversidad de cianobacterias, así como también mayor presencia y diversidad de diatomeas y algas verdes. Las diatomeas son las responsables de un 50% de la fotosíntesis de la tierra mientras que las bacterias remineralizan la porción del carbón fijado. La mayoría de las biopelículas están construidas y dominadas por organismos que normalmente utilizan la luz como fuente de energía, el agua como dador de electrones y el CO2 como fuente de carbono, convirtiéndose en principales productores primarios y la base de la cadena trófica de estos ecosistemas en micro-escala.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/2557844", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2019-02-05T19:31:40Z", + "registered": "2019-02-05T19:31:41Z", + "published": null, + "updated": "2020-07-29T04:39:18Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10064570", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10064570", + "identifiers": [], + "creators": [ + { + "name": "Watson, Elizabeth", + "nameType": "Personal", + "givenName": "Elizabeth", + "familyName": "Watson", + "affiliation": ["Stony Brook University"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-8496-1647", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Courtney, Sofi", + "nameType": "Personal", + "givenName": "Sofi", + "familyName": "Courtney", + "affiliation": ["University of Washington"], + "nameIdentifiers": [] + }, + { + "name": "Montalto, Franco", + "nameType": "Personal", + "givenName": "Franco", + "familyName": "Montalto", + "affiliation": ["Drexel University"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Climate and vegetation change in a coastal marsh: two snapshots of groundwater dynamics and tidal flooding at Piermont Marsh, NY spanning 20 years" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [ + { + "subject": "groundwater hydrology" + }, + { + "subject": "eco-hydrological zonation" + }, + { + "subject": "marsh macrophyte" + }, + { + "subject": "Climate change" + }, + { + "subject": "Sea level rise" + }, + { + "subject": "coastal wetland" + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-12-04", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceType": "", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.21203/rs.3.rs-3171581/v1", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "10.5061/dryad.cjsxksncr", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10064571", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "MIT License", + "rightsUri": "https://opensource.org/licenses/MIT", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "mit", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Groundwater hydrology plays an important role in coastal marsh biogeochemical function, in part because groundwater dynamics drive the zonation of macrophyte community distribution. Changes that occur over time, such as sea level rise and shifts in habitat structure are likely altering groundwater dynamics and eco-hydrological zonation. We examined tidal flooding and marsh water table dynamics in 1999 and 2019 and mapped shifts in plant distributions over time, at Piermont Marsh, a brackish tidal marsh located along the Hudson River Estuary near New York City. We found evidence that the marsh surface was flooded more frequently in 2019 than in 1999, and that tides were propagating further into the marsh in 2019, although marsh surface elevation gains were largely matching that of sea level rise. The changes in groundwater hydrology that we observed are likely due to the high tide rising at a rate that is greater than that of mean sea level. In addition, we reported on changes in plant cover by P. australis, which has displaced native marsh vegetation at Piermont Marsh. Although P. australis has increased in cover, wrack deposition and plant die off associated Superstorm Sandy allowed for native vegetation to rebound in part of our focus area. These results suggest that climate change and plant community composition may interact to shape ecohydrologic zonation. Considering these results, we recommend that habitat models consider tidal range expansion and groundwater hydrology as metrics when predicting the impact of sea level rise on marsh resilience.", + "descriptionType": "Abstract" + }, + { + "description": "Funding provided by: National Science FoundationCrossref Funder Registry ID: https://ror.org/021nxhr62Award Number: 1946302\nFunding provided by: Hudson River FoundationCrossref Funder Registry ID: https://ror.org/04x0tcn90Award Number: Polgar Award", + "descriptionType": "Other" + }, + { + "description": "Hydrological measurements were collected during the spring and summer of 1999 and 2019 in Piermont Marsh (coordinates 41.0361°, -73.9105°). These measurements covered a transect that was laid out perpendicular to a tidal channel. The objective of this study was to compare the current tidal flooding and groundwater table levels with the data from 1999. The goal was to assess the differences in tidal hydrology between these two distinct time periods, which also differed in terms of marsh and water level elevations.\n\nTo determine groundwater levels and tidal flooding across the marsh, we installed seven water level loggers along a gradient, ranging from the tidal channel to the upland area. We constructed wells by suspending pressure transducers within 7.5 cm diameter perforated PVC pipes lined with screening to prevent sediment from entering the well. These wells were positioned one meter below the marsh surface, 0.6 meters above the soil surface, vented to the atmosphere, and only the section below the soil surface was perforated. Additionally, we installed concrete collars at the marsh surface around the wells to prevent preferential water flow down the well sides. These seven wells were placed along the original transect, perpendicular to the creek, with increasing distances (0 meters, 6 meters, 12 meters, 18 meters, 24 meters, 36 meters, and 48 meters).\n\nWe installed and monitored the wells from May 5 to June 30, 2019, and from April 6 to May 26, 1999. In 2019, we measured the absolute elevation of the top of each well using RTK-enabled static GPS measurements from Leica GNSS GS14 rover units and static measurements with an AX1202 GG base station unit to reference water levels to the NAVD88 vertical datum. We measured reference water levels each time data was collected, which involved determining the distance from the top of the well to the water surface and converting it to elevation relative to the NAVD88 datum. To relate marsh elevation to water elevations, GPS surveys were conducted along the transect using a Leica GNSS GS14 rover unit. In 1999, elevation control for the wells and water levels was similarly measured using survey-grade GPS.\n\nWe compared changes in the marsh water table with significant potential hydrological and vegetation changes that have occurred over the past 20 years. We calculated the rates of change in monthly water levels at Battery, NY for the period from 1999 to 2019 using two different methods. We modeled changes over time in monthly highest water levels, mean high water (MHW), mean tide level (MTL), and mean low water (MLW) using an ordinary least squares regression model with ARIMA errors to account for the autoregressive structure of tide data. We removed the annual cycle first using a curve with a 1-year periodicity. The ARIMA errors model was fitted using the \"auto.arima\" function from the \"forecast\" package. We calculated the squared correlation of fitted values to actual values to produce a pseudo-r2. For comparison, we calculated trends using ordinary least squares regression for the 1999-2019 period, although it's important to note that the temporal autocorrelation likely results in underestimated uncertainty.\n\nWe obtained vegetation maps from the HRNERR for 1997, 2005, 2014, and 2018 to help assess changes in the coverage of plant species over time, as these changes could impact evapotranspiration and water table patterns. A 20-meter buffer zone was created around each well location, and the composition of vegetation within this buffer zone was quantified using QGIS version 3.30.2. While four time-points may not be sufficient for statistically identifying trends, we analyzed the changes observed.\n\nTo put the measurement time periods in context and ensure that our selected seasons were not anomalous, we compared water levels in spring 1999 and 2019 relative to the astronomical cycles driving interannual sea level variability using data from the Battery tide gauge. We also compared spring high tide levels in 1999 and 2019 with surrounding years. The main astronomical cycles thought to influence tides include the 18.6-year lunar nodal cycle and the 4.4-year subharmonic of the 8.85-year lunar perigee cycle. As our 1999 and 2019 measurements were collected during slightly different time periods (April/May 1999 vs. May/June 2019), we also examined mean monthly water levels (1980-2022) from the NOAA Battery tidal gauge to identify potential artifacts. We obtained rainfall data from spring 1999 and 2019 from the nearest precipitation monitoring station (Westchester airport) to determine whether the measurements were made during an unusually wet or dry period. The sampling periods were 20 years apart, so they occurred at approximately the same point in the 18.6-year lunar nodal cycle.\n\nPressure transducer data was processed using HOBOware Pro (Version 3.7.16, Onset Computer Corporation, Bourne, MA) with reference water levels collected in the field. The data were corrected for atmospheric pressure using the HOBOware barometric compensation assistant, using data from the Hudson River National Estuarine Research Reserve.\n\nRaw water elevation data from 1999 was analyzed in conjunction with the 2019 data. Water level data from 1999 were converted from the NVGD29 to NAVD 88 datum using NOAA VDatum v4.0.1 prior to analysis. Well seven's transducer experienced three brief malfunctions from May 30 to June 3, 2019, resulting in inaccurate elevation measurements for a total of 19.5 hours. These data were excluded from the analysis. In 1999, well seven also experienced malfunctions, which were corrected by Montalto into smoothed six-hour increments using average water elevation measurements and calculated error, calibrated using regression. No other well transducers appeared to have malfunctioned.", + "descriptionType": "Methods" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10064570", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-12-04T23:33:37Z", + "registered": "2023-12-04T23:33:38Z", + "published": null, + "updated": "2023-12-04T23:33:38Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.4108308", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.4108308", + "identifiers": [], + "creators": [ + { + "name": "Rusha Mudgal", + "nameType": "Personal", + "familyName": "Rusha Mudgal", + "affiliation": [ + "International Journal of Advanced Research (IJAR)" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "SOCIAL MEDIA PLATFORMS AND BRAND COMMUNICATION DURING COVID-19 CRISIS IN INDIA" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Social Media Brand Communication Communication Strategy Social Media Marketing User Generated Content Influencer Marketing Viral Buzz Memes Netizens Brand Management" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-09-15", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.4108309", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Social media has created a huge impact on marketing strategies of almost all the industries worldwide. The deeper penetration of internet coupled with affordable smart phones has leveled up the entire process of reaching the existing and prospective customers. During the pandemic (after lockdown was imposed), there has been great surge in consumption of social media. So social media became the appropriate platform for projection of branding activities and marketing techniques as through social media platforms they are easy to understand, quickly grasped, widely shared and can also be measured. Many brands used their old advertisements to which the audiences could connect due to nostalgia. The fact that most of the communication taking place through these platforms is real-time and is mostly consumer-driven, helps engaging more people and allows room for innovation in content creation. Online presence of brands across social media platforms has opened new horizons of opportunities for brands to combat some effects of the pandemic and infodemic with innovative strategies. User-generated content, influencer-marketing are some of the strategies that have been well-received by the netizens. However, the key to drive a successful social media strategy is seen to be continual responses to the existing and potential customers and prepare for future while learning from present situation. This helped in dealing with the pandemic and ‘infodemic. Social media platforms like Facebook, Instagram, Youtube, Twitter, Whats App, LinkedIn, Snapchat, Pinterest and like, provide explicit prospects for brand management and user-engagement. This study explores the potential of social media for brand communications during the covid-19 crisis in India.\n\n\n ", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.4108308", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2020-10-20T08:05:51Z", + "registered": "2020-10-20T08:05:52Z", + "published": null, + "updated": "2024-08-29T20:09:15Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5733768", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5733768", + "identifiers": [], + "creators": [ + { + "name": "Tiwari, Ida", + "nameType": "Personal", + "givenName": "Ida", + "familyName": "Tiwari", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Singh, Manorama", + "nameType": "Personal", + "givenName": "Manorama", + "familyName": "Singh", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "K. P. Singh", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Fabrication, characterization and application of carbon ceramic nanocomposite prepared by using multiwalled carbon nanotubes and organically modified sol-gel glasses" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2014, + "subjects": [ + { + "subject": "Ormosil" + }, + { + "subject": "ceramic nanocomposite" + }, + { + "subject": "multiwalled carbon nanotubes" + }, + { + "subject": "HRP" + } + ], + "contributors": [], + "dates": [ + { + "date": "2014-09-01", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.5733767", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Department of Chemistry (Centre for Advanced Study), Faculty of Science, Banaras Hindu University, Varanasi-221 005, Uttar Pradesh, India E-mail : idatiwari_2001@rediffmail.com Department of Chemistry, Guru Ghasidas Vishwavidyalaya, Bilaspur-495 009, Chhattisgarh, India E-mail : manoramabhu@gmail.com Manucript received online 18 January 2014, revised 25 February 2014, accepted 01 March 2014 We herein report the development of carbon ceramic nanocomposite nanoelectrodes by incorporation of multiwalled carbon nanotubes (MWCNTs) in organically modified sol-gel glass (Ormosil) matrix which is derived from silane precursors, 3-glycidoxypropyltrimethoxysilane, tetraethoxysilane and 3-aminopropyltrimethoxysilane. The different ratios of the silanes precursors, temperature, and gelation time were all optimized in order to obtain a stable and reproducible film. The ceramic composite was modified with the incorporation of MWCNTs, a redox mediator ferricyanide and the enzyme Horseradish peroxidase (HRP). Characterization of the ceramic composite was performed with scanning electron microscopy (SEM), transmission electron microscopy (TEM), atomic force microscopy (AFM) and cyclic voltammetry (CV). The ceramic composite sensor was explored towards the sensing of hydrogen peroxide providing a useful electroanalytical performance.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/5733768", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2021-11-29T06:08:58Z", + "registered": "2021-11-29T06:08:58Z", + "published": null, + "updated": "2022-08-06T06:34:32Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13183358", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13183358", + "identifiers": [ + { + "identifier": "urn:lsid:plazi.org:pub:FFEFFFF4FFECFF9BFFCCFFDAFFEBFF81", + "identifierType": "LSID" + } + ], + "creators": [ + { + "name": "Karel Mach, Zdeněk Dvořák", + "nameType": "Personal", + "givenName": "Zdeněk Dvořák", + "familyName": "Karel Mach", + "affiliation": [ + "Severočeské doly (North-Bohemian Mines) a.s., ul. 5. května 213,418 29 Bílina,Czech Republic;e-mail:Mach@sdas.cz; Dvorak@sdas.cz" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Geology Of The Site Kučlín, Trupelník Hill Near Bílina In North Bohemia" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2011, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2011-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasPart", + "relatedIdentifier": "10.5281/zenodo.13183361", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasPart", + "relatedIdentifier": "10.5281/zenodo.13183363", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasPart", + "relatedIdentifier": "10.5281/zenodo.13183365", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasPart", + "relatedIdentifier": "10.5281/zenodo.13183367", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasPart", + "relatedIdentifier": "10.5281/zenodo.13183369", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13183359", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", + "rightsUri": "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-nc-nd-3.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Karel Mach, Zdeněk Dvořák (2011): Geology Of The Site Kučlín, Trupelník Hill Near Bílina In North Bohemia. Acta Musei Nationalis Pragae Series B 67 (3-4): 77-82, DOI: 10.5281/zenodo.13183359", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13183358", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 5, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-08-03T03:34:41Z", + "registered": "2024-08-03T03:34:42Z", + "published": null, + "updated": "2024-08-03T03:39:51Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10334153", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10334153", + "identifiers": [ + { + "identifier": "oai:zenodo.org:10334153", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "rla-archaeology", + "nameType": "Personal", + "familyName": "rla-archaeology", + "affiliation": ["none"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Fredricks Check Stamped Jar Rim (2351p6481-2)" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2019, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2019-02-09", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10334152", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", + "rightsUri": "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-nc-sa-2.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "**Fredricks Check Stamped jar rim**\n\nLocation: Fredricks site (31Or231), Orange County, North Carolina.\n\nPeriod: Historic (AD 1700).\n\nMaterial: ceramic.\n\nDimensions: length, 142.1 mm; width, 89.2 mm; thickness, 5.4 mm.\n\nNotes: Catalog no. 2351p6481-2 (Vessel 35), North Carolina Archaeological Collection, Research Laboratories of Archaeology, University of North Carolina at Chapel Hill. Model by Abigail Gancz.\n\nSource: Objaverse 1.0 / Sketchfab", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10334153", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-12-28T19:41:27Z", + "registered": "2023-12-28T19:41:27Z", + "published": null, + "updated": "2023-12-28T19:41:27Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3951657", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3951657", + "identifiers": [], + "creators": [ + { + "name": "Ganesan, Sai", + "nameType": "Personal", + "givenName": "Sai", + "familyName": "Ganesan", + "affiliation": ["UCSF"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Integrative structure and function of the yeast exocyst complex" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/integrativemodeling", + "identifierType": "URL" + }, + "publicationYear": 2020, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2020-04-02", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Journal article", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.3951656", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/integrativemodeling", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/salilab", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "2", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "This repository contains the modeling files and the analysis related to the article titled Integrative Modeling and Analyses of the Yeast Exocyst Complex published at Protein Science Ganesan SJ, Feyder MJ, Chemmama IE, et al. Integrative structure and function of the yeast exocyst complex. Protein Sci. 2020;29(6):1486-1501. doi:10.1002/pro.3863", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3951657", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 1, + "versionCount": 0, + "versionOfCount": 1, + "created": "2020-07-19T23:03:02Z", + "registered": "2020-07-19T23:03:03Z", + "published": null, + "updated": "2020-07-19T23:13:08Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.7663603", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.7663603", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/7663604", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Chen, Zhi-Teng", + "givenName": "Zhi-Teng", + "familyName": "Chen", + "affiliation": [ + "School of Grain Science and Technology, Jiangsu University of Science and Technology, Zhenjiang 212004, China." + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 13 in The little-known larval morphology of two stoneflies of Styloperlidae (Insecta: Plecoptera) in China" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.5244.4.3", + "identifierType": "DOI" + }, + "publicationYear": 2023, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Plecoptera" + }, + { + "subject": "Styloperlidae" + }, + { + "subject": "Cerconychia" + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-02-21", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.5244.4.3", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FF87FFDA1532FFD8FF83FF8D4916FF81", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FF87FFDA1532FFD8FF83FF8D4916FF81", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/7663578", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.7663558", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03BE87A2153AFFD2FF14FF1A49F6F83B", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7663604", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 13. Cerconychia flectospina Wu, 1962, male larva. (A) Labrum, dorsal view. (B) Submentum, ventral view. Scale bars, 0.1 mm.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Chen, Zhi-Teng, 2023, The little-known larval morphology of two stoneflies of Styloperlidae (Insecta: Plecoptera) in China, pp. 361-376 in Zootaxa 5244 (4) on page 372, DOI: 10.11646/zootaxa.5244.4.3, http://zenodo.org/record/7663578", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/7663603", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 2, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2023-02-22T07:34:53Z", + "registered": "2023-02-22T07:34:54Z", + "published": null, + "updated": "2023-02-22T07:41:21Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10681859", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10681859", + "identifiers": [ + { + "identifier": "oai:zenodo.org:10681859", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "CuckooWorkgroup", + "nameType": "Organizational", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "BioCUCKOO/VTL: First relaease of VTL" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-02-20", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceType": "", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/BioCUCKOO/VTL", + "resourceTypeGeneral": "Software", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10681858", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10681859", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 1, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-02-20T02:59:14Z", + "registered": "2024-02-20T02:59:14Z", + "published": null, + "updated": "2024-02-20T02:59:16Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.12719440", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.12719440", + "identifiers": [ + { + "identifier": "oai:zenodo.org:12719440", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Silva-Junior, Dario Ernesto da", + "nameType": "Personal", + "givenName": "Dario Ernesto da", + "familyName": "Silva-Junior", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Ramos, Telton Pedro Anselmo", + "nameType": "Personal", + "givenName": "Telton Pedro Anselmo", + "familyName": "Ramos", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Zanata, Angela Maria", + "nameType": "Personal", + "givenName": "Angela Maria", + "familyName": "Zanata", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "FIGURE 3 in A new species of Parotocinclus with reduced adipose fin (Loricariidae: Hypoptopomatinae), from the rio Jacuípe basin, Bahia State, Brazil" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Chordata" + }, + { + "subject": "Siluriformes" + }, + { + "subject": "Loricariidae" + }, + { + "subject": "Parotocinclus" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-06-17", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.1590/1982-0224-2019-0137", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFCCE017795DFFB0351AFFB1DF646E16", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/12719434", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03F5986F795EFFB837F0FF0FDDF76957", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.12719439", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "FIGURE 3 | Distribution of Parotocinclus jacumirim (red star), rio Jacumirim, tributary of rio Jacuípe, on road BA-093 between municipalities of Dias d'Ávila and Mata de São João, Dias d'Ávila, Bahia, Brazil.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Silva-Junior, Dario Ernesto da, Ramos, Telton Pedro Anselmo & Zanata, Angela Maria, 2020, A new species of Parotocinclus with reduced adipose fin (Loricariidae: Hypoptopomatinae), from the rio Jacuípe basin, Bahia State, Brazil, pp. 1-15 in Neotropical Ichthyology (e190137) 18 (2) on page 9, DOI: 10.1590/1982-0224-2019-0137, http://zenodo.org/record/12719434", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.12719440", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 1, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-07-11T05:51:20Z", + "registered": "2024-07-11T05:51:20Z", + "published": null, + "updated": "2024-07-11T05:51:22Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3976333", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3976333", + "identifiers": [], + "creators": [ + { + "name": "Vlas Zyrianov", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Guarnera, Drew T.", + "nameType": "Personal", + "givenName": "Drew T.", + "familyName": "Guarnera", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Peterson, Cole S.", + "nameType": "Personal", + "givenName": "Cole S.", + "familyName": "Peterson", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Sharif, Bonita", + "nameType": "Personal", + "givenName": "Bonita", + "familyName": "Sharif", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Maletic, Jonathan I.", + "nameType": "Personal", + "givenName": "Jonathan I.", + "familyName": "Maletic", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "iTrace Deja Vu Tool" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2020, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2020-08-08", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.3976332", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Executables for iTrace Deja Vu. Deja Vu is a tool for performing eye tracking gaze analysis in real world developer environments as a post-processing step. This allows deeper analysis to be performed at higher eye tracking speeds then would be possible if analysis was performed in real time.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3976333", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2020-08-08T03:16:56Z", + "registered": "2020-08-08T03:16:58Z", + "published": null, + "updated": "2020-08-08T03:16:58Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3518693", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3518693", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/3518694", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Tenhunen, Ville", + "nameType": "Personal", + "givenName": "Ville", + "familyName": "Tenhunen", + "affiliation": [ + "University of Helsinki / Center for Information Technology" + ], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0003-0217-0831", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Kesälä, Eero", + "nameType": "Personal", + "givenName": "Eero", + "familyName": "Kesälä", + "affiliation": [ + "University of Helsinki / Center for Information Technology" + ], + "nameIdentifiers": [] + }, + { + "name": "Saarinen, Matti", + "nameType": "Personal", + "givenName": "Matti", + "familyName": "Saarinen", + "affiliation": [ + "University of Helsinki / Center for Information Technology" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Datacloud - Distributed architecture for data storing and sharing" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2019, + "subjects": [ + { + "subject": "RDM" + }, + { + "subject": "Research data management" + }, + { + "subject": "Storage" + }, + { + "subject": "Object storage" + }, + { + "subject": "Ceph" + }, + { + "subject": "Nextcloud" + }, + { + "subject": "S3" + } + ], + "contributors": [], + "dates": [ + { + "date": "2019-10-23", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Poster", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.3518694", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Datacloud is centralised service for storing and sharing research data within researchers of the University of Helsinki (UH) and their collaborators all over the world. The Datacloud is built on distributed storage architecture based on Ceph technology. Technologically solution is very scalable and gives possibility to build cost effective business model for smaller and bigger storage needs. Users can use resources via Nextcloud client or any application with the S3 capabilities.", + "descriptionType": "Abstract" + }, + { + "description": "{\"references\": [\"https://datacloud.helsinki.fi\", \"https://en.wikipedia.org/wiki/Ceph_(software)\", \"https://en.wikipedia.org/wiki/Amazon_S3\", \"https://en.wikipedia.org/wiki/Software-defined_storage\", \"https://whatis.techtarget.com/definition/commodity-ha rdware\", \"https://en.wikipedia.org/wiki/HAProxy\", \"https://bit.ly/2UYPieK\"]}", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3518693", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": null, + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-10-25T05:56:10Z", + "registered": "2019-10-25T05:56:10Z", + "published": null, + "updated": "2020-07-30T07:25:53Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10790987", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10790987", + "identifiers": [ + { + "identifier": "oai:zenodo.org:10790987", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Leogrande, Angelo", + "nameType": "Personal", + "givenName": "Angelo", + "familyName": "Leogrande", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "The Transfer of Waste to Landfill in the Italian Regions" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-03-07", + "dateType": "Issued" + }, + { + "date": "2024", + "dateType": "Available" + } + ], + "language": null, + "types": { + "ris": "GEN", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "CreativeWork", + "resourceType": "", + "resourceTypeGeneral": "Other" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10790986", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Istat calculates the value of waste disposal in landfills in the Italian regions. The transfer of waste to landfill is defined as the percentage of municipal waste sent to landfill out of the total municipal waste produced. The data refers to the Italian regions between 2004 and 2021.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10790987", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-03-06T23:13:00Z", + "registered": "2024-03-06T23:13:01Z", + "published": null, + "updated": "2024-03-06T23:14:36Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.8142348", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.8142348", + "identifiers": [], + "creators": [ + { + "name": "Antić, Dragan", + "givenName": "Dragan", + "familyName": "Antić", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 4 in Karadenizia, a new monospecific pachyiuline genus (Diplopoda: Julida: Julidae) from Turkey" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.5315.5.2", + "identifierType": "DOI" + }, + "publicationYear": 2023, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Diplopoda" + }, + { + "subject": "Julida" + }, + { + "subject": "Julidae" + }, + { + "subject": "Karadenizia" + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-07-12", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.5315.5.2", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FFECFFE9FFC5FF98A12580523840BD06", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFECFFE9FFC5FF98A12580523840BD06", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/8142338", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.8145162", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03D58791FFC4FF91A1B285BB3ABDBDD3", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.8142347", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 4. Karadenizia merti gen. nov., sp. nov., ♁ holotype (ABBM), left opisthomere (posterior gonopod). A. Posteromesal view. B. Mesal view. C. Anterior view. D. Anterolateral view. E. Lateral view. F. Posterolateral view. G. Distal view. Abbreviations: am: accessory membrane; l: subtriangular lobe; m: mesomeral process; o: opisthomere; s: solenomere; sg: sperm groove; v: velum. Scale bar: 0.1 mm.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Antić, Dragan, 2023, Karadenizia, a new monospecific pachyiuline genus (Diplopoda: Julida: Julidae) from Turkey, pp. 456-468 in Zootaxa 5315 (5) on page 461, DOI: 10.11646/zootaxa.5315.5.2, http://zenodo.org/record/8142338", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/8142348", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 3, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 1, + "created": "2023-07-13T08:24:27Z", + "registered": "2023-07-13T08:24:28Z", + "published": null, + "updated": "2024-01-24T04:27:45Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.8060813", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.8060813", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/8060814", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Dominguez Perera Mario A", + "affiliation": ["MD"], + "nameIdentifiers": [] + }, + { + "name": "Quiros Luis JJ", + "affiliation": ["MD"], + "nameIdentifiers": [] + }, + { + "name": "Gandarilla Sarmiento JC", + "affiliation": ["MD"], + "nameIdentifiers": [] + }, + { + "name": "Yunieff AG", + "affiliation": ["Nurse"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Bacteriemia asociada a cateter venoso central" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [ + { + "subject": "bacteriemia, cateter venoso central" + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-06-20", + "dateType": "Issued" + } + ], + "language": "es", + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8060814", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Base datos 2022 proyecto BRCVC", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/8060813", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-06-20T16:47:14Z", + "registered": "2023-06-20T16:47:14Z", + "published": null, + "updated": "2023-06-20T16:47:15Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.6045442", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.6045442", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/03E687DBFFEDF958FF3CFCE1FE6D2865", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Rivera, Julio", + "nameType": "Personal", + "givenName": "Julio", + "familyName": "Rivera", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Vergara-Cobián, Clorinda", + "nameType": "Personal", + "givenName": "Clorinda", + "familyName": "Vergara-Cobián", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Miracanthops poulaini Roy 2004" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4337.3.3", + "identifierType": "DOI" + }, + "publicationYear": 2017, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Mantodea" + }, + { + "subject": "Acanthopidae" + }, + { + "subject": "Miracanthops" + }, + { + "subject": "Miracanthops poulaini" + } + ], + "contributors": [], + "dates": [ + { + "date": "2017-10-19", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4337.3.3", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zenodo.org/record/1024946", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFDFFFA3FFE0F955FFABFF9FFF932C64", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/03E687DBFFEDF958FF3CFCE1FE6D2865", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.gbif.org/species/135450882", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.checklistbank.org/dataset/31801/taxon/03E687DBFFEDF958FF3CFCE1FE6D2865.taxon", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/89E1CC86-BF39-42AB-89F5-3C24473AA320", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.6045441", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "42. Miracanthops poulaini Roy, 2004 [LO] \n Type locality. Roy (2004a): Genaro Herrera, in Loreto (Peru). Examined material. None.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Rivera, Julio & Vergara-Cobián, Clorinda, 2017, A checklist of the praying mantises of Peru: new records, one new genus (Piscomantis gen. n.) and biogeographic remarks (Insecta, Mantodea), pp. 361-389 in Zootaxa 4337 (3) on page 374, DOI: 10.11646/zootaxa.4337.3.3, http://zenodo.org/record/1024946", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.6045442", + "contentUrl": null, + "metadataVersion": 3, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 1, + "created": "2022-02-11T12:59:19Z", + "registered": "2022-02-11T12:59:19Z", + "published": null, + "updated": "2023-12-12T14:27:58Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5940291", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5940291", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/873687E8FFC5822926D37678FA31FF20", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Gawas, Sandesh M.", + "nameType": "Personal", + "givenName": "Sandesh M.", + "familyName": "Gawas", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Kumar, P. Girish", + "nameType": "Personal", + "givenName": "P. Girish", + "familyName": "Kumar", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Gupta, Ankita", + "nameType": "Personal", + "givenName": "Ankita", + "familyName": "Gupta", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Sureshan, P. M.", + "nameType": "Personal", + "givenName": "P. M.", + "familyName": "Sureshan", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Labus pusillus van der Vecht 1963" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4585.2.3", + "identifierType": "DOI" + }, + "publicationYear": 2019, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Hymenoptera" + }, + { + "subject": "Vespidae" + }, + { + "subject": "Labus" + }, + { + "subject": "Labus pusillus" + } + ], + "contributors": [], + "dates": [ + { + "date": "2019-04-12", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4585.2.3", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zenodo.org/record/2637308", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/7B0FFF90FFC0822F26447179FFA4FFD8", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/873687E8FFC5822926D37678FA31FF20", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.gbif.org/species/156191904", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.checklistbank.org/dataset/27327/taxon/873687E8FFC5822926D37678FA31FF20.taxon", + "relatedIdentifierType": "URL" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.2637316", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/6EBE7177-CA1E-44AD-8091-E2EA3D1EDBF1", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.5940292", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "12) Labus pusillus van der Vecht, 1963 \n(Figs 23 & 24) \n Labus pusillus van der Vecht, 1963: 6, [♀, ♂], holotype ♀ “Deiyannewela, Kandy, Ceylon ” (NHMB). \n Material examined: INDIA: Goa: Dharbandora, Bhagwan Mahaveer Wildlife Sanctuary & Mollem National Park, 1♀, 17.v.2018, coll. P. Girish Kumar & Party, ZSIK Regd. No. ZSI/ WGRC /I.R.-INV.11675. \n Distribution. India: Andhra Pradesh, Assam, Goa (new record), Himachal Pradesh, Karnataka, Kerala, Maharashtra, Meghalaya, Mizoram, Puducherry, Sikkim, Tamil Nadu, Uttarakhand, Uttar Pradesh, West Bengal. Global: Bhutan; China; Nepal; Sri Lanka; Vietnam. (Pannure et al. 2016, Nidup et al. 2016, Li & Carpenter 2018).", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Gawas, Sandesh M., Kumar, P. Girish, Gupta, Ankita & Sureshan, P. M., 2019, Checklist of vespid wasps (Hymenoptera: Vespidae) of Goa, India, with new records and a key to species, pp. 269-294 in Zootaxa 4585 (2) on pages 274-275, DOI: 10.11646/zootaxa.4585.2.3, http://zenodo.org/record/2637308", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.5940291", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 1, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2022-02-01T16:09:25Z", + "registered": "2022-02-01T16:09:26Z", + "published": null, + "updated": "2023-12-31T03:46:48Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13158527", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13158527", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/038DC966302AEA1BE5F2FB71E68F5C63", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Dollfuss, Hermann", + "nameType": "Personal", + "givenName": "Hermann", + "familyName": "Dollfuss", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Cerceris fimbriata subsp. pallidopicta RADOSZKOWSKI 1877" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2021, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Hymenoptera" + }, + { + "subject": "Crabronidae" + }, + { + "subject": "Cerceris" + }, + { + "subject": "Cerceris fimbriata" + }, + { + "subject": "Cerceris fimbriata pallidopicta radoszkowski, 1877" + } + ], + "contributors": [], + "dates": [ + { + "date": "2021-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.5281/zenodo.13154603", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFB4B11E303BEA09E540FFB7E5795E77", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/038DC966302AEA1BE5F2FB71E68F5C63", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13158528", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Cerceris fimbriata pallidopicta RADOSZKOWSKI, 1877 (21♀♀, 42♁♁) \nB u l g a r i a: Melnik nv., 16-22.VI.1987, leg. J. Halada (KS). \nC h i n a: 1♀, 1♁, Boro Horo Shan, Jining, Ining-H-Sien, 4406SS 8156VD, 26-31.VII.1991, leg. Snizek (JH). \nI r a n: 4♀♀ 3♁♁, Golestan province, 70 km E Minudasht, 37.36°N 55.99°E, 1050m, 12.VI.2010, leg. Mi. Halada (JH); 1♁, Kerman province, 8 km N Badsir, 2050m, 29.95°N 56.58°E, 6.VI.2010, leg. Mi. Halada (Do). \nK a z a k h s t a n: 1♀, 3♁♁, Almaty province, Lepsi env., 400m, 46°13'27''N 78°29'27''E, 2. VI.2016, leg. J. Halada (Do); 1♀, 1♁, Almaty province, Taugum desert, 386m 44°58'33''N 75°34'59''E, 8. VI.2016, leg. J. Halada (Do); 1♀, 1♁, Lepsi 5 km SE, 18. VI.1992, leg. M. Halada (JH); 1♀, lake Atakol, Kotuma, 22. VI.1995, leg. J. Halada (KS); 1♀, 1♁, South K. province, 5 km W Shardara, 250m, 41°16'14''N 67°53'02''E, 23-24. V.2016, leg. J Halada (JH); 1♀, Almaty province, 80 km NW Almaty, Kurti, 43°59'N 76°19'E, 490m, 8. VI.2016, leg. J. Halada (JH); 1♁, 10 km E Ddjambul, 31. V.1994, leg. J. Halada (KS). \nK y r g y z s t a n: 1♀, Chamaldi-Sai, 41.2°N 71.8°E, 30.V.1995, leg. J. Halada (KS). \nS y r i a: 1♀, Homs, Palmyra env. 6.VI.2000, leg. Denes (JH). \nT a j i k i s t a n: 1♀, Roziyon, 20 km N Dangara, 38.27071N 69.25666E, 1250m, 6. VII.2019, leg. Straka (JH); 2♀♀, 12♁♁, Dzharteppa, 6 km S Dangara, 38.02338N 69.36546E, 630m, 4.+ 5. VII.2019, leg. Straka (Do); 2♁♁, 6 km Dangara, 630m, 38.02338N 69.36546E, 5. VII.2019, leg. Straka (Do); 1♁, Nurek (dam), 7-10. VI.1990, leg. J. & M. Halada (JH); 3♁♁, Vachs, 4- 6. VI.1990, leg. J. & M. Halada (Do). \nT u r k m e n i s t a n: 1♀, 2♁♁, Sandikatzi env., 3-13. V.1993, leg. J. Halada & Denes (KS, Do); 2♀♀, 1♁, Schabat 15 km N, 25-31. V.1993, leg. M. Halada (KS); 1♀, 1♁, Kopet-Dag, Kizil Arvat 50 km S Chajagala, 17. V.1993, leg. M. Halada (KS); 1♁, Aschabat, 20 km E Annau, 3. VI.1993, leg. M. Halada (KS). \nU z b e k i s t a n: 1♁, 52 km NW Ddjizak, 40.1°N 67.4°E, 26.V.1994, leg. J. Halada (KS).", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Dollfuss, Hermann, 2021, The Sphecid Wasps of the genus Cerceris LATREILLE, 1802 of the Jiři Halada collection (Suchdol nad Lužnicí, Czech Republic), from the Palearctic Region (Hymenoptera, Apoidea, Crabronidae), pp. 577-630 in Linzer biologische Beiträge 53 (2) on pages 594-595, DOI: 10.5281/zenodo.13154603", + "descriptionType": "Other" + } + ], + "geoLocations": [ + { + "geoLocationPlace": "Golestan province", + "geoLocationPoint": { + "pointLatitude": "37.36", + "pointLongitude": "55.99" + } + }, + { + "geoLocationPlace": "Kerman province", + "geoLocationPoint": { + "pointLatitude": "29.95", + "pointLongitude": "56.58" + } + }, + { + "geoLocationPlace": "Lepsi", + "geoLocationPoint": { + "pointLatitude": "46.224167", + "pointLongitude": "78.49083" + } + }, + { + "geoLocationPlace": "Taugum", + "geoLocationPoint": { + "pointLatitude": "44.975834", + "pointLongitude": "75.58305" + } + }, + { + "geoLocationPlace": "South", + "geoLocationPoint": { + "pointLatitude": "41.270554", + "pointLongitude": "67.88389" + } + }, + { + "geoLocationPlace": "Kurti", + "geoLocationPoint": { + "pointLatitude": "43.983334", + "pointLongitude": "76.316666" + } + }, + { + "geoLocationPlace": "Roziyon", + "geoLocationPoint": { + "pointLatitude": "38.27071", + "pointLongitude": "69.25666" + } + }, + { + "geoLocationPlace": "Dzharteppa", + "geoLocationPoint": { + "pointLatitude": "38.02338", + "pointLongitude": "69.36546" + } + }, + { + "geoLocationPlace": "6 km Dangara", + "geoLocationPoint": { + "pointLatitude": "38.02338", + "pointLongitude": "69.36546" + } + } + ], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13158527", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-08-01T22:54:03Z", + "registered": "2024-08-01T22:54:03Z", + "published": null, + "updated": "2024-08-02T01:23:31Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10923836", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10923836", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/784C0E614CB4A31AFBD5C19C8EE1A225", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Info Flora", + "nameType": "Personal", + "familyName": "Info Flora", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Sporobolus neglectus Nash" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2021, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Plantae" + }, + { + "subject": "Tracheophyta" + }, + { + "subject": "Liliopsida" + }, + { + "subject": "Poales" + }, + { + "subject": "Poaceae" + }, + { + "subject": "Sporobolus" + }, + { + "subject": "Sporobolus neglectus" + } + ], + "contributors": [], + "dates": [ + { + "date": "2021-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/BEC9D0867B1AAC94D240ACC58D38EC98", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/784C0E614CB4A31AFBD5C19C8EE1A225", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.gbif.org/species/224778247", + "relatedIdentifierType": "URL" + }, + { + "relationType": "Cites", + "relatedIdentifier": "https://www.dora.lib4ri.ch/wsl/islandora/object/wsl%3A9966", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.10680266", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5962/bhl.title.44833", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.10923837", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Sporobolus neglectus Nash \nUnscheinbares Fallsamengras \nArt ISFS: 405250 Checklist: 1045150 Poaceae Sporobolus Sporobolus vaginiflorus aggr. Sporobolus neglectus Nash \nBestimmungsschlüssel \nZusammenfassung \n Artbeschreibung (nach Lauber & al. 2018): Sehr ähnlich wie S. vaginiflorus, aber untere Deckspelzen nur 2-3 mm lang, kahl. \n Verbreitung global (nach Lauber & al. 2018): Nordamerikanisch \n Ökologische Zeigerwerte (nach Landolt & al. 2010) 2w42-54 + 3.t \nAnatomie \nZusammenfassung der Stammanatomie \nUmriss halbkreisförmig. Leitbündel in mehreren Reihen. Epidermiszellen verholzt. \nBeschreibung (Englisch) \nCulm-diameter 0.5-1 mm, center full, radius of culm in relation to wall thickness 1:1. Outline circular with a smooth surface. Culm-center full, containing unlignified cells. Epidermis-cells thick-walled all around. Large vascular bundles arranged in one peripheral row. Chlorenchyma absent. Sclerenchyma in a large, peripheral continuous belt (> 3 cells). Cells thick-walled. Small sclerenchymatic sheath with 1-2 cells around vascular bundles. Largest vessels in vascular bundles in lateral position. Largest vessel in the bundle small, <20μm. Cavities (intercellulars) between parenchyma-cells present, small, often triangular. Distinct cavities (intercellulars) in the protoxylem area of vascular bundles. \nÖkologie \nLebensraum Lebensraum nach Delarze & al. 2015 \n KEINE ANGABE \nÖkologische Zeigerwerte nach Landolt & al. (2010) \n Bodenfaktoren Klimafaktoren Salztoleranz Feuchtezahl F -- Lichtzahl L -- Salzzeichen -- Reaktionszahl R -- Temperaturzahl T -- Nährstoffzahl N -- Kontinentalitätszahl K -- \nNomenklatur \n Gültiger Name (Checklist 2017): Sporobolus neglectus Nash \nVolksname Deutscher Name: Unscheinbares Fallsamengras Nom français: Sporobole négligé Nome italiano: Gramigna minore \nÜbereinstimmung mit anderen Referenzwerken \n Relation Nom Referenzwerke No = Sporobolus neglectus Nash Checklist 2017 405250 \n= Taxon stimmt mit akzeptiertem Taxon überein (Checklist 2017) Taxon enthält (neben anderen) auch das akzeptierte Taxon (Checklist 2017) \nKommentare aus der Checklist 2017 Neues Taxon: Gegenüber SISF-2 neu aufgenommener Neophyt. Stammt aus Nordamerika. Checklist \nStatus Indigenat: Neophyt: nach der Entdeckung von Amerika in der Region aufgetreten (nach 1500) \nListe der gefährdeten Pflanzen IUCN (nach Walter & Gillett 1997): Nein", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Info Flora, 2021,", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10923836", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 3, + "citationCount": 0, + "partCount": 0, + "partOfCount": 1, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-04-04T04:25:52Z", + "registered": "2024-04-04T04:25:52Z", + "published": null, + "updated": "2024-08-19T20:08:28Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13899350", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13899350", + "identifiers": [], + "creators": [ + { + "name": "Ranjbar, Sadegh", + "nameType": "Personal", + "givenName": "Sadegh", + "familyName": "Ranjbar", + "affiliation": ["University of Wisconsin–Madison"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0001-5561-1552", + "nameIdentifierScheme": "ORCID" + } + ] + } + ], + "titles": [ + { + "title": "Supporting Gradient Boosting and SHAP Analysis Codes: sNIRvP (Shortwave Enhanced NIRvP) - A New Index for Gross Primary Productivity" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceType": "", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13900953", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13899351", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "This repository contains the code and data for the development of sNIRvP, a Shortwave Infrared-enhanced Near-InfraRed reflectance of Vegetation model aimed at improving the accuracy of Gross Primary Productivity (GPP) estimates. By integrating shortwave infrared (SWIR) reflectance bands into existing vegetation indices, such as NIRv, sNIRvP reduces the sensitivity of GPP estimates to soil background interference, moisture variability, and variations in solar and viewing angles. This model offers significant improvements in GPP prediction, especially in ecosystems with low vegetation cover or challenging soil conditions, using satellite platforms like MODIS and GOES-R ABI.\n\nThis software package and its accompanying dataset were used to evaluate the performance of sNIRvP across a wide range of vegetation types and seasonal conditions using AmeriFlux and NEON eddy covariance data. The results demonstrate the potential for more reliable GPP monitoring, particularly in drought-prone or sparsely vegetated regions.\n\nThis repository includes:\n\n\n\nSource code for the sNIRvP model\n\nThe source datasets doi: All GOES-R, and eddy covariance data used here are public and open access. GOES-R data for pixels that include Ameriflux sites are available at https://doi.org/10.6073/pasta/c3bb20a62edbf8548cbb30e79a689a5b \n\nAnalytical tools for performance evaluation using SHapley Additive exPlanations (SHAP) values", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13899350", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 2, + "versionOfCount": 0, + "created": "2024-10-07T16:59:41Z", + "registered": "2024-10-07T16:59:41Z", + "published": null, + "updated": "2024-10-07T20:34:29Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3129838", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3129838", + "identifiers": [ + { + "identifier": "http://www.botanicalcollections.be/specimen/BR0000010127346", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Meise Botanic Garden", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Silene dioica L. (BR0000010127346)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/belgiumherbarium", + "identifierType": "URL" + }, + "publicationYear": 2019, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Terrestrial" + }, + { + "subject": "Herbarium" + }, + { + "subject": "Caryophyllaceae" + } + ], + "contributors": [], + "dates": [ + { + "date": "2019-05-22", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Photo", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.3129837", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/belgiumherbarium", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution Share Alike 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by-sa/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-sa-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Belgium Herbarium image of Meise Botanic Garden.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [ + { + "awardUri": "info:eu-repo/grantAgreement/EC/H2020/777483/", + "awardTitle": "Innovation and consolidation for large scale digitisation of natural heritage", + "funderName": "European Commission", + "awardNumber": "777483", + "funderIdentifier": "https://doi.org/10.13039/501100000780", + "funderIdentifierType": "Crossref Funder ID" + } + ], + "url": "https://zenodo.org/record/3129838", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": null, + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-05-22T06:41:16Z", + "registered": "2019-05-22T06:41:17Z", + "published": null, + "updated": "2020-07-29T14:15:01Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3520762", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3520762", + "identifiers": [], + "creators": [ + { + "name": "Davoodi, Parisa", + "givenName": "Parisa", + "familyName": "Davoodi", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Rahimian, Hassan", + "givenName": "Hassan", + "familyName": "Rahimian", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 1 in Identifying Neogobius species from the southern Caspian Sea by otolith shape (Teleostei: Gobiidae)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4205.1.7", + "identifierType": "DOI" + }, + "publicationYear": 2016, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2016-12-05", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4205.1.7", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FF84C937FFFCFFE3FF94FFDDFFBFFFB5", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FF84C937FFFCFFE3FF94FFDDFFBFFFB5", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/192560", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.3520761", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 1. Location of sampling sites.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Davoodi, Parisa & Rahimian, Hassan, 2016, Identifying Neogobius species from the southern Caspian Sea by otolith shape (Teleostei: Gobiidae), pp. 81-86 in Zootaxa 4205 (1) on page 82, DOI: 10.11646/zootaxa.4205.1.7, http://zenodo.org/record/192560", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3520762", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-10-28T14:50:10Z", + "registered": "2019-10-28T14:50:11Z", + "published": null, + "updated": "2021-10-30T01:56:47Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10360805", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10360805", + "identifiers": [ + { + "identifier": "oai:zenodo.org:10360805", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Azizbek G. Kholliev", + "nameType": "Personal", + "familyName": "Azizbek G. Kholliev", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "SYSTEM OF MANAGEMENT OF FOREIGN ECONOMIC RELATIONS IN RUSSIA AT THE EARLY XVII-XIX CENTURIES" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [ + { + "subject": "Russia, foreign economic relations, management, trade, commerce, activity, entrepreneurship, system" + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-12-12", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10360804", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "This article considers the main stages and directions in the formation of the system for managing foreign economic relations in Russia in the 17th - early 19th centuries. The centralization of the public administration apparatus occurred in the specific historical conditions of the period under study, and in it the issue of managing foreign economic relations became an important component of the overall economic development of Russia. Consequently, a detailed consideration of this topic allows us to analyze the historical evolution of Russia's foreign economic policy.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10360805", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-12-20T19:44:59Z", + "registered": "2023-12-20T19:44:59Z", + "published": null, + "updated": "2023-12-20T19:44:59Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.2828729", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.2828729", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/2828730", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "M. A. Islam", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "P. J. Hazell", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "J. P. Escobedo", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "M. Saadatfar", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "In-Situ Quasistatic Compression and Microstructural Characterization of Aluminium Foams of Different Cell Topology" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/hsr", + "identifierType": "URL" + }, + "publicationYear": 2014, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2014-12-11", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Journal article", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.2828730", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/hsr", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "11025", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Quasistatic compression and micro structural characterization of closed cell aluminium foams of different pore size and cell distributions has been carried out. Metallic foams have good potential for lightweight structures for impact and blast mitigation and therefore it is important to find out the optimized foam structure (i.e. cell size, shape, relative density, and distribution) to maximize energy absorption. In this paper, we present results for two different aluminium metal foams of density 0.5 g/cc and 0.7 g/cc respectively that have been tested in quasi-static compression. The influence of cell geometry and cell topology on quasistatic compression behavior has been investigated using computed tomography (micro-CT) analysis. The compression behavior and micro structural characterization will be presented.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/2828729", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": null, + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-05-14T23:33:18Z", + "registered": "2019-05-14T23:33:19Z", + "published": null, + "updated": "2020-07-29T10:14:27Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13482227", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13482227", + "identifiers": [ + { + "identifier": "oai:zenodo.org:13482227", + "identifierType": "oai" + }, + { + "identifier": "urn:lsid:biodiversitylibrary.org:part:192235", + "identifierType": "LSID" + } + ], + "creators": [ + { + "name": "Gattermann, Rolf", + "nameType": "Personal", + "givenName": "Rolf", + "familyName": "Gattermann", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Interindividuelle Zyklussynchronisation bei Goldhamsterweibchen, Mesocricetus auratus" + } + ], + "publisher": "Die Gesellschaft", + "container": {}, + "publicationYear": 1996, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "1996", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://linker.bio/line:zip:hash://md5/4d71f93adf6d6b1ec1f06bf726318029!/data/bhlpart.ris!/L2076334-L2076345", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://www.biodiversitylibrary.org/partpdf/192235", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://www.biodiversitylibrary.org/part/192235", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "hash://md5/53e144641ffded6800dea502a8bb47ed", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "hash://md5/debe18c97304205d85295ff30d42b460", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "hash://sha256/27a46afd1f9d95bb3e0725448d56ab72dbbda645c86f9e1d70d68b03b84d1f0b", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.13482226", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "(Uploaded by Plazi from the Biodiversity Heritage Library) No abstract provided.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13482227", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-08-29T12:55:59Z", + "registered": "2024-08-29T12:55:59Z", + "published": null, + "updated": "2024-08-29T12:56:00Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.2996611", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.2996611", + "identifiers": [ + { + "identifier": "http://www.botanicalcollections.be/specimen/BR0000011742869", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Meise Botanic Garden", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Leontodon hispidus L. (BR0000011742869)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/belgiumherbarium", + "identifierType": "URL" + }, + "publicationYear": 2019, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Terrestrial" + }, + { + "subject": "Herbarium" + }, + { + "subject": "Compositae" + } + ], + "contributors": [], + "dates": [ + { + "date": "2019-05-19", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Photo", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.2996610", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/belgiumherbarium", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution Share Alike 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by-sa/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-sa-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Belgium Herbarium image of Meise Botanic Garden.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [ + { + "awardUri": "info:eu-repo/grantAgreement/EC/H2020/777483/", + "awardTitle": "Innovation and consolidation for large scale digitisation of natural heritage", + "funderName": "European Commission", + "awardNumber": "777483", + "funderIdentifier": "https://doi.org/10.13039/501100000780", + "funderIdentifierType": "Crossref Funder ID" + } + ], + "url": "https://zenodo.org/record/2996611", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": null, + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-05-19T14:11:59Z", + "registered": "2019-05-19T14:12:00Z", + "published": null, + "updated": "2020-07-29T11:27:21Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13354940", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13354940", + "identifiers": [ + { + "identifier": "oai:zenodo.org:13354940", + "identifierType": "oai" + }, + { + "identifier": "21.15107/rcub_fiver_3752", + "identifierType": "Handle" + } + ], + "creators": [ + { + "name": "Marjanovic-Jeromela, Ana", + "nameType": "Personal", + "givenName": "Ana", + "familyName": "Marjanovic-Jeromela", + "affiliation": [ + "INSTITUT ZA RATARSTVO I POVRTARSTVO INSTITUT RS OD NACIONALNOG ZNACAJA ZA REPUBLIKU SRBIJU" + ], + "nameIdentifiers": [] + }, + { + "name": "Monti, Andrea", + "nameType": "Personal", + "givenName": "Andrea", + "familyName": "Monti", + "affiliation": ["University of Bologna"], + "nameIdentifiers": [] + }, + { + "name": "Zanetti, Federica", + "nameType": "Personal", + "givenName": "Federica", + "familyName": "Zanetti", + "affiliation": ["Università degli Studi di Bologna"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-4729-2082", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Alberghini, Barbara", + "nameType": "Personal", + "givenName": "Barbara", + "familyName": "Alberghini", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Parenti, Andrea", + "nameType": "Personal", + "givenName": "Andrea", + "familyName": "Parenti", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-6132-5680", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Facciolla, Erika", + "nameType": "Personal", + "givenName": "Erika", + "familyName": "Facciolla", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-3394-1686", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Rajkovic, Dragana", + "nameType": "Personal", + "givenName": "Dragana", + "familyName": "Rajkovic", + "affiliation": [ + "INSTITUT ZA RATARSTVO I POVRTARSTVO INSTITUT RS OD NACIONALNOG ZNACAJA ZA REPUBLIKU SRBIJU" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Carinata and Camelina, two minor Brassicaceae with great potential for the European bioeconomy" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2023", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "CONF", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "Periodical", + "resourceType": "", + "resourceTypeGeneral": "ConferenceProceeding" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.13354939", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "The European bioeconomy is urgently looking for new sustainable and domestically grown feedstocks able to feed different types of end-uses, both food and non-food. The actual European environmental and agricultural policies are pushing for the choice of crops able to meet both low carbon footprint, high impact on biodiversity and satisfactory revenues for farmers. All this complicated situation is further exacerbated by the effects of climate change, which is strongly and negatively impacting many stable European cash crops. In this context the CARINA “CARinata and CamelINA to boost the sustainable diversification in EU farming systems” project, which has been funded by the Horizon Europe framework program with over 8M€ began in November 2022. It addresses all the above-mentioned challenges through the introduction of two novel oilseed Brassicaceae, i.e., carinata (B. carinata) and camelina (Camelina sativa), which have been identified as suitable for different European pedo-climates.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [ + { + "awardTitle": "CARinata and CamelINA to boost the sustainable diversification in EU farming systems", + "funderName": "European Commission", + "awardNumber": "101081839", + "funderIdentifier": "10.13039/501100000780", + "funderIdentifierType": "Crossref Funder ID" + } + ], + "url": "https://zenodo.org/doi/10.5281/zenodo.13354940", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-08-21T13:40:14Z", + "registered": "2024-08-21T13:40:15Z", + "published": null, + "updated": "2024-08-21T13:40:16Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.8396605", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.8396605", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/8396606", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Soldan, Riccardo", + "nameType": "Personal", + "givenName": "Riccardo", + "familyName": "Soldan", + "affiliation": ["FAO | University of Oxford"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "RSO9192/plant-domestication: Data: Consistent effects of independent domestication events on the plant microbiota" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2023-10-01", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/RSO9192/plant-domestication/tree/v1", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8396606", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "v1", + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Code and data behind the study on the impact of plant domestication on seed microbiome composition", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/8396605", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-10-01T13:03:45Z", + "registered": "2023-10-01T13:03:47Z", + "published": null, + "updated": "2023-10-01T13:03:47Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13739643", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13739643", + "identifiers": [ + { + "identifier": "oai:zenodo.org:13739643", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Muñoz-Peña, Paula", + "nameType": "Personal", + "givenName": "Paula", + "familyName": "Muñoz-Peña", + "nameIdentifiers": [ + { + "nameIdentifier": "0009-0001-4603-8499", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Cheah-Mane, Marc", + "nameType": "Personal", + "givenName": "Marc", + "familyName": "Cheah-Mane", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-0942-661X", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Gomis-Bellmunt, Oriol", + "nameType": "Personal", + "givenName": "Oriol", + "familyName": "Gomis-Bellmunt", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-9507-8278", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Prieto-Araujo, Eduardo", + "nameType": "Personal", + "givenName": "Eduardo", + "familyName": "Prieto-Araujo", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-4349-5923", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Optimal Sizing and Techno-Economic Evaluation of Multiport Converter for Renewable Generation Integration in Distribution Grids" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-05-28", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Presentation", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.13739642", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Presentation made at Electrimacs on 28/05/24 within the Special Session 5, Multiport Power Converters. ", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [ + { + "awardTitle": "Distributed multiport converters for integration of renewables, storage systems and loads while enhancing performance and resiliency of modern distributed networks", + "funderName": "European Commission", + "awardNumber": "101069770", + "funderIdentifier": "10.13039/501100000780", + "funderIdentifierType": "Crossref Funder ID" + } + ], + "url": "https://zenodo.org/doi/10.5281/zenodo.13739643", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-09-10T09:08:36Z", + "registered": "2024-09-10T09:08:36Z", + "published": null, + "updated": "2024-09-10T09:08:37Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.7477959", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.7477959", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/7477960", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Umurzaqova Muyassar Abdubakirovna", + "affiliation": ["Farg'ona politexnika instituti Professor."], + "nameIdentifiers": [] + }, + { + "name": "Soliyev Murodjon Xokimjon O'g'li", + "affiliation": ["M21-21 guruh magistri"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "BKZ-75/39 BUG' QOZONIDAGI QUVURLARIDA SUVNI QAYNASH JARAYONI TAHLILI" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2022, + "subjects": [ + { + "subject": "BKZ-75-39 bug' qozoni, Lengerskiy ko'mir, Bug'lanish sxemasi, bug' qozonining yoqilg'isi." + } + ], + "contributors": [], + "dates": [ + { + "date": "2022-12-23", + "dateType": "Issued" + } + ], + "language": "uz", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7477960", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "Online", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Ushbu maqolada BKZ-75-39 bug‘ qozonini tekshirish va loyihalash hisobi amalga oshiriladi. Hisoblashning maqsadi: butun yo‘l bo‘ylab gazlarning harorati va tezligini aniqlash, shuningdek, Lengerskiy ko‘mirida (B3) qozonning ishlashi paytida isitish yuzalarida mumkin bo‘lgan o‘zgarishlarni aniqlash. Hisoblash o‘choq va festonning tekshirish hisobi va isitgich, ekonomayzer va havo isitgichini tekshirish va loyihalash hisobini o‘z ichiga oladi. Yoqilg‘i, havo, yonish mahsulotlari, issiqlik balansi uchun dastlabki hisob-kitoblar amalga oshiriladi.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/7477959", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2022-12-23T17:39:44Z", + "registered": "2022-12-23T17:39:45Z", + "published": null, + "updated": "2022-12-23T17:39:45Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.6118981", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.6118981", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/03A50C2FFFC8FFA0FF64D8D063E07FFF", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Mccranie, James R.", + "nameType": "Personal", + "givenName": "James R.", + "familyName": "Mccranie", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Dermophiidae Taylor 1969" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.3931.3.2", + "identifierType": "DOI" + }, + "publicationYear": 2015, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Chordata" + }, + { + "subject": "Amphibia" + }, + { + "subject": "Gymnophiona" + }, + { + "subject": "Dermophiidae" + } + ], + "contributors": [], + "dates": [ + { + "date": "2015-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.3931.3.2", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zenodo.org/record/240338", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FF9C7457FFC3FFABFFF3DE7361697849", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/03A50C2FFFC8FFA0FF64D8D063E07FFF", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.gbif.org/species/119599956", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.checklistbank.org/dataset/41891/taxon/03A50C2FFFC8FFA0FF64D8D063E07FFF.taxon", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/93296D90-0DF4-4FD3-A63F-8354EC89D40C", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.6118982", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "FAMILY DERMOPHIIDAE Taylor 1969, 304 (2 genera, 2 species) \n Dermophis Peters 1880, 937 (1 species) \n Dermophis mexicanus (A.M.C. Duméril & Bibron 1841, 284) \n Gymnopis Peters 1874, 616 (1 species) \n Gymnopis multiplicata Peters 1874, 616", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Mccranie, James R., 2015, A checklist of the amphibians and reptiles of Honduras, with additions, comments on taxonomy, some recent taxonomic decisions, and areas of further studies needed, pp. 352-386 in Zootaxa 3931 (3) on page 363, DOI: 10.11646/zootaxa.3931.3.2, http://zenodo.org/record/240338", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.6118981", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2022-02-17T08:10:05Z", + "registered": "2022-02-17T08:10:06Z", + "published": null, + "updated": "2023-12-20T20:59:49Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.245424", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.245424", + "identifiers": [], + "creators": [ + { + "name": "Song, Min Ok", + "givenName": "Min Ok", + "familyName": "Song", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Min, Gi-Sik", + "givenName": "Gi-Sik", + "familyName": "Min", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 3. Philodina grandis Milne, 1916 in A new species and ten new records of bdelloid rotifers from Korea" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.3964.2.3", + "identifierType": "DOI" + }, + "publicationYear": 2015, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Rotifera" + }, + { + "subject": "Eurotatoria" + }, + { + "subject": "Bdelloidea" + }, + { + "subject": "Philodinidae" + }, + { + "subject": "Macrotrachela" + }, + { + "subject": "Philodina" + } + ], + "contributors": [], + "dates": [ + { + "date": "2015-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.3964.2.3", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FFF51579F370FFFEFFE0FFD4042CFFAD", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFF51579F370FFFEFFE0FFD4042CFFAD", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/245421", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.5696882", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03CC6D01F374FFF8FF77F8E906A3FD05", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.5696884", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03CC6D01F376FFF8FF77FC950013FB49", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 3. Philodina grandis Milne, 1916. (a) creeping, dorsal view; (b) feeding head, dorsal view. Macrotrachela sonorensis Örstan, 1995. (c) creeping, dorsal view; (d) feeding head, dorsal view (scale bars: a, c = 50 µm; b, d = 20 µm).", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Song, Min Ok & Min, Gi-Sik, 2015, A new species and ten new records of bdelloid rotifers from Korea, pp. 211-227 in Zootaxa 3964 (2) on page 216, DOI: 10.11646/zootaxa.3964.2.3, http://zenodo.org/record/245421", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/245424", + "contentUrl": null, + "metadataVersion": 4, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 4, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2017-01-15T13:00:58Z", + "registered": "2017-01-15T13:00:58Z", + "published": null, + "updated": "2023-12-23T04:32:01Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.4331193", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.4331193", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/BE3287F3FFA6D237FF1CFC529CC3B751", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Vu, Ha T.", + "givenName": "Ha T.", + "familyName": "Vu", + "affiliation": [ + "Department of Biology, Graduate School of Science, Tokyo Metropolitan University, JAPAN." + ], + "nameIdentifiers": [] + }, + { + "name": "Nguyen, Hung D.", + "givenName": "Hung D.", + "familyName": "Nguyen", + "affiliation": [ + "Faculty of Biology, Hanoi National University of Education, 136, Xuan Thuy Str., Caugiay District, Hanoi, VIETNAM. hungnd 2000 @ gmail. com; https: // orcid. org / 0000 - 0002 - 5454 - 0956" + ], + "nameIdentifiers": [] + }, + { + "name": "Le, Son X.", + "givenName": "Son X.", + "familyName": "Le", + "affiliation": [ + "Institute of Tropical Ecology, Vietnamese-Russian Tropical Center, 2 Nguyen Van Huyen Str., Cau Giay District, Hanoi, VIETNAM. lesonenv 86 @ yahoo. com; https: // orcid. org / 0000 - 0003 - 1648 - 6773" + ], + "nameIdentifiers": [] + }, + { + "name": "Eguchi, Katsuyuki", + "givenName": "Katsuyuki", + "familyName": "Eguchi", + "affiliation": [ + "Department of Biology, Graduate School of Science, Tokyo Metropolitan University, JAPAN. & antist 2007 @ gmail. com; https: // orcid. org / 0000 - 0002 - 1054 - 1295" + ], + "nameIdentifiers": [] + }, + { + "name": "Nguyen, Anh D.", + "givenName": "Anh D.", + "familyName": "Nguyen", + "affiliation": [ + "Institute of Ecology and Biological Resources, Vietnam Academy of Science and Technology, 18, Hoangquocviet Rd., Cau Giay District, Hanoi, VIETNAM. ducanh @ iebr. ac. vn; https: // orcid. org / 0000 - 0001 - 9273 - 0040 & Center for Research and Technology Transfer, Vietnam Academy of Science and Technology, 18, Hoangquocviet Rd., Cau Giay District, Hanoi, VIETNAM." + ], + "nameIdentifiers": [] + }, + { + "name": "Tran, Binh T. T.", + "givenName": "Binh T. T.", + "familyName": "Tran", + "affiliation": [ + "Faculty of Biology, Hanoi National University of Education, 136, Xuan Thuy Str., Caugiay District, Hanoi, VIETNAM. hungnd 2000 @ gmail. com; https: // orcid. org / 0000 - 0002 - 5454 - 0956" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Otostigmus aculeatus Haase 1887" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4808.3.1", + "identifierType": "DOI" + }, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Chilopoda" + }, + { + "subject": "Scolopendromorpha" + }, + { + "subject": "Scolopendridae" + }, + { + "subject": "Otostigmus" + }, + { + "subject": "Otostigmus aculeatus" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-07-03", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4808.3.1", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zenodo.org/record/3933160", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/420BFF8BFFA2D230FF8BFF829D38B016", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.3933166", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.3933168", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.3933170", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.3933172", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.3933174", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.3933176", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.3933249", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/15876EA8-DC4E-456C-82CF-21E1DA2479F1", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.4331192", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Otostigmus aculeatus Haase, 1887 (Figs. 2–7) Otostigmus (O.) aculeatus Haase, 1887: 71; Attems 1938: 337; Attems 1953: 138; Schileyko 1992: 7; Schileyko 1995: 83, fig. 11; Schileyko 1998: 268; Schileyko 2001: 430; Lewis 2001: 28, figs 53–58; Chao & Chang 2003: 2; Schileyko 2007: 76, fig. 2. Otostigmus (O.) ziesel Schileyko, 1992: 10, figs 2b–d; Schileyko 1995: 85, fig. 13; Schileyko 1998: 268; Schileyko 2001: 431; synonymised by Schileyko (2007). Material examined. DIEN BIEN Province: 1 specimen (IEBR-Chi 074) Muong Nhe Natural Reserve, bamboo forests, 20.7091N– 104.6869”E, 14 June 2018, coll. Nguyen D. Hung & Le X. Son; 1 specimen (IEBR-Chi 076) same locality, but mixed forests, 20.7108N– 104.6869E, elevation of 673 m, 14 May 2018, coll. Nguyen D. Hung & Le X. Son; 1 specimen (IEBR-Chi 179) same locality, residential area, pitfall trapping, 11 January 2017, coll. Nguyen D. Hung & Le X. Son; SON LA Province: 6 specimens (IEBR-Chi 061, 063-067) Ta Xua Natural Reserve, natural forests, 20.7108N– 20.7108E, elevation of 400 m, 9 February 2017, coll. Ha Kieu Loan & Le X. Son; 1 specimen (IEBR-Chi 070) same locality, but bamboo forests, 21.3491N– 104.6947E, elevation of 810 m, 11 November 2017, coll. Ha Kieu Loan & Le X. Son; 1 specimen (IEBR-Chi 072) same data, but 20.3437N– 104.6802E, elevation of 515 m, 13 November 2017; HOA BINH Province: 3 specimens (IEBR-Chi 049, 222, 229) Thuong Tien Natural Reserve, natural forest, 21.6357N– 105.4490E, elevation of 443 m, 31 January 2018, coll. Hoang N. Anh & Nguyen D. Hung; 1 specimen (IEBR-Chi 050) same data, but 20.6346N– 105.4500E, elevation of 515 m; 2 specimens (IEBR-Chi 227, IEBR-Chi 228) but 20.6287N– 105.4340E, elevation of 509 m, 30 January 2018, coll. Tran T. T. Binh & Nguyen D. Hung; 5 specimens (IEBR-Chi 051, IEBR-Chi 231, IEBR-Chi 235, IEBR-Chi 233, IEBR-Chi 234) same data, but 20.6400N– 105.4440E, elevation of 295 m, 12 May 2017, coll. Tran T. T. Binh & Nguyen D. Hung; 1 specimen (IEBR-Chi 232) same data, but 20.6378N– 105.4467E, elevation of 357 m, 14 May 2017, coll. Tran T. T. Binh & Nguyen D. Hung; 1 specimen (IEBR-Chi 060) same data, but 20.6231N– 105.4298E, elevation of 586 m, 30 May 2017, coll. Tran T. T. Binh & Nguyen D. Hung; VINH PHUC Province: 2 specimens (IEBR-Chi 129, IEBR-Chi 130), Me Linh station for biodiversity, regenerated forests, 21.3973N– 105.7130E, 9 September 2018, coll. Vu T. Ha; 2 specimens (IEBR-Chi 250, IEBR-Chi 253) same locality, Eucalyptus forests, 21.3833N– 105.7126E, 2 December 2018, coll. Vu T. Ha; 1 specimen (IEBR-Chi 254), Me Linh station for Biodiversity, regenerated forests, 21.3885N– 105.7193E, 2-3 December 2018, coll. Vu T. Ha; 1 specimen (IEBR-Chi 035) same locality, mixed forests, 21.3992N– 105.7241E, 9 July 2018, coll. Nguyen D. Anh; 4 specimens (IEBR- Chi 011, 099, 103, 118) same locality, regenerated forests, 10–17 September 2016, coll. Nguyen D. Anh; 1 specimen (IEBR-Chi 094) same data, but 8–18 April 2014, pitfall trapping, coll. Nguyen D. Anh; QUANG NINH Province: 1 specimen (IEBR-Chi 239) Bai Tu Long National Park, Sau Nam Island (21.1784N– 107.6646E), natural forests, 22 February 2012, coll. Nguyen D. Anh; BAC GIANG Province: 1 specimen (IEBR-Chi 012) Son Dong District, Tay Yen Tu Natural Reserve, Khe Ro station (21.3436N- 106.9698E)), natural forests, 17–18 May 2013, coll. Phung T.H. Luong; HAI PHONG Province: 8 specimens (IEBR-Chi 242, 244, 021, 022, 009, 183, 194, 245) Cat Ba National Park, natural forests, 20.7984N– 106.9994E, 18 March 2012, coll. Nguyen D. Anh; NINH BINH Province: 4 specimens (IEBR-Chi 020, 088, 089, 090) Cuc Phuong National Park, natural forests, “Nguoi Xua Cave, 21–22 September 2016, coll. Nguyen D. Anh; 1 specimen (IEBR-Chi 093) same locality, but 20.3217N– 109.6081”E, 28 July–2 August 2017, coll. Nguyen D. Anh; NGHE AN Province: 1 specimen (IEBR-Chi 240) Pu Mat National Park, natural forests, 19.0799N– 104.6371E, 4–10 April 2011, coll. Nguyen D. Anh; QUANG BINH Province: 1 specimen (IEBR-Chi 237) Son Trach District, Cha Noi Commune, limestone forests, 17.6432N– 106.1019E, 16–19 February 2012, coll. Pham H. Phong; QUANG NGAI Province: 1 specimen (IEBR-Chi 193) Ly Son island, An Binh commune (15.4289N- 109.0811E), natural forests, 8 August 2017, coll. Dang T. Hoa; QUANG NAM Province: 1 specimen (IEBR-Chi 255) Song Thanh Natural Reserve (15.6700N– 107.7188E), natural forests, elevation of 1,000 m, 11 January 2019, coll. Le X. Son; DAK LAK Province: 1 specimen (IEBR-Chi 172) Kon Ka Kinh National Park (14.2589N– 108.3794E), natural forests, elevation of 920–1,200 m, 12 May 2016, coll. Le X. Son; DONG NAI Province: 1 specimen (IEBR-Chi 156) Cat Tien National Park, natural forests, on the way to Bau Sau, 11.4533N– 107.3658E, elevation of 180 m, 10–11 July 2018, coll. Nguyen D. Anh. Diagnosis. Body with 21 leg-bearing segments. Spiracles oval-shaped (Fig. 2D). Antennae with 17 antennomeres including 3 basal smoothly glabrous ones (Fig. 2 A–B). Coxosternal plate with 4+4 teeth (Fig. 2B). Paramedian grooves distinct on both tergites and sternites (Fig. 3 A–B). Coxopleural process long, conical, with 5–7 apical spines (Figs 3 C–D, 5A–B, 6A–B). Prefemur of the ultimate legs with numerous spines arranged in rows (Figs 4 A–B, 5C, 6C). Previous records from Vietnam. QUANG NINH (Hon Gai, Ha Long); HAI PHONG (Cat Ba NP); HA NOI (Ba Vi NP); HOA BINH (Mai Chau District); VINH PHUC (Tam Dao NP); NINH BINH (Cuc Phuong NP); QUANG NAM (Cu Lao Cham Island); KON TUM (Buon Luoi); GIA LAI (An Khe District); DONG NAI (Ma Da; Cat Tien NP); Tho Chu Island; (Attems, 1938, 1953; Schileyko, 1992, 1995, 2007). Distribution. Also known from Laos, Indonesia (Java), Taiwan, Hong Kong, and China (Chao & Chang 2003; Schileyko 2007). Remarks. The species is widely distributed in Vietnam (Fig. 7). Otostigmus aculeatus varies remarkably in shape and chaetotaxic pattern of prefemoral spines of the ultimate leg. Based on the number of spines on coxopleural process and on prefemur of the ultimate leg, it can be divided into three morphological types. The first type has coxopleural process with 4 apical, 3 subapical and 1 dorsal spine, no lateral ones (Fig. 5 A–B). Prefemur of the ultimate leg has 1 corner, 3–4 dorsomedial, 6–8 medial, 8–9 ventromedial, and 5 ventrolateral spines—all spines are arranged in lines, but the dorsomedial and ventrolateral spines are big whereas medial and ventromedial ones are small (Fig. 5C). The second type has coxopleural process with 4 apical, 2–3 subapical, 1 lateral and 1 dorsal spine (Fig. 6 A–B). Prefemur of the ultimate leg has numerous small spines which are not arranged in lines (Fig. 6C). The last type has coxopleural process with 5–6 apical, 1 subapical, 1 dorsal spine, no lateral ones (Fig. 3 C–D). Prefemur of the ultimate leg has 1 corner, 3–4 dorsomedial, 5–8 medial, 7–8 ventromedial and 4–5 ventrolateral spines. These spines are big and arranged in lines (Fig. 4). These types were sometimes found in the same locality, e.g. Me Linh or Thuong Tien. The three types also formed different lineages in the phylogenetic tree (Fig. 40). The differences may suggest that different species may be separated from O. aculeatus.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Vu, Ha T., Nguyen, Hung D., Le, Son X., Eguchi, Katsuyuki, Nguyen, Anh D. & Tran, Binh T. T., 2020, A review and notes on the phylogenetic relationship of the centipede genus Otostigmus Porat, 1876 (Chilopoda: Scolopendromorpha: Scolopendridae) from Vietnam, pp. 401-438 in Zootaxa 4808 (3) on pages 405-408, DOI: 10.11646/zootaxa.4808.3.1, http://zenodo.org/record/3933160", + "descriptionType": "Other" + }, + { + "description": "{\"references\": [\"Haase, E. (1887) Die Indisch-Australischen Myriopoden. Pt. I. Chilopoden. Abhandlungen und Berichte des Koniglichen Zoologischen und. Anthropologisch- Ethnographischen Museums zu Dresden, 5, 1 - 118.\", \"Attems, C. (1938) Die von Dr. C. Dawydoff in franzosisch-Indochina gesammelten Myriopoden. Memoires du Museum National d'Histoire Naturelle, New Series, 6, 187 - 353.\", \"Attems, C. (1953) Myriopoden von Indochina. Expedition von Dr. Dawydoff. C. (1938 - 1939). Memoires du Museum National d'Histoire Naturelle, Nouvelle Serie, Serie A, Zoologie, 5 (3), 133 - 230.\", \"Schileyko, A. A. (1992) Scolopenders of Viet-Nam and some aspects of the system of Scolopendromorpha (Chilopoda: Epimorpha). Part 1. Arthropoda Selecta, 1, 5 - 19.\", \"Schileyko, A. A. (1995) The scolopendromorph centipedes of Vietnam (Chilopoda: Scolopendromorpha), (Part 2). Arthropoda Selecta, 4, 73 - 87.\", \"Schileyko, A. A. (1998) Some Chilopoda from Sa Pa and Muong Cha, North Vietnam. In: Biological diversity of Vietnam. Data on zoological and botanical studies in Fansipan Mountains (North Vietnam). Nauka Publisher, Moscow, pp. 262 - 270.\", \"Schileyko, A. A. (2001) New data on chilopod centipedes of Vietnam. In: Biological Diversity of Vietnam. Data on zoological and botanical studies in Vu Quang National Park (Ha Tinh Province, Vietnam). Nauka Publisher, Moscow, pp. 417 - 445.\", \"Lewis, J. G. E. (2001) The scolopendrid centipedes in the collection of the National Museum of Natural History in Sofia (Chilopoda: Scolopendromorpha: Scolopendridae). Historia Naturalis Bulgarica, 13, 5 - 51.\", \"Chao, J. - L. & Chang, H. - W. (2003) The scolopendromorph centipedes (Chilopoda) of Taiwan. African Invertebrates, 44 (1), 1 - 11.\", \"Schileyko, A. A. (2007) The scolopendromorph centipedes (Chilopoda) of Vietnam, with contributions to the faunas of Cambodia and Laos (Part 3). Arthropoda Selecta, 16, 71 - 95.\"]}", + "descriptionType": "Other" + } + ], + "geoLocations": [ + { + "geoLocationPlace": "Muong Nhe Natural Reserve", + "geoLocationPoint": { + "pointLatitude": "20.7108", + "pointLongitude": "104.6869" + } + }, + { + "geoLocationPlace": "Ta Xua Natural Reserve", + "geoLocationPoint": { + "pointLatitude": "20.7108", + "pointLongitude": "20.7108" + } + }, + { + "geoLocationPlace": "Ta Xua Natural Reserve", + "geoLocationPoint": { + "pointLatitude": "21.3491", + "pointLongitude": "104.6947" + } + }, + { + "geoLocationPlace": "Ta Xua Natural Reserve", + "geoLocationPoint": { + "pointLatitude": "20.3437", + "pointLongitude": "104.6802" + } + }, + { + "geoLocationPlace": "Thuong Tien Natural Reserve", + "geoLocationPoint": { + "pointLatitude": "21.6357", + "pointLongitude": "105.449" + } + }, + { + "geoLocationPlace": "Thuong Tien Natural Reserve", + "geoLocationPoint": { + "pointLatitude": "20.6346", + "pointLongitude": "105.45" + } + }, + { + "geoLocationPlace": "Me Linh station", + "geoLocationPoint": { + "pointLatitude": "21.3973", + "pointLongitude": "105.713" + } + }, + { + "geoLocationPlace": "Biodiversity", + "geoLocationPoint": { + "pointLatitude": "21.3885", + "pointLongitude": "105.7193" + } + }, + { + "geoLocationPlace": "Chi", + "geoLocationPoint": { + "pointLatitude": "21.3992", + "pointLongitude": "105.7241" + } + }, + { + "geoLocationPlace": "Sau Nam Island", + "geoLocationPoint": { + "pointLatitude": "21.1784", + "pointLongitude": "107.6646" + } + }, + { + "geoLocationPlace": "Khe Ro station", + "geoLocationPoint": { + "pointLatitude": "21.3436", + "pointLongitude": "106.9698" + } + }, + { + "geoLocationPlace": "Cat Ba National Park", + "geoLocationPoint": { + "pointLatitude": "20.7984", + "pointLongitude": "106.9994" + } + }, + { + "geoLocationPlace": "Cuc Phuong National Park", + "geoLocationPoint": { + "pointLatitude": "20.3217", + "pointLongitude": "106.9994" + } + }, + { + "geoLocationPlace": "Pu Mat National Park", + "geoLocationPoint": { + "pointLatitude": "19.0799", + "pointLongitude": "104.6371" + } + }, + { + "geoLocationPlace": "Cha Noi Commune", + "geoLocationPoint": { + "pointLatitude": "17.6432", + "pointLongitude": "106.1019" + } + }, + { + "geoLocationPlace": "An Binh", + "geoLocationPoint": { + "pointLatitude": "15.4289", + "pointLongitude": "109.0811" + } + }, + { + "geoLocationPlace": "Song Thanh Natural Reserve", + "geoLocationPoint": { + "pointLatitude": "15.67", + "pointLongitude": "107.7188" + } + }, + { + "geoLocationPlace": "Kon Ka Kinh National Park", + "geoLocationPoint": { + "pointLatitude": "14.2589", + "pointLongitude": "108.3794" + } + }, + { + "geoLocationPlace": "Bau Sau", + "geoLocationPoint": { + "pointLatitude": "11.4533", + "pointLongitude": "107.3658" + } + } + ], + "fundingReferences": [], + "url": "https://zenodo.org/record/4331193", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 14, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2020-12-17T02:42:46Z", + "registered": "2020-12-17T02:42:46Z", + "published": null, + "updated": "2021-11-13T21:55:13Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.7826999", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.7826999", + "identifiers": [], + "creators": [ + { + "name": "Simonis, Juniper L.", + "nameType": "Personal", + "givenName": "Juniper L.", + "familyName": "Simonis", + "affiliation": ["DAPPER Stats"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0001-9798-0460", + "nameIdentifierScheme": "ORCID" + } + ] + } + ], + "titles": [ + { + "title": "salvage: tools for the California Delta Fish Salvage Database" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [ + { + "subject": "California Delta" + }, + { + "subject": "continuous analysis" + }, + { + "subject": "continuous deployment" + }, + { + "subject": "continuous integration" + }, + { + "subject": "ecology" + }, + { + "subject": "fish" + }, + { + "subject": "forecasting" + }, + { + "subject": "pipeline" + }, + { + "subject": "Sacramento River" + }, + { + "subject": "salvage" + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-04-14", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/dapperstats/salvage/tree/2023-04-14_00-12", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.3628045", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "2023-04-14_00-12", + "rightsList": [ + { + "rights": "MIT License", + "rightsUri": "https://opensource.org/licenses/MIT", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "mit", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Tools for interacting with the publicly available California Delta Fish Salvage Database, including continuous deployment of data access, analysis, and presentation.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/7826999", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2023-04-14T00:18:32Z", + "registered": "2023-04-14T00:18:32Z", + "published": null, + "updated": "2024-11-22T00:29:06Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.8027605", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.8027605", + "identifiers": [], + "creators": [ + { + "name": "Anonymous", + "affiliation": ["Anonymous"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Supplementary Material - All Eyes on Traceability" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2023-06-12", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.8027604", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "MIT License", + "rightsUri": "https://opensource.org/licenses/MIT", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "mit", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "This dataset contains the supplementary material for the RE '23 paper \"All Eyes on Traceability: An Interview Study on Industry Practices and Eye Tracking Potential\". Using this material, our interview study can be replicated. The PDF titled \"Interview Questions v02\" presents the interview questions used for the semi-structured interview of the paper. The PDF \"Eye-Tracking-Traceability-Explanatory-Slide\" contains the Slide used in part 4 of the interview. The PDF \"All Eyes on Traceability - An Interview Study on Industry Practices and Eye Tracking Potential\" contains the paper that is supplemented with our material. Instructions on how to use the files in this dataset can be found in the Readme.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/8027605", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2023-06-12T14:04:08Z", + "registered": "2023-06-12T14:04:08Z", + "published": null, + "updated": "2023-07-07T08:58:39Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.7248272", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.7248272", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/7248273", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Andersen, Charlotte", + "givenName": "Charlotte", + "familyName": "Andersen", + "affiliation": ["Copenhagen Business School"], + "nameIdentifiers": [] + }, + { + "name": "Fróes, Isabel", + "givenName": "Isabel", + "familyName": "Fróes", + "affiliation": ["Copenhagen Business School"], + "nameIdentifiers": [] + }, + { + "name": "Altsitsiadis, Efthymios", + "givenName": "Efthymios", + "familyName": "Altsitsiadis", + "affiliation": ["Copenhagen Business School"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Analysis of Market Trends and Practices in Collaborative Production Engineering and Co-creation" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/iproduce", + "identifierType": "URL" + }, + "publicationYear": 2021, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2021-06-23", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Project deliverable", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7248273", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/iproduce", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Report D7.1 Analysis of Market Trends and Practices in Collaborative Production Engineer and Co-creation is an outcome of Task 7.1, which creates an overview of existing market trends and practices dealing with collaborative production across Europe and internationally. The report provides a review of co-creation practices and case studies within current industry practices, and regarding consumer driven customisation and prosumerism. More specifically, the analysis sheds light on the history and spread of community approaches to makerspaces and fab labs; the common processes, practices and tools used in similar makerspaces contexts (hackerspaces), and their suitability along with relevant key success and failure factors. The analysis provides a set of guidelines on how to apply co-creation and open-innovation methodologies on key iPRODUCE concepts, together with an overview of how local stakeholders and communities can be involved and activated.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [ + { + "awardUri": "info:eu-repo/grantAgreement/EC/Horizon 2020 Framework Programme - Innovation action/870037/", + "awardTitle": "A Social Manufacturing Framework for Streamlined Multi-stakeholder Open Innovation Missions in Consumer Goods Sectors", + "funderName": "European Commission", + "awardNumber": "870037", + "funderIdentifier": "https://doi.org/10.13039/100010661", + "funderIdentifierType": "Crossref Funder ID" + } + ], + "url": "https://zenodo.org/record/7248272", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2022-10-25T09:22:51Z", + "registered": "2022-10-25T09:22:51Z", + "published": null, + "updated": "2022-10-25T09:22:51Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13756098", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13756098", + "identifiers": [], + "creators": [ + { + "name": "TALACHEERU, SHYAMSUNDER", + "nameType": "Personal", + "givenName": "SHYAMSUNDER", + "familyName": "TALACHEERU", + "affiliation": ["Georgia State University"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Predictive analytics and machine learning for reducing waste in the Pharmaceutical and Retail sectors: A comprehensive model integration approach" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [ + { + "subject": "Predictive Analytics" + }, + { + "subject": "Machine Learning" + }, + { + "subject": "Linear Regression" + }, + { + "subject": "Logistic Regression" + }, + { + "subject": "Random Forests" + }, + { + "subject": "Deep Learning" + }, + { + "subject": "Demand Forecasting" + } + ], + "contributors": [], + "dates": [ + { + "date": "2024-09-13", + "dateType": "Issued" + }, + { + "date": "2024-09-12", + "dateType": "Submitted" + } + ], + "language": "en", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13756099", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "This paper introduces a predictive framework using advanced machine learning models to improve demand forecasting and inventory management in the pharmaceutical and retail sectors. By integrating real-time data, the approach dynamically aligns production with market conditions, reducing waste and enhancing operational efficiency. Pilot implementations showed significant gains in profitability and sustainability, demonstrating the framework's potential for data-driven, adaptive solutions in a volatile market.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13756098", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-09-13T02:38:26Z", + "registered": "2024-09-13T02:38:26Z", + "published": null, + "updated": "2024-09-13T02:38:27Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3753538", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3753538", + "identifiers": [], + "creators": [ + { + "name": "Diehl, Patrick", + "nameType": "Personal", + "givenName": "Patrick", + "familyName": "Diehl", + "affiliation": ["Center of Computation and Technology, LSU"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0003-3922-8419", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Sagiv Schiber", + "affiliation": ["LSU"], + "nameIdentifiers": [] + }, + { + "name": "Parsa Amini", + "affiliation": ["Center of Computation and Technology, LSU"], + "nameIdentifiers": [] + }, + { + "name": "Huck, Kevin", + "nameType": "Personal", + "givenName": "Kevin", + "familyName": "Huck", + "affiliation": ["University of Oregon"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "OctoTiger: Slurm scripts for running the convergence test" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2020, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2020-04-15", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/diehlpk/SC2020-OctoTiger/tree/v1.0", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.3753539", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "v1.0", + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Collection of configuration files and scripts to run the simulations on Cori and QueenBee2 Octo-Tiger (b4c51431) and following dependencies were used HPX (1.4.0), hwloc (1.11.1), silo (4.10.2), jemalloc (5.1.0), hdf5 (1.8.12), cray-mpich/MVAPICH2 (7.7.10/2.3.2), gcc (8.3.0), APEX (8ba5090), and Papi (5.7.0).", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3753538", + "contentUrl": null, + "metadataVersion": 3, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 1, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2020-04-15T21:09:51Z", + "registered": "2020-04-15T21:09:52Z", + "published": null, + "updated": "2021-01-25T17:01:07Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.6345402", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.6345402", + "identifiers": [], + "creators": [ + { + "name": "Huth, Alex", + "nameType": "Personal", + "givenName": "Alex", + "familyName": "Huth", + "affiliation": ["Princeton University"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0002-7590-3525", + "nameIdentifierScheme": "ORCID" + } + ] + } + ], + "titles": [ + { + "title": "alex-huth/iKID_iceberg_A68a: Initial release" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2022, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2022-03-10", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/alex-huth/iKID_iceberg_A68a/tree/v1.0.0", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.6345401", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "v1.0.0", + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "The improved Kinematic Iceberg Dynamics (iKID) module, with everything needed to run and plot the iceberg A68a test case from Huth et al (2022) Ocean currents break up a tabular iceberg", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/6345402", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 1, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2022-03-11T00:00:27Z", + "registered": "2022-03-11T00:00:27Z", + "published": null, + "updated": "2022-12-27T23:25:27Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.264409", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.264409", + "identifiers": [], + "creators": [ + { + "name": "Chetverikov, Philipp E.", + "givenName": "Philipp E.", + "familyName": "Chetverikov", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 3 in New species and records of phytoptid mites (Acari: Eriophyoidea: Phytoptidae) on sedges (Cyperaceae) from the Russian Far East" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4061.4.3", + "identifierType": "DOI" + }, + "publicationYear": 2016, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Arachnida" + }, + { + "subject": "Prostigmata" + }, + { + "subject": "Phytoptidae" + }, + { + "subject": "Oziella" + } + ], + "contributors": [], + "dates": [ + { + "date": "2016-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4061.4.3", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FFB99A48FFCEA03BFF8CB952FF8D5110", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFB99A48FFCEA03BFF8CB952FF8D5110", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/264406", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.5627636", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/0380E230FFCCA03CFF1BBD96FDE15098", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 3. CLSM images of Oziella ovalis n. sp. (female). A—prodorsal shield, B—coxigenital area, C—spermathecal apparatus. Scale bar =15 µm.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Chetverikov, Philipp E., 2016, New species and records of phytoptid mites (Acari: Eriophyoidea: Phytoptidae) on sedges (Cyperaceae) from the Russian Far East, pp. 367-380 in Zootaxa 4061 (4) on page 373, DOI: 10.11646/zootaxa.4061.4.3, http://zenodo.org/record/264406", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/264409", + "contentUrl": null, + "metadataVersion": 4, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 2, + "citationCount": 2, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 0, + "created": "2017-01-30T21:06:49Z", + "registered": "2017-01-30T21:06:50Z", + "published": null, + "updated": "2023-11-05T06:46:50Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.8378495", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.8378495", + "identifiers": [], + "creators": [ + { + "name": "DR. RAKHI. J. MOHAN", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "DR.LAKSHMY.S", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Dr.FIJI MD", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "The Effect of Antenatal Magnesium Sulphate for Fetal Neuroprotection in Threatened Preterm Labour: A Prospective Cohort Study" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [ + { + "subject": "Preterm labour, Magnesium sulphate, Fetal neuroprotection." + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-09-26", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.8378494", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Due to the advances in perinatal
care, the survival rate of premature babies is also increasing. This lead to the increase in the learning
disabilities, medical disabilities, behavioral and psychological problems among these surviving
premature babies. The risk of neurological impairments such as cerebral palsy, blindness, deafness, and
cognitive dysfunction are high in preterm babies. Magnesium sulphate used as the seizure prophylaxis
in severe pre-eclamptic women and as a tocolytic found to have neuroprotective action in the preterm
babies. Several studies concluded that exposure to both antenatal corticosteroids and magnesium
sulphate was associated with lower rates of severe neurodevelopmental impairment or mortality.To determine the role of magnesium sulphate given for fetal neuro protection to women at
risk of preterm birth in preventing neonatal mortality and neuro developmental morbidity.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/8378495", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-09-26T05:21:09Z", + "registered": "2023-09-26T05:21:10Z", + "published": null, + "updated": "2023-09-26T05:21:10Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.210385", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.210385", + "identifiers": [], + "creators": [ + { + "name": "Hechinger, Ryan F.", + "givenName": "Ryan F.", + "familyName": "Hechinger", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURES 12–13 in Faunal survey and identification key for the trematodes (Platyhelminthes: Digenea) infecting Potamopyrgus antipodarum (Gastropoda: Hydrobiidae) as first intermediate host" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.5281/zenodo.210378", + "identifierType": "DOI" + }, + "publicationYear": 2012, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2012-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.5281/zenodo.210378", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:544BFFF5FFE0FFF0FFE43E10FFB4FFF0", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/544BFFF5FFE0FFF0FFE43E10FFB4FFF0", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURES 12–13. Pronocephaloid sp. IV. 12, Redia. 13, Cercaria. Drawings modified from Winterbourn (1974). All scale bars = 100.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Hechinger, Ryan F., 2012, Faunal survey and identification key for the trematodes (Platyhelminthes: Digenea) infecting Potamopyrgus antipodarum (Gastropoda: Hydrobiidae) as first intermediate host, pp. 1-27 in Zootaxa 3418 on page 12, DOI: 10.5281/zenodo.210378", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/210385", + "contentUrl": null, + "metadataVersion": 10, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 0, + "created": "2016-12-19T20:41:38Z", + "registered": "2016-12-19T20:41:38Z", + "published": null, + "updated": "2022-02-06T12:48:43Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3927472", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3927472", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/3927473", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Bayer, Steffen", + "givenName": "Steffen", + "familyName": "Bayer", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Höfer, Hubert", + "givenName": "Hubert", + "familyName": "Höfer", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Metzner, Heiko", + "givenName": "Heiko", + "familyName": "Metzner", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 43 in Revision of the genus Corythalia C.L. Koch, 1850, part 1: Diagnosis and new species from South America (Araneae: Salticidae: Salticinae: Euophryini)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4806.1.1", + "identifierType": "DOI" + }, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Arachnida" + }, + { + "subject": "Araneae" + }, + { + "subject": "Salticidae" + }, + { + "subject": "Corythalia" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-06-30", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4806.1.1", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FFE1FFF9FF95C154663CFFF5612A4903", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFE1FFF9FF95C154663CFFF5612A4903", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/3927380", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.6314126", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03D88781FFCCC10F66ABFB5463BC4BF0", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.3927473", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 43. Corythalia hadzji, male lectotype from Upper Demerara-Berbice, Guyana. A–B left palp (A ventral view; B retrolateral view).", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Bayer, Steffen, Höfer, Hubert & Metzner, Heiko, 2020, Revision of the genus Corythalia C.L. Koch, 1850, part 1: Diagnosis and new species from South America (Araneae: Salticidae: Salticinae: Euophryini), pp. 1-144 in Zootaxa 4806 (1) on page 91, DOI: 10.11646/zootaxa.4806.1.1, http://zenodo.org/record/3927380", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3927472", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 1, + "citationCount": 1, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2020-07-02T07:21:17Z", + "registered": "2020-07-02T07:21:19Z", + "published": null, + "updated": "2022-02-28T22:47:31Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13205918", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13205918", + "identifiers": [ + { + "identifier": "oai:zenodo.org:13205918", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Montilla, Rafael", + "nameType": "Personal", + "givenName": "Rafael", + "familyName": "Montilla", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Figuras 23-28 in Aportes al conocimiento de las especies del género Doliopria Kieffer, 1910 (Hymenoptera: Diapriidae) del Neotrópico, grupo de especies \"cornibus\"" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2022, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Hymenoptera" + }, + { + "subject": "Diapriidae" + }, + { + "subject": "Doliopria" + } + ], + "contributors": [], + "dates": [ + { + "date": "2022-08-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.35249/rche.48.3.22.16", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FF97FFE2FFA3FFA2FFF1FFD8FFB97632", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/13205908", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03AE879AFFA9FFAEFDFAFBC5FECA70E4", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.13205917", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Figuras 23-28. Doliopria meridana sp. nov. 23-25. Cuerpo de la hembra, vistas dorsal, lateral y frontal. 26-28. Cuerpo del macho, vistas dorsal, lateral y frontal. / 23-25. Body female, dorsal, lateral and frontal views. 26-28. Body male, dorsal, lateral and frontal views.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Montilla, Rafael, 2022, Aportes al conocimiento de las especies del género Doliopria Kieffer, 1910 (Hymenoptera: Diapriidae) del Neotrópico, grupo de especies \"cornibus\", pp. 629-662 in Revista Chilena de Entomología (Rev. Chil. Entomol.) 48 (3) on page 642, DOI: 10.35249/rche.48.3.22.16, http://zenodo.org/record/13205908", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13205918", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 1, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-08-03T16:23:54Z", + "registered": "2024-08-03T16:23:54Z", + "published": null, + "updated": "2024-08-03T16:23:56Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13404", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13404", + "identifiers": [], + "creators": [ + { + "name": "Sprotocols", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Velit Maxime Sint Quos Eveniet Consequatur Eum Perferendis Dolores In." + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2014, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2014-12-29", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Journal article", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero - CC0 1.0", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "At provident modi delectus ullam sunt similique quidem. Et id sit aspernatur tempore repellendus debitis sint. Eius est ipsum. At incidunt repellat minima aut ea repudiandae commodi. Consequatur cupiditate et qui vel.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/13404", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": null, + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2014-12-29T18:48:11Z", + "registered": "2014-12-29T18:48:12Z", + "published": null, + "updated": "2020-09-20T20:25:12Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.12814126", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.12814126", + "identifiers": [], + "creators": [ + { + "name": "Lara, Jesús R.", + "nameType": "Personal", + "givenName": "Jesús R.", + "familyName": "Lara", + "affiliation": [ + "University of California, Department of Entomology, Riverside, California 92521, USA; E-mail: jesus.lara@ucr.edu (J. R. L.), paul.rugman-jones@ucr.edu (P. F. R.-J.), richard.stouthamer@ucr.edu (R. S.), mark.hoddle@ucr.edu (M. S. H.)" + ], + "nameIdentifiers": [] + }, + { + "name": "Rugman-Jones, Paul F.", + "nameType": "Personal", + "givenName": "Paul F.", + "familyName": "Rugman-Jones", + "affiliation": [ + "University of California, Department of Entomology, Riverside, California 92521, USA; E-mail: jesus.lara@ucr.edu (J. R. L.), paul.rugman-jones@ucr.edu (P. F. R.-J.), richard.stouthamer@ucr.edu (R. S.), mark.hoddle@ucr.edu (M. S. H.)" + ], + "nameIdentifiers": [] + }, + { + "name": "Stouthamer, Richard", + "nameType": "Personal", + "givenName": "Richard", + "familyName": "Stouthamer", + "affiliation": [ + "University of California, Department of Entomology, Riverside, California 92521, USA; E-mail: jesus.lara@ucr.edu (J. R. L.), paul.rugman-jones@ucr.edu (P. F. R.-J.), richard.stouthamer@ucr.edu (R. S.), mark.hoddle@ucr.edu (M. S. H.)" + ], + "nameIdentifiers": [] + }, + { + "name": "Hoddle, Mark S.", + "nameType": "Personal", + "givenName": "Mark S.", + "familyName": "Hoddle", + "affiliation": [ + "University of California, Department of Entomology, Riverside, California 92521, USA; E-mail: jesus.lara@ucr.edu (J. R. L.), paul.rugman-jones@ucr.edu (P. F. R.-J.), richard.stouthamer@ucr.edu (R. S.), mark.hoddle@ucr.edu (M. S. H.)" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Fig. 2. Genealogical relationships among 11 cytochrome oxidase subunit 1 in Population genetics of Oligonychus perseae (Acari: Tetranychidae) collected from avocados in Mexico and California" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2017, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2017-09-30", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.1653/024.100.0320", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/12814123", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.12814127", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Fig. 2. Genealogical relationships among 11 cytochrome oxidase subunit 1 (COI) haplotypes detected in Oligonychus perseae populations in California, Mexico, and Costa Rica. Additional congeneric and outgroup sequences were retrieved from GenBank. Maximum likelihood tree constructed from a 305 base pair section of COI using PhyML. Support (aLRT) for major branches is shown.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Lara, Jesús R., Rugman-Jones, Paul F., Stouthamer, Richard & Hoddle, Mark S., 2017, Florida Entomologist 100 (3) on page 616, DOI: 10.1653/024.100.0320, http://zenodo.org/record/12814123", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.12814126", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-07-25T01:19:23Z", + "registered": "2024-07-25T01:19:24Z", + "published": null, + "updated": "2024-07-25T01:19:24Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.11229445", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.11229445", + "identifiers": [ + { + "identifier": "oai:zenodo.org:11229445", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Bionomia", + "nameType": "Personal", + "familyName": "Bionomia", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Linked collectors and determiners for: Diptera R. Frey (MZH/Luomus)." + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [ + { + "subject": "specimen" + }, + { + "subject": "natural history" + }, + { + "subject": "taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2024-05-21", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "10.15468/fey985", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://gbif.org/dataset/489cf6d8-4171-46bd-94b1-ca514fb2043f", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://bionomia.net/dataset/489cf6d8-4171-46bd-94b1-ca514fb2043f", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10507258", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Natural history specimen data linked to collectors and determiners held within, \"Diptera R. Frey (MZH/Luomus)\". Claims or attributions were made on Bionomia by volunteer Scribes, https://bionomia.net/dataset/489cf6d8-4171-46bd-94b1-ca514fb2043f using specimen data from the dataset aggregated by the Global Biodiversity Information Facility, https://gbif.org/dataset/489cf6d8-4171-46bd-94b1-ca514fb2043f. Formatted as a Frictionless Data package.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.11229445", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-05-21T05:35:34Z", + "registered": "2024-05-21T05:35:35Z", + "published": null, + "updated": "2024-10-23T02:36:01Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.2864319", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.2864319", + "identifiers": [], + "creators": [ + { + "name": "K. Abuzayan", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "H. Alabed", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Evaluating the Baseline Chatacteristics of Static Balance in Young Adults" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/hsr", + "identifierType": "URL" + }, + "publicationYear": 2014, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2014-05-26", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Journal article", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.2864318", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/hsr", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "10009", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "The objectives of this study (baseline study, n = 20) were to implement Matlab procedures for quantifying selected static balance variables, establish baseline data of selected variables which characterize static balance activities in a population of healthy young adult males, and to examine any trial effects on these variables. The results indicated that the implementation of Matlab procedures for quantifying selected static balance variables was practical and enabled baseline data to be established for selected variables. There was no significant trial effect. Recommendations were made for suitable tests to be used in later studies. Specifically it was found that one foot-tiptoes tests either in static balance is too challenging for most participants in normal circumstances. A one foot-flat eyes open test was considered to be representative and challenging for static balance.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/2864319", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": null, + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-05-18T08:44:45Z", + "registered": "2019-05-18T08:44:46Z", + "published": null, + "updated": "2020-07-29T10:53:12Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.8206512", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.8206512", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/8206513", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Dr. Shivakumara B.S", + "affiliation": ["Assistant Professor"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Indian Agriculture Sector Lending From Institutional Sources – An Analysis" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/ajaaf", + "identifierType": "URL" + }, + "publicationYear": 2023, + "subjects": [ + { + "subject": "Agriculture, Credit, Institutional Sources, Sustainable, Financial Inclusion, Land Holding, Seeds, Fertilizers, Pesticides, Innovations" + } + ], + "contributors": [ + { + "name": "Dr. Shivakumara B.S", + "affiliation": ["Assistant Professor"], + "contributorType": "Researcher", + "nameIdentifiers": [] + } + ], + "dates": [ + { + "date": "2023-05-17", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8206513", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/ajaaf", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Closed Access", + "rightsUri": "info:eu-repo/semantics/closedAccess" + } + ], + "descriptions": [ + { + "description": "Agriculture is a dominant sector of our economy and credit plays an important role in increasing agriculture production. Availability and access to adequate, timely and low-cost credit from institutional sources is of great importance especially to small and marginal farmers. Along with other inputs, credit is essential for establishing sustainable and profitable farming systems. Most of the farmers are small producers engaged in agricultural activities in areas of widely varying potential. Experience has shown that easy access to financial services at affordable cost positively affects the productivity, asset formation, income and food security of the rural poor. The major concern of the Government is therefore, to bring all the farmer households within the banking fold and promote complete financial inclusion. Indian agriculture is dominated by smallholders. With an average land holding size of just 1.08 ha (in 2015-16), and 86 percent of holdings being of less than 2 ha size, Indian agriculture produces sufficient food, feed, and fiber for India’s large population of 1.35 billion, and in addition generates some net export surplus. This would not have been possible without the infusion of massive credit to farmers to buy modern inputs ranging from seeds, fertilizers, pesticides, farm machinery, etc. But how has this system of agri-credit evolved in India over time? What is its organizational structure, and how effective is it in terms of its reach, especially to smallholders? How efficiently can it deliver credit and what sorts of innovations are unfolding in this sector to make it more efficient, inclusive and sustainable? These are some of the key questions that are addressed in this paper.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/8206512", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-08-01T20:07:51Z", + "registered": "2023-08-01T20:07:53Z", + "published": null, + "updated": "2023-08-01T20:07:53Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.4983335", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.4983335", + "identifiers": [], + "creators": [ + { + "name": "Grichanov, Igor Ya.", + "nameType": "Personal", + "givenName": "Igor Ya.", + "familyName": "Grichanov", + "affiliation": [ + "All-Russian Institute of Plant Protection, Podbelskogo 3, St. Petersburg, Pushkin, 196608, Russia" + ], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-7887-7668", + "nameIdentifierScheme": "ORCID" + } + ] + } + ], + "titles": [ + { + "title": "Fig. 12 in Eleven new species of Amblypsilopus Bigot (Diptera: Dolichopodidae: Sciapodinae) and a key to the species of Madagascar and adjacent islands" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.5852/ejt.2021.755.1399", + "identifierType": "DOI" + }, + "publicationYear": 2021, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Diptera" + }, + { + "subject": "Dolichopodidae" + }, + { + "subject": "Amblypsilopus" + } + ], + "contributors": [], + "dates": [ + { + "date": "2021-06-18", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.5852/ejt.2021.755.1399", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/4662FFF6FFB7A765135DFFA42B27925D", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/4983303", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.4985986", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/BA5B878EFFB5A7601112FD942E5191AA", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.4986022", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/BA5B878EFF96A7461131FA512A1E9049", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.4983336", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Fig. 12. Amblypsilopus olgae sp. nov. Holotype, ♂ (SMNHTAU). A. Head. B. Antenna. C. Fore tarsomeres 2–5. D. Wing. E. Hypopygium, left lateral view, reflected light. F. Distal appendages of hypopygium, transmitted light.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Grichanov, Igor Ya., 2021, Eleven new species of Amblypsilopus Bigot (Diptera: Dolichopodidae: Sciapodinae) and a key to the species of Madagascar and adjacent islands, pp. 47-87 in European Journal of Taxonomy 755 (1) on page 82, DOI: 10.5852/ejt.2021.755.1399, http://zenodo.org/record/4983303", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.4983335", + "contentUrl": null, + "metadataVersion": 3, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 3, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2021-06-18T12:28:00Z", + "registered": "2021-06-18T12:28:01Z", + "published": null, + "updated": "2024-02-14T23:04:15Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.11800", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.11800", + "identifiers": [], + "creators": [ + { + "name": "Beasley, Will", + "nameType": "Personal", + "givenName": "Will", + "familyName": "Beasley", + "affiliation": [ + "University of Oklahoma Health Sciences Center & Howard Live Oak, LLC" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Wats: v0.9-2" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/zenodo", + "identifierType": "URL" + }, + "publicationYear": 2014, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2014-09-20", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/wibeasley/Wats/tree/0.9-2", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/zenodo", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Repeat tag to prompt Zenodo DOI", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/11800", + "contentUrl": null, + "metadataVersion": 3, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 1, + "citationCount": 0, + "partCount": 0, + "partOfCount": 1, + "versionCount": 0, + "versionOfCount": 0, + "created": "2014-09-20T16:15:53Z", + "registered": "2014-09-20T16:15:54Z", + "published": null, + "updated": "2023-04-25T21:35:31Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5822054", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5822054", + "identifiers": [], + "creators": [ + { + "name": "Del Fatti, Mirjam", + "givenName": "Mirjam", + "familyName": "Del Fatti", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Zollino-Sgier, Stefanie", + "givenName": "Stefanie", + "familyName": "Zollino-Sgier", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Lernmethodische Kompetenzen von Kindern in der Schuleingangsphase" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/abschlussarbeiten_hfh", + "identifierType": "URL" + }, + "publicationYear": 2012, + "subjects": [ + { + "subject": "Sonderpädagogik" + }, + { + "subject": "Schulische Heilpädagogik" + }, + { + "subject": "Masterarbeit" + } + ], + "contributors": [ + { + "name": "Häuselmann, Susanne", + "givenName": "Susanne", + "familyName": "Häuselmann", + "contributorType": "Supervisor", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "dates": [ + { + "date": "2012-01-07", + "dateType": "Issued" + } + ], + "language": "de", + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Thesis", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.5822053", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/abschlussarbeiten_hfh", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "In der aktuellen Bildungsdiskussion wird auf die zentrale Bedeutung lebenslangen Lernens in unserer sich schnell verändernden Gesellschaft hingewiesen. Kompetenzen, um sich Wissen selbstständig anzueignen, gewinnen deshalb an Bedeutung. Die vorliegende Arbeit geht den Fragen nach, welche Kompetenzen für lebenslanges Lernen notwendig sind und über welche dieser Fähigkeiten Kinder der Schuleingangsphase bereits verfügen. Ziel der vorliegenden Forschungsarbeit ist es, mittels Videoaufzeichnungen von Kindern, die sich im Unterricht mit einer offenen Aufgabe beschäftigen und dem darauffolgenden Gespräch über die Arbeit, Informationen zu den vorhandenen Kompetenzen zu erhalten. Um die gewonnenen Erkenntnisse zu analysieren und einzuordnen, werden sie mit der einschlägigen Literatur aus der Entwicklungspsychologie und der pädagogischen Psychologie verglichen. Die Forschungsarbeit deckt Kompetenzbereiche auf, die eine wichtige Rolle beim selbstständigen Lernen spielen, beurteilt die Fähigkeiten der Kinder in diesen Bereichen und zeigt Ansatzpunkte für die Förderung dieser Kompetenzen.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/5822054", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2022-01-05T16:28:16Z", + "registered": "2022-01-05T16:28:16Z", + "published": null, + "updated": "2022-08-19T11:58:15Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13182671", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13182671", + "identifiers": [], + "creators": [ + { + "name": "SXS Collaboration", + "nameType": "Personal", + "familyName": "SXS Collaboration", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Binary black-hole simulation SXS:BBH:2098" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-08-03", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13182672", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Simulation of a black-hole binary system evolved by the SpEC code.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13182671", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-08-03T02:29:32Z", + "registered": "2024-08-03T02:29:32Z", + "published": null, + "updated": "2024-08-03T02:29:33Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5452620", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5452620", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/03DE6749FFCEFF92C2AC63F4FBF43462", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Hippa, Heikki", + "nameType": "Personal", + "givenName": "Heikki", + "familyName": "Hippa", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Kaspřák, David", + "nameType": "Personal", + "givenName": "David", + "familyName": "Kaspřák", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Kahar, Siti Rafhiah Haji Abd", + "nameType": "Personal", + "givenName": "Siti Rafhiah Haji Abd", + "familyName": "Kahar", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Ševčík, Jan", + "nameType": "Personal", + "givenName": "Jan", + "familyName": "Ševčík", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Paramanota orientalis Tuomikoski 1966" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.5281/zenodo.5355716", + "identifierType": "DOI" + }, + "publicationYear": 2016, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Diptera" + }, + { + "subject": "Mycetophilidae" + }, + { + "subject": "Paramanota" + }, + { + "subject": "Paramanota orientalis" + } + ], + "contributors": [], + "dates": [ + { + "date": "2016-12-07", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.5281/zenodo.5355716", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFE71F31FFC8FF94C129614AFFD93077", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/03DE6749FFCEFF92C2AC63F4FBF43462", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/20D2CA85-5EC3-4145-8599-9AEEA565F07A", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.5452621", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Paramanota orientalis Tuomikoski, 1966 \n Material examined. 1 male (QSBG), THAILAND, Nan, Doi Phu Kha NP, Office 13, 19°12.605’N 101°5.074’E, 1371 m, Malaise trap, 22–29 July 2007, Charoen & Nikom leg. (T3276). \n Discussion. The species was described based on the holotype male only from Burma, Kambaiti (Tuomikoski, 1966). An additional male was recorded from Thailand, Nan Doi Phu Kha NP (Hippa, 2010).", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Hippa, Heikki, Kaspřák, David, Kahar, Siti Rafhiah Haji Abd & Ševčík, Jan, 2016, Two new Oriental species of Paramanota Tuomikoski (Diptera: Mycetophilidae), with DNA sequence data, pp. 360-367 in Raffles Bulletin of Zoology 64 on page 366, DOI: 10.5281/zenodo.5355716", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.5452620", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2021-09-04T22:23:48Z", + "registered": "2021-09-04T22:23:49Z", + "published": null, + "updated": "2024-01-20T23:53:18Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13846799", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13846799", + "identifiers": [ + { + "identifier": "oai:zenodo.org:13846799", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Kowalik, Katarzyna", + "nameType": "Personal", + "givenName": "Katarzyna", + "familyName": "Kowalik", + "affiliation": ["National Centre for Nuclear Research"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Measurement of K+ production in charged-current neutrino interactions in the T2K experiment" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [ + { + "subject": "Neutrino interactions" + } + ], + "contributors": [], + "dates": [ + { + "date": "2024-06-21", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Poster", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.13846798", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Track: Neutrino interactions", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13846799", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-09-27T09:24:31Z", + "registered": "2024-09-27T09:24:31Z", + "published": null, + "updated": "2024-09-27T09:24:32Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10792248", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10792248", + "identifiers": [ + { + "identifier": "oai:zenodo.org:10792248", + "identifierType": "oai" + }, + { + "identifier": "https://slemanhdss.id/book/sleman-hdss-manual-series-computing-wealth-index-as-a-measure-of-household-socio-economic-status-using-principal-component-analysis-pca/", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Lestari, Septi Kurnia", + "nameType": "Personal", + "givenName": "Septi Kurnia", + "familyName": "Lestari", + "affiliation": [ + "Health and Demographic Surveillance System Sleman, Faculty of Medicine, Public Health and Nursing, Universitas Gadjah Mada, Yogyakarta, Indonesia" + ], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-2665-1736", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Pratama, Kadharmesthan Gilang", + "nameType": "Personal", + "givenName": "Kadharmesthan Gilang", + "familyName": "Pratama", + "affiliation": [ + "Health and Demographic Surveillance System Sleman, Faculty of Medicine, Public Health and Nursing, Universitas Gadjah Mada, Yogyakarta, Indonesia" + ], + "nameIdentifiers": [ + { + "nameIdentifier": "0009-0002-2962-2869", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Wardani, Ratri Kusuma", + "nameType": "Personal", + "givenName": "Ratri Kusuma", + "familyName": "Wardani", + "affiliation": [ + "Health and Demographic Surveillance System Sleman, Faculty of Medicine, Public Health and Nursing, Universitas Gadjah Mada, Yogyakarta, Indonesia" + ], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-4634-2260", + "nameIdentifierScheme": "ORCID" + } + ] + } + ], + "titles": [ + { + "title": "Sleman HDSS Manual Series: Computing Wealth Index as a Measure of Household Socio-Economic Status using Principal Component Analysis (PCA)" + } + ], + "publisher": "Faculty of Medicine, Public Health and Nursing, UGM", + "container": {}, + "publicationYear": 2023, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2023-09-29", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "BOOK", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "Book", + "resourceType": "", + "resourceTypeGeneral": "Book" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10792247", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-nc-sa-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "The primary objective of this book is to serve as a practical guide for researchers, students, and practitioners interested in employing the principal component analysis (PCA) method to calculate the wealth index as an indicator of household socio-economic status. Within its pages, readers will find comprehensive explanations of the step-by-step process involved in conducting PCA, encompassing data preparation, variable selection, testing the appropriateness of variables, and interpreting the outcomes. Additionally, the book includes syntax for calculating the Wealth Index using the PCA method with Sleman HDSS data on Stata software version 17.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10792248", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-03-07T08:22:05Z", + "registered": "2024-03-07T08:22:05Z", + "published": null, + "updated": "2024-03-07T08:27:17Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.1326721", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.1326721", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/1326722", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Pipat Lounglawan", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Yutthapong Sornwongkaew", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Wassana Lounglawan", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Wisitiporn Suksombat", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Energy Evaluation And Utilization Of Cassava Peel For Lactating Dairy Cows" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2012, + "subjects": [ + { + "subject": "Cassava peel" + }, + { + "subject": "Energy evaluation" + }, + { + "subject": "Milk production" + }, + { + "subject": "Dairy cattle" + } + ], + "contributors": [], + "dates": [ + { + "date": "2012-05-24", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Journal article", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.1326722", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0", + "rightsUri": "https://creativecommons.org/licenses/by/4.0" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "The experiment was then conducted to investigate the\neffect of cassava peel addition in the concentrate on the performance\nof lactating dairy cows. Twenty four Holstein Friesian crossbred\n(>87.5% Holstein Friesian) lactating dairy cows in mid lactation;\naveraging 12.2+2.1 kg of milk, 119+45 days in milk, 44.1+6.2\nmonths old and 449+33 kg live weight, were stratified for milk yield,\ndays in milk, age, stage of lactation and body weight, and then\nrandomly allocated to three treatment groups. The first, second and\nthird groups were fed concentrates containing the respective cassava\npeel, 0, 20 and 40%. All cows were fed ad libitum corn silage and\nfreely access to clean water. Dry matter intake, 4%FCM, milk\ncomposition and body weight change were affected (P<0.05) by the\nthird treatments (40%). The present study indicated that 20% cassava\npeel can be used in the concentrate for lactating dairy cows.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/1326721", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2018-11-05T14:25:07Z", + "registered": "2018-11-05T14:25:08Z", + "published": null, + "updated": "2020-09-20T11:00:58Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.2699502", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.2699502", + "identifiers": [ + { + "identifier": "http://www.botanicalcollections.be/specimen/BR0000010651636", + "identifierType": "URL" + }, + { + "identifier": "https://zenodo.org/record/2699503", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Meise Botanic Garden", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Anagallis tenella (L.) L. (BR0000010651636)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/belgiumherbarium", + "identifierType": "URL" + }, + "publicationYear": 2019, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Terrestrial" + }, + { + "subject": "Herbarium" + }, + { + "subject": "Primulaceae" + } + ], + "contributors": [], + "dates": [ + { + "date": "2019-05-10", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Photo", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.2699503", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/belgiumherbarium", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution Share Alike 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by-sa/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-sa-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Belgium Herbarium image of Meise Botanic Garden.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [ + { + "awardUri": "info:eu-repo/grantAgreement/EC/H2020/777483/", + "awardTitle": "Innovation and consolidation for large scale digitisation of natural heritage", + "funderName": "European Commission", + "awardNumber": "777483", + "funderIdentifier": "https://doi.org/10.13039/501100000780", + "funderIdentifierType": "Crossref Funder ID" + } + ], + "url": "https://zenodo.org/record/2699502", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": null, + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-05-10T00:48:52Z", + "registered": "2019-05-10T00:48:53Z", + "published": null, + "updated": "2020-07-29T09:00:57Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10623751", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10623751", + "identifiers": [ + { + "identifier": "oai:zenodo.org:10623751", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Sancho, Jaime", + "nameType": "Personal", + "givenName": "Jaime", + "familyName": "Sancho", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0001-8767-6596", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Razavi, Hamed", + "nameType": "Personal", + "givenName": "Hamed", + "familyName": "Razavi", + "affiliation": ["Université Libre de Bruxelles"], + "nameIdentifiers": [ + { + "nameIdentifier": "0009-0008-2500-432X", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Villa, Manuel", + "nameType": "Personal", + "givenName": "Manuel", + "familyName": "Villa", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0001-7000-6289", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Martinez de Ternero, Alejandro", + "nameType": "Personal", + "givenName": "Alejandro", + "familyName": "Martinez de Ternero", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-2668-2903", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Rosa Olmeda, Gonzalo", + "nameType": "Personal", + "givenName": "Gonzalo", + "familyName": "Rosa Olmeda", + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-3236-1236", + "nameIdentifierScheme": "ORCID" + } + ], + "affiliation": [] + }, + { + "name": "Martín-Pérez, Alberto", + "nameType": "Personal", + "givenName": "Alberto", + "familyName": "Martín-Pérez", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-4715-6814", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Vazquez, Guillermo", + "nameType": "Personal", + "givenName": "Guillermo", + "familyName": "Vazquez", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0001-5821-0877", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Sutradhar, Pallab", + "nameType": "Personal", + "givenName": "Pallab", + "familyName": "Sutradhar", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-5731-5199", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Cebrián, Pedro L.", + "nameType": "Personal", + "givenName": "Pedro L.", + "familyName": "Cebrián", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [] + }, + { + "name": "Chavarrias, Miguel", + "nameType": "Personal", + "givenName": "Miguel", + "familyName": "Chavarrias", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0003-0280-3440", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Lafruit, Gauthier", + "nameType": "Personal", + "givenName": "Gauthier", + "familyName": "Lafruit", + "affiliation": ["Université Libre de Bruxelles"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-2349-1936", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Teratani, Mehrdad", + "nameType": "Personal", + "givenName": "Mehrdad", + "familyName": "Teratani", + "affiliation": ["Université Libre de Bruxelles"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0001-9332-1409", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Juarez, Eduardo", + "nameType": "Personal", + "givenName": "Eduardo", + "familyName": "Juarez", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-6096-1511", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Sanz, Cesar", + "nameType": "Personal", + "givenName": "Cesar", + "familyName": "Sanz", + "affiliation": ["Universidad Politécnica de Madrid"], + "nameIdentifiers": [ + { + "nameIdentifier": "0000-0002-2411-9132", + "nameIdentifierScheme": "ORCID" + } + ] + } + ], + "titles": [ + { + "title": "BigMouth: A static multi-view plenoptic camera sequence" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [ + { + "subject": "lenslet" + }, + { + "subject": "plenoptic" + }, + { + "subject": "multiview" + } + ], + "contributors": [], + "dates": [ + { + "date": "2024-02-06", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10623750", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-nc-sa-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Description\n\nThis is a static multi-view test sequence captured by a RayTrix R32 plenoptic camera [1] with a 50 mm lens. The lenslet captures of the sequence have been captured using RxLive and a xyz actuator that allows to position the camera in a volume of 0.82x1.2x0.85 meters. It comprises 25 views arranged in a 5x5 array with a separation of 1 cm in x and y axes. The resolution of the lenslet images are 6464x4852.\n\nInstitutions\n\nResearch Center on Software Technologies and Multimedia Systems for Sustainability (CITSEM), Universidad Politécnica de Madrid (UPM), Madrid, Spain.\n\nLaboratory of Image Synthesis and Analysis, LISA department, Ecole Polytechnique de Bruxelles, Universite Libre de Bruxelles, Belgium.\n\nFolder structure\n\nThe dataset is composed of:\n\n\n\nThe calibration file: R32-C-D-10G-E024-GS-B_calibration.xml\n\nThe captured views as lenslet images in .png files: lenslet.zip\n\nThe captured views as total focus images in .png files (generated by RxLive software): total_focus.zip\n\n\nTerms of use\n\nAny kind of publication or report using this dataset should refer to the following reference:\n\nJaime Sancho, Hamed Razavi Khosroshahi, Manuel Villa, Alejandro Martinez de Ternero, Gonzalo Rosa, Alberto Martin, Guillermo Vazquez, Pallab Sutradhar, Pedro L. Cebrián, Miguel Chavarrias, Gauthier Lafruit, Mehrdad Teratani, Eduardo Juarez, Cesar Sanz. \"[LVC] Proposal of a new multi-view plenoptic camera sequence: BigMouth\", ISO/IEC JTC 1/SC 29/WG 4, m66503, January 2024, Online.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10623751", + "contentUrl": null, + "metadataVersion": 3, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-02-06T11:38:23Z", + "registered": "2024-02-06T11:38:23Z", + "published": null, + "updated": "2024-02-08T16:31:40Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5275995", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5275995", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/5275996", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Kratochwil, Anselm", + "givenName": "Anselm", + "familyName": "Kratochwil", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "I, Canary", + "givenName": "Canary", + "familyName": "I", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Fig. 29 in Revision of the Andrena wollastoni group (Hymenoptera, Anthophila, Andrenidae) from the Madeira Archipelago and the Canary Islands: upgrading of three former subspecies and a description of three new subspecies" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.5281/zenodo.5273217", + "identifierType": "DOI" + }, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-07-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.5281/zenodo.5273217", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:2525FF84FFE6B16CFFBD8C5DF204E739", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/2525FF84FFE6B16CFFBD8C5DF204E739", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.5275996", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Fig. 29: Index spectrum (boxplots) of HL/HW index (head length to width) of the different taxa. Groups with the same letter are not significantly different. In the case of groups of two letters, significance exists only with one group identified by a single letter. Significance levels: * p <= 0,05; ** p <= 0,01; *** p <= 0,001; ns = not significant.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Kratochwil, Anselm & I, Canary, 2020, Revision of the Andrena wollastoni group (Hymenoptera, Anthophila, Andrenidae) from the Madeira Archipelago and the Canary Islands: upgrading of three former subspecies and a description of three new subspecies, pp. 161-244 in Linzer biologische Beiträge 52 (1) on page 222, DOI: 10.5281/zenodo.5273217", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/5275995", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2021-08-26T22:44:37Z", + "registered": "2021-08-26T22:44:38Z", + "published": null, + "updated": "2021-08-26T22:44:38Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.5256466", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.5256466", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/03D5EA3FFF96FF87BDAEF8D6FB8CF54A", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Eardley, Connal", + "nameType": "Personal", + "givenName": "Connal", + "familyName": "Eardley", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Megachile (Gronoceras) bombiformis Gerstaecker" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "http://publication.plazi.org/id/FFEC9247FF9EFF8EBD39FF81FFAEF776", + "identifierType": "URL" + }, + "publicationYear": 2012, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Hymenoptera" + }, + { + "subject": "Megachilidae" + }, + { + "subject": "Megachile" + }, + { + "subject": "Megachile bombiformis" + } + ], + "contributors": [], + "dates": [ + { + "date": "2012-09-07", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFEC9247FF9EFF8EBD39FF81FFAEF776", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/03D5EA3FFF96FF87BDAEF8D6FB8CF54A", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/33C824A5-CA6B-47CE-A398-FEA02C64ADC7", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.5256465", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Megachile (Gronoceras) bombiformis Gerstaecker \nFigs 1–3 \n Megachile bombiformis Gerstaecker, 1857: 461, male and female syntypes (type depository unknown) Mozambique. Megachile guineensis bombiformis Gerstaecker: Friese 1909b: 153. \n Gronoceras bombiformis (Gerstaecker): Cockerell 1920: 258. \n Chalicodoma (Gronoceras) bombiformis (Gerstaecker): Pasteels 1965: 515, 520–524, 526, 528, 532. \n Megachile (Gronoceras) bombiformis Gerstaecker: Michener 2000: 557. \n Megachile quadrispinosa Friese, 1904b: 334, male holotype (ZMHB) Sudan. \n Megachile guineensis quadrispinosa Friese: Friese 1926: 188. \n Gronoceras quadrispinosa (Friese): Cockerell 1931a: 136. \n Chalicodoma (Gronoceras) bombiformis quadrispinosa (Friese): Pasteels 1965: 518, 519, 521–523, syn. \n Gronoceras wellmani Cockerell, 1907: 66–68, male and female syntypes (NHML) Angola; Cockerell 1937: 150, syn.; Pasteels 1965: 520. \n Gronoceras simpsoni Cockerell 1935b: 145–147, male holotype (NHML) Nigeria. \n Chalicodoma (Gronoceras) bombiformis simpsoni (Cockerell): Pasteels 1965: 518, 519, 521–523, syn. \n Chalicodoma simpsoni race yapiensis Cockerell, 1935b: 146–147, male holotype (NHML) Nigeria. Syn. nov. \n Chalicodoma (Gronoceras) bombiformis yapiensis Cockerell: Medler 1980: 481. \n Megachile (Gronoceras) bombiformis yapiensis (Cockerell): Eardley and Urban 2006: 169.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Eardley, Connal, 2012, 3460, pp. 1-139 in Zootaxa 3460 on pages 9-10", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.5256466", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 1, + "versionCount": 0, + "versionOfCount": 1, + "created": "2021-08-25T13:12:51Z", + "registered": "2021-08-25T13:12:52Z", + "published": null, + "updated": "2024-01-20T11:05:27Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.6389500", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.6389500", + "identifiers": [ + { + "identifier": "http://treatment.plazi.org/id/1539EB06E1561A40A0CDFC8813002C68", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Brown, Brian V.", + "nameType": "Personal", + "givenName": "Brian V.", + "familyName": "Brown", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Megaselia normwoodleyi Brown 2022, new species" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.5120.3.4", + "identifierType": "DOI" + }, + "publicationYear": 2022, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Diptera" + }, + { + "subject": "Phoridae" + }, + { + "subject": "Megaselia" + }, + { + "subject": "Megaselia normwoodleyi" + } + ], + "contributors": [], + "dates": [ + { + "date": "2022-03-28", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "RPRT", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "Taxonomic treatment", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.5120.3.4", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zenodo.org/record/6389495", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/E900937EE1551A43A05AFFEE117C285D", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://sibils.text-analytics.ch/search/collections/plazi/1539EB06E1561A40A0CDFC8813002C68", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.gbif.org/species/194284343", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsSourceOf", + "relatedIdentifier": "https://www.checklistbank.org/dataset/20113/taxon/1539EB06E1561A40A0CDFC8813002C68.taxon", + "relatedIdentifierType": "URL" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.6389497", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "Cites", + "relatedIdentifier": "10.5281/zenodo.6389503", + "resourceTypeGeneral": "Image", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://zoobank.org/91CAB04C-2E53-4B4B-A718-EDF59615BB4B", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.6389501", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Megaselia normwoodleyi new species \nFigures 1a–c, 10. \nHolotype: Male. BIOUG19594 -F02, COSTA RICA: Alajuela: Sector San Cristobal, Estación San Gerardo, 10.88°N, 85.389°W, 575 m, 9.ix.2013, D. Janzen, W. Hallwachs, Malaise trap [LACM ENT 366335] (MNCR). \nParatypes: See Supplementary Table 1.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Brown, Brian V., 2022, Some remarkably common, but undescribed, Megaselia Rondani (Diptera: Phoridae) from northwestern Costa Rica, pp. 373-390 in Zootaxa 5120 (3) on page 376, DOI: 10.11646/zootaxa.5120.3.4, http://zenodo.org/record/6389495", + "descriptionType": "Other" + } + ], + "geoLocations": [ + { + "geoLocationPlace": "Estacion San Gerardo", + "geoLocationPoint": { + "pointLatitude": -85.389, + "pointLongitude": 10.88 + } + } + ], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.6389500", + "contentUrl": null, + "metadataVersion": 2, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 2, + "partCount": 0, + "partOfCount": 2, + "versionCount": 1, + "versionOfCount": 0, + "created": "2022-03-28T08:20:03Z", + "registered": "2022-03-28T08:20:04Z", + "published": null, + "updated": "2024-01-21T19:28:39Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.268100", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.268100", + "identifiers": [], + "creators": [ + { + "name": "Lourie, Sara A.", + "nameType": "Personal", + "givenName": "Sara A.", + "familyName": "Lourie", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Pollom, Riley A.", + "nameType": "Personal", + "givenName": "Riley A.", + "familyName": "Pollom", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Foster, Sarah J.", + "nameType": "Personal", + "givenName": "Sarah J.", + "familyName": "Foster", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURE 22. Range map for Hippocampus jayakari. See Figure 2 in A global revision of the Seahorses Hippocampus Rafinesque 1810 (Actinopterygii: Syngnathiformes): Taxonomy and biogeography with recommendations for further research" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4146.1.1", + "identifierType": "DOI" + }, + "publicationYear": 2016, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2016-12-31", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4146.1.1", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:FFFD574F0C6C7312FFF1C92FBC3BD96D", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FFFD574F0C6C7312FFF1C92FBC3BD96D", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/268078", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURE 22. Range map for Hippocampus jayakari. See Figure 2 caption for further details.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Sara A. Lourie, Riley A. Pollom & Sarah J. Foster, 2016, A global revision of the Seahorses Hippocampus Rafinesque 1810 (Actinopterygii: Syngnathiformes): Taxonomy and biogeography with recommendations for further research, pp. 1-66 in Zootaxa 4146 (1) on page 30, DOI: 10.11646/zootaxa.4146.1.1, http://zenodo.org/record/268078", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/268100", + "contentUrl": null, + "metadataVersion": 4, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 0, + "created": "2017-02-03T01:33:16Z", + "registered": "2017-02-03T01:33:17Z", + "published": null, + "updated": "2022-02-04T14:24:36Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13314107", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13314107", + "identifiers": [ + { + "identifier": "oai:zenodo.org:13314107", + "identifierType": "oai" + }, + { + "identifier": "urn:lsid:plazi.org:pub:03552720FFE8C15FFFD6FF9A237EFF99", + "identifierType": "LSID" + }, + { + "identifier": "http://publication.plazi.org/id/03552720FFE8C15FFFD6FF9A237EFF99", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Valcárcel, Javier Pérez", + "nameType": "Personal", + "givenName": "Javier Pérez", + "familyName": "Valcárcel", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Nuevo registro de Pyrochroa coccinea (Linnaeus, 1761) (Coleoptera, Pyrochroidae) para Aragón (N.E. Península Ibérica)." + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2009, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Coleoptera" + }, + { + "subject": "Pyrochroidae" + } + ], + "contributors": [], + "dates": [ + { + "date": "2009-08-20", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasPart", + "relatedIdentifier": "http://treatment.plazi.org/id/FF6C5F58FFE8C15FFF46F9852761F93E", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.13314106", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Valcárcel, Javier Pérez (2009): Nuevo registro de Pyrochroa coccinea (Linnaeus, 1761) (Coleoptera, Pyrochroidae) para Aragón (N.E. Península Ibérica). Arquivos Entomolóxicos 1: 22-22", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13314107", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 1, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-08-13T18:10:29Z", + "registered": "2024-08-13T18:10:29Z", + "published": null, + "updated": "2024-08-14T13:56:23Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.11050167", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.11050167", + "identifiers": [ + { + "identifier": "oai:zenodo.org:11050167", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Bionomia", + "nameType": "Personal", + "familyName": "Bionomia", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "Linked collectors and determiners for: Museu de Ciències Naturals de Barcelona: MCNB-Cord." + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [ + { + "subject": "specimen" + }, + { + "subject": "natural history" + }, + { + "subject": "taxonomy" + } + ], + "contributors": [], + "dates": [ + { + "date": "2024-04-23", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceType": "", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "10.15468/yta7zj", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://gbif.org/dataset/71d58564-f762-11e1-a439-00145eb45e9a", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://bionomia.net/dataset/71d58564-f762-11e1-a439-00145eb45e9a", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10585370", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Natural history specimen data linked to collectors and determiners held within, \"Museu de Ciències Naturals de Barcelona: MCNB-Cord\". Claims or attributions were made on Bionomia by volunteer Scribes, https://bionomia.net/dataset/71d58564-f762-11e1-a439-00145eb45e9a using specimen data from the dataset aggregated by the Global Biodiversity Information Facility, https://gbif.org/dataset/71d58564-f762-11e1-a439-00145eb45e9a. Formatted as a Frictionless Data package.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.11050167", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-04-23T17:53:59Z", + "registered": "2024-04-23T17:53:59Z", + "published": null, + "updated": "2024-10-22T17:17:39Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13453440", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13453440", + "identifiers": [ + { + "identifier": "urn:lsid:biodiversitylibrary.org:part:156379", + "identifierType": "LSID" + } + ], + "creators": [ + { + "name": "NA", + "nameType": "Personal", + "familyName": "NA", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "First record of genus Diprion Schrank (Hymenoptera: Symphyta: Diprionidae) from India, with description of a new species" + } + ], + "publisher": "Bombay Natural History Society", + "container": {}, + "publicationYear": 1993, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "1993", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://linker.bio/line:zip:hash://md5/4d71f93adf6d6b1ec1f06bf726318029!/data/bhlpart.ris!/L1484443-L1484453", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://www.biodiversitylibrary.org/partpdf/156379", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://www.biodiversitylibrary.org/part/156379", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "hash://md5/53e144641ffded6800dea502a8bb47ed", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "hash://md5/be2e1ac4f571096f5fe6d596ba7f4eb1", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "hash://sha256/27ac2b93585b45563fe3b2aa0feccc06d80e2798100d3d563395b945c4ba2f5b", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13453441", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "(Uploaded by Plazi from the Biodiversity Heritage Library) No abstract provided.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13453440", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-08-29T08:41:23Z", + "registered": "2024-08-29T08:41:23Z", + "published": null, + "updated": "2024-08-29T08:41:30Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.7568485", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.7568485", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/7568486", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Султонова Сайёра Холмирзаевна", + "affiliation": ["старший преподаватель \" Oriental university\""], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "ОБУЧЕНИЕ НАУЧНЫМ ТЕРМИНАМ НА ЗАНЯТИЯХ ПО РУССКОМУ ЯЗЫКУ КАК ИНОСТРАННОМУ." + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [ + { + "subject": "научный стиль речи, текст, научный текст, русский язык как иностранный, задачи негуманитарного образования, негуманитарный вуз." + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-01-25", + "dateType": "Issued" + } + ], + "language": "ru", + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7568486", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "online", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "В статье рассматривается место научного стиля в методике преподавания русского языка как иностранного. Основное внимание уделяется особенностям работы с научным текстом в негуманитарном вузе при обучении студентов-иностранцев. Представлены основанные на современных представлениях о научном стиле речи некоторые приёмы работы с научным текстом, апробированные автором на занятиях по русскому языку как иностранному в техническом вузе и способствующие повышению эффективности обучения.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/7568485", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-01-25T12:32:16Z", + "registered": "2023-01-25T12:32:16Z", + "published": null, + "updated": "2023-01-25T14:50:02Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3713695", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3713695", + "identifiers": [], + "creators": [ + { + "name": "Marshall, Stephen A.", + "nameType": "Personal", + "givenName": "Stephen A.", + "familyName": "Marshall", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "FIGURE 4A–4G. Systellapha ornatithorax Enderlein. A in Revision of the genus Systellapha Enderlein (Micropezidae, Taeniapterinae)" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4751.2.11", + "identifierType": "DOI" + }, + "publicationYear": 2020, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Systellapha" + } + ], + "contributors": [], + "dates": [ + { + "date": "2020-03-17", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4751.2.11", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/FF93FD61FFF5FFB1AF14FF9AFFEA3A3D", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/3713687", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.3716875", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03AA8519FFF5FFB3AF83F8C2FA763B3A", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.3718147", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/03AA8519FFF0FFB7AF83FCC4FE0A3BC5", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.3713694", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "License Not Specified", + "rightsIdentifier": "notspecified", + "rightsIdentifierScheme": "" + } + ], + "descriptions": [ + { + "description": "FIGURE 4A–4G. Systellapha ornatithorax Enderlein. A, head and thorax of female, anterolateral (Argentina); B, syntype male (Paraguay); C, spermathecae and associated structures (Argentina); D, wing (Brazil); E, male sternite 5 (Brazil); F, apex of male abdomen (Brazil); G, phallus and associated structures, left lateral (Brazil). Abbreviations: bdp—basal distiphallus, c—cercus, ddp—distal distiphallus, e—epandrium, ea—ejaculatory apodeme, h—hypandrium, pb—phallic bulb, s—spermatheca, sd—spermathecal duct, ss—spermathecal stem.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Marshall, Stephen A., 2020, Revision of the genus Systellapha Enderlein (Micropezidae, Taeniapterinae), pp. 369-376 in Zootaxa 4751 (2) on page 375, DOI: 10.11646/zootaxa.4751.2.11, http://zenodo.org/record/3713687", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.3713695", + "contentUrl": null, + "metadataVersion": 5, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 5, + "partCount": 0, + "partOfCount": 2, + "versionCount": 0, + "versionOfCount": 1, + "created": "2020-03-17T20:16:37Z", + "registered": "2020-03-17T20:16:37Z", + "published": null, + "updated": "2024-01-04T23:29:14Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13508812", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13508812", + "identifiers": [ + { + "identifier": "oai:zenodo.org:13508812", + "identifierType": "oai" + }, + { + "identifier": "hash://md5/ad8c8ceb3aa6a3b7303daa3fe9b30707", + "identifierType": "URL" + }, + { + "identifier": "urn:lsid:zotero.org:groups:5435545:items:JTV3TSBK", + "identifierType": "URN" + } + ], + "creators": [ + { + "name": "Veselka, Nina", + "nameType": "Personal", + "givenName": "Nina", + "familyName": "Veselka", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "McErlain, David D.", + "nameType": "Personal", + "givenName": "David D.", + "familyName": "McErlain", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Holdsworth, David W.", + "nameType": "Personal", + "givenName": "David W.", + "familyName": "Holdsworth", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Eger, Judith L.", + "nameType": "Personal", + "givenName": "Judith L.", + "familyName": "Eger", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Chhem, Rethy K.", + "nameType": "Personal", + "givenName": "Rethy K.", + "familyName": "Chhem", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Mason, Matthew J.", + "nameType": "Personal", + "givenName": "Matthew J.", + "familyName": "Mason", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Brain, Kirsty L.", + "nameType": "Personal", + "givenName": "Kirsty L.", + "familyName": "Brain", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Faure, Paul A.", + "nameType": "Personal", + "givenName": "Paul A.", + "familyName": "Faure", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Fenton, M. Brock", + "nameType": "Personal", + "givenName": "M. Brock", + "familyName": "Fenton", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "A bony connection signals laryngeal echolocation in bats" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2010, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Mammalia" + }, + { + "subject": "Chiroptera" + }, + { + "subject": "Chordata" + }, + { + "subject": "Animalia" + }, + { + "subject": "bats" + }, + { + "subject": "bat" + } + ], + "contributors": [], + "dates": [ + { + "date": "2010", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "hash://md5/ad8c8ceb3aa6a3b7303daa3fe9b30707", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "hash://sha256/cb877a63f3ebd0ab6316fcd707d9d8f9ab790b3fda22fc6ce7d62f1507672bb8", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "zotero://select/groups/5435545/items/JTV3TSBK", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://zotero.org/groups/5435545/items/JTV3TSBK", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsDerivedFrom", + "relatedIdentifier": "https://linker.bio/cut:hash://md5/06b06fc47dad07067c4ea54c258fa6c3!/b2489-4955", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "hash://md5/26f7ce5dd404e33c6570edd4ba250d20", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCompiledBy", + "relatedIdentifier": "10.5281/zenodo.1410543", + "resourceTypeGeneral": "Software", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.13508811", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [], + "descriptions": [ + { + "description": "(Uploaded by Plazi for the Bat Literature Project) No abstract provided.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13508812", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-08-29T16:40:32Z", + "registered": "2024-08-29T16:40:32Z", + "published": null, + "updated": "2024-08-29T16:40:33Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.10576702", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.10576702", + "identifiers": [ + { + "identifier": "oai:zenodo.org:10576702", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "* Prof. Abilasha N. & Dr. Girisha M.C.", + "nameType": "Personal", + "familyName": "* Prof. Abilasha N. & Dr. Girisha M.C.", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "EXAMINING THE ROLE OF FINANCIAL LITERACY IN SHAPING INVESTORS FINANCIAL PLANNING" + } + ], + "publisher": "AMIERJ", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-01-31", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "GEN", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "Periodical", + "resourceType": "", + "resourceTypeGeneral": "Journal" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.10576701", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "2278-5655", + "resourceTypeGeneral": "Collection", + "relatedIdentifierType": "ISSN" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Purpose: This main aim of current paper is to examine how financial literacy affects individual investors' financial planning. Also, to understand how investors' financial confidence and satisfactions are affected by financial knowledge.\n\nMethodology: The study's primary data are gathered through a structured questionnaire with a sample size of 120 individual investors from Mumbai city through simple random sampling techniques. The study has adopted statistical tools like Cronbach’s alpha for reliability test, paired sample t test, correlation and regression analysis are testing the hypotheses of the study.\n\nFindings: The study evident that there is a significant relationship between financial literacy and financial planning of the investors. It was found that individual financial investment with better financial literacy will boost confidence which helps in proper balance of cost and savings of the individuals. Further, study revealed that better financial investment with good knowledge about various financial instrument will enhances satisfaction of investors.\n\nResearch Implications: The study focuses on role of financial literacy on financial planning among investors and influence of financial literacy on building confidence and satisfaction. The study aids in the decision-making process for future financial health policies and courses of action, This study is crucial for policy makers and other regulatory bodies who hold such responsibility of creating financial awareness and education which helps an individual to gain financial stability and freedom.\n\nOriginality: This research aims to provide a road map in understanding the role of financial literacy in shaping investors financial planning in converting saving in potential investment and to gain financial stability.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.10576702", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-01-28T04:52:00Z", + "registered": "2024-01-28T04:52:00Z", + "published": null, + "updated": "2024-01-28T04:52:01Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3541219", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3541219", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/3541220", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Santen, Jeffrey A Van", + "nameType": "Personal", + "givenName": "Jeffrey A Van", + "familyName": "Santen", + "affiliation": ["Simon Fraser University"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0002-5424-804X", + "nameIdentifierScheme": "ORCID" + } + ] + } + ], + "titles": [ + { + "title": "NPA_ref4250" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/npatlas-reference-archive", + "identifierType": "URL" + }, + "publicationYear": 2019, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2019-11-13", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "GEN", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "CreativeWork", + "resourceType": "Other", + "resourceTypeGeneral": "Text" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.3541220", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/npatlas-reference-archive", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Zero v1.0 Universal", + "rightsUri": "https://creativecommons.org/publicdomain/zero/1.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc0-1.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Citation for NP Atlas reference previously without DOI Citation: Vesonder, R F; Ciegler, A; Jensen, A H Isolation of the emetic principle from Fusarium-infected corn Applied Microbiology, 1973, 26(6), 1008-1010 PubMed ID: 4767291 Publisher Access: https://aem.asm.org/content/26/6/1008", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3541219", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": null, + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-11-13T23:38:45Z", + "registered": "2019-11-13T23:38:45Z", + "published": null, + "updated": "2020-07-30T08:57:44Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.1296737", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.1296737", + "identifiers": [], + "creators": [ + { + "name": ", Ashley", + "nameType": "Personal", + "givenName": "Ashley", + "familyName": "", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Kromer, Reto", + "nameType": "Personal", + "givenName": "Reto", + "familyName": "Kromer", + "affiliation": ["AV Preservation by reto.ch"], + "nameIdentifiers": [] + }, + { + "name": "Weaver, Andrew", + "nameType": "Personal", + "givenName": "Andrew", + "familyName": "Weaver", + "affiliation": ["@pugetsoundandvision"], + "nameIdentifiers": [] + }, + { + "name": "Nagels, Katherine Frances", + "nameType": "Personal", + "givenName": "Katherine Frances", + "familyName": "Nagels", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Gronsbell, Kathryn", + "nameType": "Personal", + "givenName": "Kathryn", + "familyName": "Gronsbell", + "affiliation": ["@CarnegieHall"], + "nameIdentifiers": [] + }, + { + "name": "Bturkus", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Robbins, Tod", + "nameType": "Personal", + "givenName": "Tod", + "familyName": "Robbins", + "affiliation": ["@BONCOM"], + "nameIdentifiers": [] + }, + { + "name": ", Bonnie", + "nameType": "Personal", + "givenName": "Bonnie", + "familyName": "", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "O'Leary, Kieran", + "nameType": "Personal", + "givenName": "Kieran", + "familyName": "O'Leary", + "affiliation": ["IFI Irish Film Archive"], + "nameIdentifiers": [] + }, + { + "name": "Gates, Ethan", + "nameType": "Personal", + "givenName": "Ethan", + "familyName": "Gates", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "amiaopensource/open-workflows: v2018-06-23" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2018, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2018-06-23", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/amiaopensource/open-workflows/tree/v2018-06-23", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.1188868", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "v2018-06-23", + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "update Patch Bay link", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/1296737", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 1, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2018-06-23T08:54:35Z", + "registered": "2018-06-23T08:54:35Z", + "published": null, + "updated": "2023-04-25T20:05:00Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.3450210", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.3450210", + "identifiers": [], + "creators": [ + { + "name": "Li, Di", + "givenName": "Di", + "familyName": "Li", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Aspöck, Horst", + "givenName": "Horst", + "familyName": "Aspöck", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Aspöck, Ulrike", + "givenName": "Ulrike", + "familyName": "Aspöck", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Liu, Xingyue", + "givenName": "Xingyue", + "familyName": "Liu", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "FIGURES 28–31. Dilar dochaner H in A review of the pleasing lacewing genus Dilar Rambur (Neuroptera, Dilaridae) from Central Asia" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "10.11646/zootaxa.4671.1.3", + "identifierType": "DOI" + }, + "publicationYear": 2019, + "subjects": [ + { + "subject": "Biodiversity" + }, + { + "subject": "Taxonomy" + }, + { + "subject": "Animalia" + }, + { + "subject": "Arthropoda" + }, + { + "subject": "Insecta" + }, + { + "subject": "Neuroptera" + }, + { + "subject": "Dilaridae" + }, + { + "subject": "Dilar" + } + ], + "contributors": [], + "dates": [ + { + "date": "2019-09-16", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "FIGURE", + "bibtex": "misc", + "citeproc": "graphic", + "schemaOrg": "ImageObject", + "resourceType": "Figure", + "resourceTypeGeneral": "Image" + }, + "relatedIdentifiers": [ + { + "relationType": "IsPartOf", + "relatedIdentifier": "10.11646/zootaxa.4671.1.3", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "urn:lsid:plazi.org:pub:352EA839FFD364153F56FF9F8F72FFDC", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "LSID" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "http://publication.plazi.org/id/352EA839FFD364153F56FF9F8F72FFDC", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/record/3450178", + "resourceTypeGeneral": "JournalArticle", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/C917D041FFD264143FC1FAA38AEEF8B7", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "10.5281/zenodo.5940435", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsCitedBy", + "relatedIdentifier": "http://treatment.plazi.org/id/C917D041FFD164103FC1F9E38FB6FC7B", + "resourceTypeGeneral": "Text", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.3450209", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/biosyslit", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "FIGURES 28–31. Dilar dochaner H. Aspöck & U. Aspöck, male. 28. genitalia, dorsal view, arrow indicating dorsoprocessus; 29. genitalia, ventral view; 30. genitalia, lateral view; 31. ectoproct, caudal view. e: ectoproct; gx9: gonocoxite 9; gx10: gonocoxite 10; gx11: gonocoxite 11; hi: hypandrium internum. S7–9: sternum 7–9; T7–9: tergum 7–9. Afghanistan: Nangarhar Province, Safed Koh Mountain.", + "descriptionType": "Abstract" + }, + { + "description": "Published as part of Li, Di, Aspöck, Horst, Aspöck, Ulrike & Liu, Xingyue, 2019, A review of the pleasing lacewing genus Dilar Rambur (Neuroptera, Dilaridae) from Central Asia, pp. 35-54 in Zootaxa 4671 (1) on page 46, DOI: 10.11646/zootaxa.4671.1.3, http://zenodo.org/record/3450178", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/3450210", + "contentUrl": null, + "metadataVersion": 4, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 1, + "citationCount": 2, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2019-09-19T13:51:01Z", + "registered": "2019-09-19T13:51:02Z", + "published": null, + "updated": "2024-01-01T23:40:31Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.1200397", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.1200397", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/1200398", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Martineau, Celine N.", + "nameType": "Personal", + "givenName": "Celine N.", + "familyName": "Martineau", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Nollen, Ellen A. A.", + "nameType": "Personal", + "givenName": "Ellen A. A.", + "familyName": "Nollen", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Ow956 Zgis144[P(Dat-1)::Yfp] | 2014-03-24T10:14:08+01:00" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2018, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2018-03-16", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.1200398", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0", + "rightsUri": "https://creativecommons.org/licenses/by/4.0" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "This experiment is part of the C.elegans behavioural database. For more information and the complete collection of experiments visit http://movement.openworm.org\n\n\n\npreview link : https://www.youtube.com/watch?v=qcbHkdLDMOo\nstrain : OW956\ntimestamp : 2014-03-24T10:14:08+01:00\nstrain_description : zgIs144[P(dat-1)::YFP]\nsex : hermaphrodite\nstage : adult\nventral_side : clockwise\nmedia : NGM agar low peptone\narena : \n style : petri\n size : 35\n orientation : away\n \n\nfood : OP50\nwho : Celine N. Martineau, Bora Baskaner\nprotocol : Method in E. Yemini et al. doi:10.1038/nmeth.2560. Worm transferred to arena 30 minutes before recording starts.\nlab : \n name : European Research Institute for the Biology of Ageing\n location : The Netherlands\n \n\nsoftware : \n name : tierpsy (https://github.com/ver228/tierpsy-tracker)\n version : 423b4be3119d36644e9fd44c5d8c216756a55ed6\n featureID : @OMG\n \n\nbase_name : 6_R#3_OW956#3_day6_CW_2014_03_24__10_14_08___6___2\ndays_of_adulthood : 6\nworm_id : 15053\ntotal time (s) : 898.738\nframes per second : 26.3158\nvideo micrometers per pixel : 4.4759\nnumber of segmented skeletons : 19998", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/1200397", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": null, + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2018-03-20T18:29:20Z", + "registered": "2018-03-20T18:29:20Z", + "published": null, + "updated": "2020-09-20T00:25:03Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.7958246", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.7958246", + "identifiers": [ + { + "identifier": "https://youtu.be/aFQk5MUzdyY", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Delgado-Fernandez, Irene", + "givenName": "Irene", + "familyName": "Delgado-Fernandez", + "affiliation": ["Edge Hill University, UK"], + "nameIdentifiers": [ + { + "schemeUri": "https://orcid.org", + "nameIdentifier": "https://orcid.org/0000-0001-8101-0670", + "nameIdentifierScheme": "ORCID" + } + ] + }, + { + "name": "Zier-Vogel, Lindsay", + "givenName": "Lindsay", + "familyName": "Zier-Vogel", + "affiliation": ["Author and Community Artist, Canada"], + "nameIdentifiers": [] + }, + { + "name": "Davidson-Arnott, Robin", + "nameType": "Personal", + "givenName": "Robin", + "familyName": "Davidson-Arnott", + "affiliation": ["University of Guelph, Canada"], + "nameIdentifiers": [] + }, + { + "name": "Zier-Vogel, Sharon", + "nameType": "Personal", + "givenName": "Sharon", + "familyName": "Zier-Vogel", + "affiliation": ["Toronto District School Board, Canada"], + "nameIdentifiers": [] + }, + { + "name": "Gallego-Fernández, Juan B.", + "nameType": "Personal", + "givenName": "Juan B.", + "familyName": "Gallego-Fernández", + "affiliation": ["Universidad de Sevilla, Spain"], + "nameIdentifiers": [] + }, + { + "name": "Martínez, Marisa", + "nameType": "Personal", + "givenName": "Marisa", + "familyName": "Martínez", + "affiliation": ["INECOL, Mexico"], + "nameIdentifiers": [] + }, + { + "name": "Esteves, Luciana", + "nameType": "Personal", + "givenName": "Luciana", + "familyName": "Esteves", + "affiliation": ["Bornemouth University, UK"], + "nameIdentifiers": [] + }, + { + "name": "Barnes, Michelle", + "nameType": "Personal", + "givenName": "Michelle", + "familyName": "Barnes", + "affiliation": ["Sefton Council, UK"], + "nameIdentifiers": [] + }, + { + "name": "Kirk, Julie", + "nameType": "Personal", + "givenName": "Julie", + "familyName": "Kirk", + "affiliation": ["Southport Eco Centre, UK"], + "nameIdentifiers": [] + }, + { + "name": "Hesp, Patrick", + "nameType": "Personal", + "givenName": "Patrick", + "familyName": "Hesp", + "affiliation": ["Flinders University, Australia"], + "nameIdentifiers": [] + }, + { + "name": "Sénéchal, Nadia", + "nameType": "Personal", + "givenName": "Nadia", + "familyName": "Sénéchal", + "affiliation": ["Université de Bordeaux, France"], + "nameIdentifiers": [] + }, + { + "name": "Hernández-Calvento, Luis", + "nameType": "Personal", + "givenName": "Luis", + "familyName": "Hernández-Calvento", + "affiliation": ["Universidad de Las Palmas de Gran Canaria, Spain"], + "nameIdentifiers": [] + }, + { + "name": "Da Silva, Graziela Miot", + "nameType": "Personal", + "givenName": "Graziela Miot", + "familyName": "Da Silva", + "affiliation": ["Flinders University, Australia"], + "nameIdentifiers": [] + }, + { + "name": "Chislett, Christina", + "nameType": "Personal", + "givenName": "Christina", + "familyName": "Chislett", + "affiliation": ["Sefton Council, UK"], + "nameIdentifiers": [] + }, + { + "name": "O´Keeffe, Nicholas", + "nameType": "Personal", + "givenName": "Nicholas", + "familyName": "O´Keeffe", + "affiliation": ["Edge Hill University, UK"], + "nameIdentifiers": [] + }, + { + "name": "Amoakoh, Alex", + "nameType": "Personal", + "givenName": "Alex", + "familyName": "Amoakoh", + "affiliation": ["Edge Hill University, UK"], + "nameIdentifiers": [] + }, + { + "name": "Lloyd, Darren", + "nameType": "Personal", + "givenName": "Darren", + "familyName": "Lloyd", + "affiliation": ["Southport Eco Centre, UK"], + "nameIdentifiers": [] + }, + { + "name": "Rodgers, Susan", + "nameType": "Personal", + "givenName": "Susan", + "familyName": "Rodgers", + "affiliation": ["Edge Hill University, UK"], + "nameIdentifiers": [] + }, + { + "name": "Morris, Sion", + "nameType": "Personal", + "givenName": "Sion", + "familyName": "Morris", + "affiliation": ["Cinnamon Design, Ltd"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "Coasts for Kids - Episode 1 - What is the Coats?" + } + ], + "publisher": "Zenodo", + "container": { + "type": "Series", + "identifier": "https://zenodo.org/communities/coasts", + "identifierType": "URL" + }, + "publicationYear": 2023, + "subjects": [ + { + "subject": "coastal environments" + }, + { + "subject": "beaches and dunes" + }, + { + "subject": "storms and sea level rise" + }, + { + "subject": "waves and winds" + }, + { + "subject": "coastal currents" + }, + { + "subject": "erosion and flooding" + } + ], + "contributors": [], + "dates": [ + { + "date": "2023-05-22", + "dateType": "Issued" + } + ], + "language": "en", + "types": { + "ris": "MPCT", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "MediaObject", + "resourceTypeGeneral": "Audiovisual" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.7958245", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "IsPartOf", + "relatedIdentifier": "https://zenodo.org/communities/coasts", + "relatedIdentifierType": "URL" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "[For more information and resources please visit www.coastsforkids.com] This is the 1st episode of the Coasts for Kids Series. Episode 1 introduces children to the definition of ‘coast’. We present coasts as biodiverse places that are important for coastal communities and recreation. We also introduce children to the pressure that human impacts exert on the coast, as well as some key concepts that will be developed in the next episodes. [The Coasts for Kids Series is currently available for free downloading from the Southport Eco Centre (UK) and the Coast and Ocean Collective (NZ). Check out the Coasts for Kids YouTube Channel for updates]", + "descriptionType": "Abstract" + }, + { + "description": "This project would not have been possible without the incredible work of all the amazing children and families involved in it. We sincerely thank all of them.", + "descriptionType": "Other" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/7958246", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2023-05-27T14:30:19Z", + "registered": "2023-05-27T14:30:20Z", + "published": null, + "updated": "2023-05-27T14:30:20Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.6665834", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.6665834", + "identifiers": [], + "creators": [ + { + "name": "Gael Forget", + "nameType": "Personal", + "familyName": "Gael Forget", + "affiliation": ["MIT (Massachusetts Institute of Technology)"], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "gdcc/Dataverse.jl: v0.2.5" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-05-06", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceType": "", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/gdcc/Dataverse.jl/tree/v0.2.5", + "resourceTypeGeneral": "Software", + "relatedIdentifierType": "URL" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8320480", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7502846", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8319084", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7881907", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.8320091", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.6665835", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.7880010", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.11098339", + "relatedIdentifierType": "DOI" + }, + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.11118120", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "v0.2.5", + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Dataverse v0.2.5\n\nDiff since v0.2.4\n\nMerged pull requests:\n\n\n\nV0p2p5a (#29) (@gaelforget)", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.6665834", + "contentUrl": null, + "metadataVersion": 8, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 1, + "partCount": 0, + "partOfCount": 0, + "versionCount": 8, + "versionOfCount": 0, + "created": "2022-06-19T13:46:57Z", + "registered": "2022-06-19T13:46:57Z", + "published": null, + "updated": "2024-05-06T02:00:09Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.14003796", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.14003796", + "identifiers": [ + { + "identifier": "oai:zenodo.org:14003796", + "identifierType": "oai" + } + ], + "creators": [ + { + "name": "Gurbanov E.", + "nameType": "Personal", + "familyName": "Gurbanov E.", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Mammadova Z.", + "nameType": "Personal", + "familyName": "Mammadova Z.", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Rzayeva A.", + "nameType": "Personal", + "familyName": "Rzayeva A.", + "nameIdentifiers": [], + "affiliation": [] + }, + { + "name": "Huseynova H.", + "nameType": "Personal", + "familyName": "Huseynova H.", + "nameIdentifiers": [], + "affiliation": [] + } + ], + "titles": [ + { + "title": "COMPARATIVE ANALYSIS OF PLANT ASSOCIATIONS RECORDED WITH THE PRESENCE OF JUNIPERUS FOETIDISSIMA WILLD. IN AZERBAIJAN" + } + ], + "publisher": "Norwegian Journal of development of the International Science", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-10-26", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "JOUR", + "bibtex": "article", + "citeproc": "article-journal", + "schemaOrg": "ScholarlyArticle", + "resourceType": "", + "resourceTypeGeneral": "JournalArticle" + }, + "relatedIdentifiers": [ + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.14003795", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [ + { + "description": "Abstract\n\nEcological monitoring and evaluation of coenopopulations of rare and endangered species are very relevant in terms of enrichment and protection of wild flora. In this regard, we paid special attention to the ecological evaluation of Juniperus foetidissima Willd. included in the Red Book of Azerbaijan. In the wild flora, this plant is distributed in the territory of the republic in the Nakhchivanchay basin, in the territory of the Lesser Caucasus and Shamkir region, in the lower and middle mountainous belt of the Dubrar mountain, in the territory of Gobustan and in the territory of the Turyanchay State Nature Reserve.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.14003796", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2024-11-04T11:45:20Z", + "registered": "2024-11-04T11:45:20Z", + "published": null, + "updated": "2024-11-04T11:48:05Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.1017495", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.1017495", + "identifiers": [ + { + "identifier": "https://zenodo.org/record/1017496", + "identifierType": "URL" + } + ], + "creators": [ + { + "name": "Javer, Avelino", + "nameType": "Personal", + "givenName": "Avelino", + "familyName": "Javer", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Currie, Michael", + "nameType": "Personal", + "givenName": "Michael", + "familyName": "Currie", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Hokanson, Jim", + "nameType": "Personal", + "givenName": "Jim", + "familyName": "Hokanson", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Lee, Chee Wai", + "nameType": "Personal", + "givenName": "Chee Wai", + "familyName": "Lee", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Li, Kezhi", + "nameType": "Personal", + "givenName": "Kezhi", + "familyName": "Li", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Yemini, Eviatar", + "nameType": "Personal", + "givenName": "Eviatar", + "familyName": "Yemini", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Grundy, Laura J", + "nameType": "Personal", + "givenName": "Laura J", + "familyName": "Grundy", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Li, Chris", + "nameType": "Personal", + "givenName": "Chris", + "familyName": "Li", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Ch'ng, Quee-Lim", + "nameType": "Personal", + "givenName": "Quee-Lim", + "familyName": "Ch'ng", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Schafer, William R", + "nameType": "Personal", + "givenName": "William R", + "familyName": "Schafer", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Kerr, Rex", + "nameType": "Personal", + "givenName": "Rex", + "familyName": "Kerr", + "affiliation": [], + "nameIdentifiers": [] + }, + { + "name": "Brown, André EX", + "nameType": "Personal", + "givenName": "André EX", + "familyName": "Brown", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "N2 Schafer Lab N2 (Bristol, Uk) | 2013-02-28T13:30:59+00:00" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2017, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2017-10-20", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "DATA", + "bibtex": "misc", + "citeproc": "dataset", + "schemaOrg": "Dataset", + "resourceTypeGeneral": "Dataset" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.1017496", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0", + "rightsUri": "https://creativecommons.org/licenses/by/4.0" + }, + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "This experiment is part of the C.elegans behavioural database. For more information and the complete collection of experiments visit http://movement.openworm.org\n\n\n\npreview link : https://www.youtube.com/watch?v=4PSj3ZgvBqs\nstrain : N2\ntimestamp : 2013-02-28T13:30:59+00:00\ngene : -N/A-\nchromosome : -N/A-\nallele : -N/A-\nstrain_description : Schafer Lab N2 (Bristol, UK)\nsex : hermaphrodite\nstage : adult\nventral_side : anticlockwise\nmedia : NGM agar low peptone\narena : \n style : petri\n size : 35\n orientation : away\n \n\nfood : OP50\nhabituation : 30m wait\nwho : Laura Grundy\nprotocol : Method in E. Yemini et al. doi:10.1038/nmeth.2560. Worm transferred to arena 30 minutes before recording starts.\nlab : \n name : William R Schafer\n location : MRC Laboratory of Molecular Biology, Hills Road, Cambridge, CB2 0QH, UK\n \n\nsoftware : \n name : tierpsy (https://github.com/ver228/tierpsy-tracker)\n version : cbfc23eb4f1ac2f29be75ade7a937eed58a5b219\n featureID : @OMG\n \n\nbase_name : N2 on food R_2013_02_28__13_30_59___8___8\ntotal time (s) : 898.967\nframes per second : 30.03\nvideo micrometers per pixel : 4.15446\nnumber of segmented skeletons : 26900", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/1017495", + "contentUrl": null, + "metadataVersion": 1, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": null, + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 0, + "created": "2017-10-23T13:53:08Z", + "registered": "2017-10-23T13:53:09Z", + "published": null, + "updated": "2020-09-19T01:43:02Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.13828651", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.13828651", + "identifiers": [], + "creators": [ + { + "name": "Akromov Akbar Akmal O'g'li", + "nameType": "Personal", + "familyName": "Akromov Akbar Akmal O'g'li", + "affiliation": [ + "Toshkent davlat iqtisodiyot universiteti magistranti" + ], + "nameIdentifiers": [] + }, + { + "name": "Ro'ziyeva D. I", + "nameType": "Personal", + "familyName": "Ro'ziyeva D. I", + "affiliation": [ + "Toshkent davlat iqtisodiyot universiteti, Yashil iqtisodiyot va barqaror biznes kafedrasi dotsenti" + ], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "MINTAQALARNING INVESTITSION JOZIBADORLIGINI OSHIRISHDA XORIJIY TAJRIBALARDAN FOYDALANISH" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2024, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2024-09-23", + "dateType": "Issued" + }, + { + "date": "2024-09-23", + "dateType": "Accepted" + } + ], + "language": null, + "types": { + "ris": "GEN", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "Periodical", + "resourceType": "", + "resourceTypeGeneral": "Journal" + }, + "relatedIdentifiers": [ + { + "relationType": "HasVersion", + "relatedIdentifier": "10.5281/zenodo.13828652", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": null, + "rightsList": [ + { + "rights": "Creative Commons Attribution 4.0 International", + "rightsUri": "https://creativecommons.org/licenses/by/4.0/legalcode", + "schemeUri": "https://spdx.org/licenses/", + "rightsIdentifier": "cc-by-4.0", + "rightsIdentifierScheme": "SPDX" + } + ], + "descriptions": [], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/doi/10.5281/zenodo.13828651", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "api", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 1, + "versionOfCount": 0, + "created": "2024-09-23T11:30:29Z", + "registered": "2024-09-23T11:30:30Z", + "published": null, + "updated": "2024-09-23T11:30:30Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + }, + { + "id": "10.5281/zenodo.7644416", + "type": "dois", + "attributes": { + "doi": "10.5281/zenodo.7644416", + "identifiers": [], + "creators": [ + { + "name": "Hawbecker, Patrick", + "nameType": "Personal", + "givenName": "Patrick", + "familyName": "Hawbecker", + "affiliation": [], + "nameIdentifiers": [] + } + ], + "titles": [ + { + "title": "hawbecker/pydicts: First release" + } + ], + "publisher": "Zenodo", + "container": {}, + "publicationYear": 2023, + "subjects": [], + "contributors": [], + "dates": [ + { + "date": "2023-02-15", + "dateType": "Issued" + } + ], + "language": null, + "types": { + "ris": "COMP", + "bibtex": "misc", + "citeproc": "article", + "schemaOrg": "SoftwareSourceCode", + "resourceTypeGeneral": "Software" + }, + "relatedIdentifiers": [ + { + "relationType": "IsSupplementTo", + "relatedIdentifier": "https://github.com/hawbecker/pydicts/tree/v1.0", + "relatedIdentifierType": "URL" + }, + { + "relationType": "IsVersionOf", + "relatedIdentifier": "10.5281/zenodo.7644415", + "relatedIdentifierType": "DOI" + } + ], + "relatedItems": [], + "sizes": [], + "formats": [], + "version": "v1.0", + "rightsList": [ + { + "rights": "Open Access", + "rightsUri": "info:eu-repo/semantics/openAccess" + } + ], + "descriptions": [ + { + "description": "Testing the usefulness of tags.", + "descriptionType": "Abstract" + } + ], + "geoLocations": [], + "fundingReferences": [], + "url": "https://zenodo.org/record/7644416", + "contentUrl": null, + "metadataVersion": 0, + "schemaVersion": "http://datacite.org/schema/kernel-4", + "source": "mds", + "isActive": true, + "state": "findable", + "reason": null, + "viewCount": 0, + "downloadCount": 0, + "referenceCount": 0, + "citationCount": 0, + "partCount": 0, + "partOfCount": 0, + "versionCount": 0, + "versionOfCount": 1, + "created": "2023-02-15T20:12:37Z", + "registered": "2023-02-15T20:12:37Z", + "published": null, + "updated": "2023-02-15T20:39:22Z" + }, + "relationships": { + "client": { + "data": { + "id": "cern.zenodo", + "type": "clients" + } + } + } + } + ] +} diff --git a/dateutils/dateutils.go b/dateutils/dateutils.go index bc214df..f84c317 100644 --- a/dateutils/dateutils.go +++ b/dateutils/dateutils.go @@ -2,6 +2,7 @@ package dateutils import ( + "errors" "fmt" "strconv" "strings" @@ -31,6 +32,9 @@ const Iso8601DateTimeFormat = "2006-01-02T15:04:05Z" // CrossrefDateTimeFormat is the Crossref date format with time, used in XML for content registration. const CrossrefDateTimeFormat = "20060102150405" +// DateTimeWithSpacesFormat is the date time format with spaces and no timezone information. +const DateTimeWithSpacesFormat = "2006-01-02 15:04:05" + // ParseDate parses date strings in various formats and returns a date string in ISO 8601 format. func ParseDate(iso8601Time string) string { date := GetDateStruct(iso8601Time) @@ -47,6 +51,30 @@ func ParseDate(iso8601Time string) string { return dateStr } +// ParseDateTime parses datetime strings in various formats and returns a datetime string in ISO 8601 format. +func ParseDateTime(input string) string { + time, err := ParseTime(input) + if err != nil { + return "" + } + if time.Hour() == 0 && time.Minute() == 0 && time.Second() == 0 { + return ParseDate(input) + } + return time.Format(Iso8601DateTimeFormat) +} + +// ParseTime parses datetime strings in various formats and returns a go time, which can then be formatted to an iso8601 string using ParseDateTime. +func ParseTime(input string) (time.Time, error) { + formats := []string{Iso8601DateTimeFormat, Iso8601DateFormat, Iso8601DateMonthFormat, Iso8601DateYearFormat, DateTimeWithSpacesFormat, CrossrefDateTimeFormat} + for _, format := range formats { + datetime, err := time.Parse(format, input) + if err == nil { + return datetime, nil + } + } + return time.Time{}, errors.New("unrecognized time format") +} + // GetDateParts return date parts from an ISO 8601 date string func GetDateParts(iso8601Time string) []DateSlice { var dateParts []DateSlice diff --git a/dateutils/dateutils_test.go b/dateutils/dateutils_test.go index 7fbc27f..32ccf3b 100644 --- a/dateutils/dateutils_test.go +++ b/dateutils/dateutils_test.go @@ -108,3 +108,10 @@ func ExampleParseDate() { // Output: // 2021-01 } + +func ExampleParseDateTime() { + s := dateutils.ParseDateTime("2015-12-22 17:35:18") + fmt.Println(s) + // Output: + // 2015-12-22T17:35:18Z +} diff --git a/inveniordm/reader.go b/inveniordm/reader.go index 50d1e09..74e94cb 100644 --- a/inveniordm/reader.go +++ b/inveniordm/reader.go @@ -3,27 +3,28 @@ package inveniordm import ( "encoding/json" + "errors" "fmt" "io" + "log" "net/http" + "os" + "path" + "slices" + "strconv" "time" + "github.com/front-matter/commonmeta/authorutils" "github.com/front-matter/commonmeta/commonmeta" "github.com/front-matter/commonmeta/doiutils" "github.com/front-matter/commonmeta/utils" ) -// Content represents the InvenioRDM JSON API response. -type Content struct { - ID string `json:"id"` - Title string `json:"title"` -} - // Query represents the InvenioRDM JSON API query. type Query struct { Hits struct { - Hits []Inveniordm `json:"hits"` - Total int `json:"total"` + Hits []Content `json:"hits"` + Total int `json:"total"` } `json:"hits"` } @@ -37,6 +38,17 @@ type Inveniordm struct { CustomFields CustomFields `json:"custom_fields"` } +// Content represents the Inveniordm metadata returned from an Inveniordm API. The type is more +// flexible than the Inveniordm type, allowing for different formats of some metadata, e.g. +// customized instances such as Zenodo. +type Content struct { + *Inveniordm + ID interface{} `json:"id,omitempty"` + DOI string `json:"doi,omitempty"` + Files json.RawMessage `json:"files,omitempty"` + Metadata MetadataJSON `json:"metadata"` +} + type Affiliation struct { ID string `json:"id,omitempty"` Name string `json:"name"` @@ -58,30 +70,33 @@ type Files struct { type Metadata struct { ResourceType ResourceType `json:"resource_type"` Creators []Creator `json:"creators"` - Title string `json:"title"` - Publisher string `json:"publisher,omitempty"` - PublicationDate string `json:"publication_date"` - Subjects []Subject `json:"subjects,omitempty"` + Funding []Funding `json:"funding,omitempty"` Dates []Date `json:"dates,omitempty"` Description string `json:"description,omitempty"` - Rights []Right `json:"rights,omitempty"` - Languages []Language `json:"languages,omitempty"` + Grants []Grant `json:"grants,omitempty"` Identifiers []Identifier `json:"identifiers,omitempty"` + Keywords []string `json:"keywords,omitempty"` + Language string `json:"language,omitempty"` + Languages []Language `json:"languages,omitempty"` + License License `json:"license,omitempty"` + Publisher string `json:"publisher,omitempty"` + PublicationDate string `json:"publication_date"` RelatedIdentifiers []RelatedIdentifier `json:"related_identifiers,omitempty"` - Funding []Funding `json:"funding,omitempty"` + Rights []Right `json:"rights,omitempty"` + Subjects []Subject `json:"subjects,omitempty"` + Title string `json:"title"` Version string `json:"version,omitempty"` } -type CustomFields struct { - Journal Journal `json:"journal:journal,omitempty"` - ContentText string `json:"rs:content_text,omitempty"` - FeatureImage string `json:"rs:image,omitempty"` +type MetadataJSON struct { + *Metadata + Dates []DateJSON `json:"dates,omitempty"` } type Award struct { - ID string `json:"id,omitempty"` - // Title AwardTitle `json:"title,omitempty"` + ID string `json:"id,omitempty"` Number string `json:"number,omitempty"` + Title AwardTitle `json:"title,omitempty"` Identifiers []Identifier `json:"identifiers,omitempty"` } @@ -89,10 +104,30 @@ type AwardTitle struct { En string `json:"en,omitempty"` } +type Creator struct { + Name string `json:"name"` + PersonOrOrg PersonOrOrg `json:"person_or_org"` + ORCID string `json:"orcid,omitempty"` + Affiliations []Affiliation `json:"affiliations,omitempty"` + Affiliation string `json:"affiliation,omitempty"` +} + +type CustomFields struct { + Journal Journal `json:"journal:journal,omitempty"` + ContentText string `json:"rs:content_text,omitempty"` + FeatureImage string `json:"rs:image,omitempty"` +} + type Date struct { Date string `json:"date"` Type Type `json:"type"` } + +type DateJSON struct { + Date string `json:"date"` + Type json.RawMessage `json:"type"` +} + type DOI struct { Identifier string `json:"identifier"` Provider string `json:"provider"` @@ -100,6 +135,7 @@ type DOI struct { type Funder struct { ID string `json:"id,omitempty"` + DOI string `json:"doi,omitempty"` Name string `json:"name"` } @@ -108,13 +144,11 @@ type Funding struct { Award Award `json:"award,omitempty"` } -type ResourceType struct { - ID string `json:"id"` -} - -type Creator struct { - PersonOrOrg PersonOrOrg `json:"person_or_org"` - Affiliations []Affiliation `json:"affiliations,omitempty"` +type Grant struct { + Code string `json:"code,omitempty"` + Funder Funder `json:"funder"` + Title string `json:"title,omitempty"` + URL string `json:"url,omitempty"` } type Identifier struct { @@ -122,6 +156,10 @@ type Identifier struct { Scheme string `json:"scheme,omitempty"` } +type License struct { + ID string `json:"id,omitempty"` +} + type PersonOrOrg struct { Type string `json:"type"` Name string `json:"name,omitempty"` @@ -136,6 +174,12 @@ type RelatedIdentifier struct { RelationType Type `json:"relation_type"` } +type ResourceType struct { + ID string `json:"id,omitempty"` + Subtype string `json:"subtype,omitempty"` + Type string `json:"type,omitempty"` +} + type Subject struct { ID string `json:"id,omitempty"` Subject string `json:"subject,omitempty"` @@ -183,34 +227,35 @@ type AwardVocabulary struct { // InvenioToCMMappings maps InvenioRDM resource types to Commonmeta types // source: https://github.com/zenodo/zenodo/blob/master/zenodo/modules/records/data/objecttypes.json var InvenioToCMMappings = map[string]string{ + "annotationcollection": "Collection", "book": "Book", - "section": "BookChapter", "conferencepaper": "ProceedingsArticle", + "datamanagementplan": "OutputManagementPlan", + "dataset": "Dataset", + "drawing": "Image", + "figure": "Image", + "image": "Image", + "lesson": "InteractiveResource", "patent": "Patent", + "peerreview": "PeerReview", + "photo": "Image", + "physicalobject": "PhysicalObject", + "plot": "Image", + "poster": "Poster", + "presentation": "Presentation", + "preprint": "Article", "publication": "JournalArticle", "publication-preprint": "Article", "report": "Report", + "section": "BookChapter", + "software": "Software", "softwaredocumentation": "Software", - "thesis": "Dissertation", - "technicalnote": "Report", - "workingpaper": "Report", - "datamanagementplan": "OutputManagementPlan", - "annotationcollection": "Collection", "taxonomictreatment": "Collection", - "peerreview": "PeerReview", - "poster": "Presentation", - "presentation": "Presentation", - "dataset": "Dataset", - "figure": "Image", - "plot": "Image", - "drawing": "Image", - "photo": "Image", - "image": "Image", + "technicalnote": "Report", + "thesis": "Dissertation", "video": "Audiovisual", - "software": "Software", - "lesson": "InteractiveResource", - "physicalobject": "PhysicalObject", "workflow": "Workflow", + "workingpaper": "Report", "other": "Other", } @@ -239,6 +284,7 @@ var CMToInvenioMappings = map[string]string{ "PersonalCommunication": "publication", "PhysicalObject": "physicalobject", "Post": "publication", + "Poster": "poster", "Presentation": "presentation", "ProceedingsArticle": "publication-conferencepaper", "Proceedings": "publication-conferenceproceeding", @@ -304,6 +350,35 @@ var FOSMappings = map[string]string{ "Other humanities": "http://www.oecd.org/science/inno/38235147.pdf?6.5", } +// InvenioToCMIdentifierMappings maps Commonmeta identifier types to InvenioRDM identifier types +var InvenioToCMIdentifierMappings = map[string]string{ + "ark": "Ark", + "arxiv": "arXiv", + "ads": "Bibcode", + "crossreffunderid": "CrossrefFunderID", + "doi": "DOI", + "ean13": "EAN13", + "eissn": "EISSN", + "grid": "GRID", + "handle": "Handle", + "igsn": "IGSN", + "isbn": "ISBN", + "isni": "ISNI", + "issn": "ISSN", + "istc": "ISTC", + "lissn": "LISSN", + "lsid": "LSID", + "pmid": "PMID", + "purl": "PURL", + "upc": "UPC", + "url": "URL", + "urn": "URN", + "w3id": "W3ID", + "guid": "GUID", + "uuid": "UUID", + "other": "Other", +} + // CMToInvenioIdentifierMappings maps Commonmeta identifier types to InvenioRDM identifier types var CMToInvenioIdentifierMappings = map[string]string{ "Ark": "ark", @@ -333,6 +408,39 @@ var CMToInvenioIdentifierMappings = map[string]string{ "Other": "other", } +// InvenioToCMRelationTypeMappings maps Commonmeta identifier types to InvenioRDM identifier types +var InvenioToCMRelationTypeMappings = map[string]string{ + "iscitedby": "IsCitedBy", + "issupplementto": "IsSupplementTo", + "issupplementedby": "IsSupplementedBy", + "iscontinuedby": "IsContinuedBy", + "continues": "Continues", + "isnewversionof": "IsNewVersionOf", + "ispreviousversion": "IsPreviousVersion", + "ispartof": "IsPartOf", + "haspart": "HasPart", + "isreferencedby": "IsReferencedBy", + "isdocumentedby": "IsDocumentedBy", + "documents": "Documents", + "iscompiledby": "IsCompiledBy", + "compiles": "Compiles", + "isvariantformof": "IsVariantFormOf", + "isoriginalformof": "IsOriginalFormOf", + "isidenticalto": "IsIdenticalTo", + "isreviewedby": "IsReviewedBy", + "reviews": "Reviews", + "isderivedfrom": "IsDerivedFrom", + "issourceof": "IsSourceOf", + "describes": "Describes", + "isdescribedby": "IsDescribedBy", + "ismetadatafor": "IsMetadataFor", + "hasmetadata": "HasMetadata", + "isannotatedby": "IsAnnotatedBy", + "annotates": "Annotates", + "iscorrectedby": "IsCorrectedBy", + "corrects": "Corrects", +} + // CMToInvenioRelationTypeMappings maps Commonmeta identifier types to InvenioRDM identifier types var CMToInvenioRelationTypeMappings = map[string]string{ "IsCitedBy": "iscitedby", @@ -377,6 +485,56 @@ func Fetch(str string) (commonmeta.Data, error) { return data, err } data, err = Read(content) + return data, err +} + +// FetchAll gets the metadata for a list of records from a InvenioRDM community and returns Commonmeta metadata. +func FetchAll(number int, host string, community string) ([]commonmeta.Data, error) { + var data []commonmeta.Data + content, err := GetAll(number, host, community) + if err != nil { + return data, err + } + data, err = ReadAll(content) + return data, err +} + +// Load loads the metadata for a single work from a JSON file +func Load(filename string) (commonmeta.Data, error) { + var data commonmeta.Data + + content, err := ReadJSON(filename) + if err != nil { + return data, err + } + data, err = Read(content) + if err != nil { + return data, err + } + return data, nil +} + +// LoadAll loads a list of Inveniordm metadata from a JSON file and returns Commonmeta metadata. +func LoadAll(filename string) ([]commonmeta.Data, error) { + var data []commonmeta.Data + var content []Content + var err error + + extension := path.Ext(filename) + if extension == ".jsonl" || extension == ".jsonlines" { + content, err = ReadJSONLines(filename) + if err != nil { + return data, err + } + } else if extension == ".json" { + content, err = ReadJSONList(filename) + if err != nil { + return data, err + } + } else { + return data, errors.New("unsupported file format") + } + data, err = ReadAll(content) if err != nil { return data, err } @@ -408,6 +566,38 @@ func Get(id string) (Content, error) { return content, err } +// GetAll retrieves InvenioRDM metadata for all records in a community. +func GetAll(number int, host string, community string) ([]Content, error) { + var response Query + var content []Content + + if number > 100 { + number = 100 + } + client := &http.Client{ + Timeout: time.Second * 30, + } + requestURL := fmt.Sprintf("https://%s/api/communities/%s/records?q=&l=list&p=1&s=%v&sort=newest", host, community, number) + resp, err := client.Get(requestURL) + if err != nil { + return content, err + } + defer resp.Body.Close() + if resp.StatusCode != 200 { + return content, fmt.Errorf("status code error: %d %s", resp.StatusCode, resp.Status) + } + body, err := io.ReadAll(resp.Body) + if err != nil { + return content, err + } + err = json.Unmarshal(body, &response) + if err != nil { + fmt.Println("error:", err) + } + content = append(content, response.Hits.Hits...) + return content, err +} + // SearchByDOI searches InvenioRDM records by external DOI. func SearchByDOI(doi string, client *InvenioRDMClient) (string, error) { var query Query @@ -427,10 +617,11 @@ func SearchByDOI(doi string, client *InvenioRDMClient) (string, error) { if err != nil { return "", err } + if query.Hits.Total == 0 { return "", nil } else { - return query.Hits.Hits[0].ID, nil + return utils.ParseString(query.Hits.Hits[0].ID), nil } } @@ -456,13 +647,453 @@ func SearchBySlug(slug string, client *InvenioRDMClient) (string, error) { if query.Hits.Total == 0 { return "", nil } else { - return query.Hits.Hits[0].ID, nil + return utils.ParseString(query.Hits.Hits[0].ID), nil } } // Read reads InvenioRDM JSON API response and converts it into Commonmeta metadata. func Read(content Content) (commonmeta.Data, error) { var data commonmeta.Data - data.ID = content.ID + + if content.DOI != "" { + data.ID = doiutils.NormalizeDOI(content.DOI) + } else { + data.ID = doiutils.NormalizeDOI(content.Pids.DOI.Identifier) + } + + if content.Metadata.ResourceType.ID != "" { + data.Type = InvenioToCMMappings[content.Metadata.ResourceType.ID] + } else if content.Metadata.ResourceType.Subtype != "" { + data.Type = InvenioToCMMappings[content.Metadata.ResourceType.Subtype] + } else { + data.Type = InvenioToCMMappings[content.Metadata.ResourceType.Type] + } + + // data.Container = commonmeta.Container{ + // Identifier: content.Container.Identifier, + // IdentifierType: content.Container.IdentifierType, + // Type: content.Container.Type, + // Title: content.Container.Title, + // Volume: content.Container.Volume, + // Issue: content.Container.Issue, + // FirstPage: content.Container.FirstPage, + // LastPage: content.Container.LastPage, + // } + + for _, v := range content.Metadata.Creators { + var contributor commonmeta.Contributor + if v.PersonOrOrg.Name != "" { + contributor = GetContributor(v) + } else if v.Name != "" { + contributor = GetZenodoContributor(v) + } + containsID := slices.ContainsFunc(data.Contributors, func(e commonmeta.Contributor) bool { + return e.ID != "" && e.ID == contributor.ID + }) + if !containsID { + data.Contributors = append(data.Contributors, contributor) + } + } + + for _, v := range content.Metadata.Dates { + // parse Date as either string or struct + var tt Type + var ts, t string + err := json.Unmarshal(v.Type, &tt) + if err != nil { + err = json.Unmarshal(v.Type, &ts) + } + if err != nil { + log.Println(err) + } + if ts != "" { + t = ts + } else if tt.ID != "" { + t = tt.ID + } + + if t == "accepted" { + data.Date.Accepted = v.Date + } + if t == "available" { + data.Date.Available = v.Date + } + if t == "collected" { + data.Date.Collected = v.Date + } + if t == "created" { + data.Date.Created = v.Date + } + if t == "Issued" { + data.Date.Published = v.Date + } + if t == "submitted" { + data.Date.Submitted = v.Date + } + if t == "updated" { + data.Date.Updated = v.Date + } + if t == "valid" { + data.Date.Valid = v.Date + } + if t == "withdrawn" { + data.Date.Withdrawn = v.Date + } + if t == "other" { + data.Date.Other = v.Date + } + } + if data.Date.Published == "" && content.Metadata.PublicationDate != "" { + data.Date.Published = content.Metadata.PublicationDate + } + + if content.Metadata.Description != "" { + description := utils.Sanitize(content.Metadata.Description) + data.Descriptions = append(data.Descriptions, commonmeta.Description{ + Description: description, + Type: "Abstract", + }) + } + + // Files not yet supported. Sizes and formats are part of the file object, + // but can't be mapped directly + + if len(content.Metadata.Funding) > 0 { + for _, v := range content.Metadata.Funding { + funderIdentifier, funderIdentifierType := utils.ValidateID(v.Funder.ID) + if funderIdentifierType == "ROR" { + funderIdentifier = utils.NormalizeROR(funderIdentifier) + } + awardNumber := v.Award.Number + awardURI, _ := utils.ValidateID(v.Award.ID) + data.FundingReferences = append(data.FundingReferences, commonmeta.FundingReference{ + FunderIdentifier: funderIdentifier, + FunderIdentifierType: funderIdentifierType, + FunderName: v.Funder.Name, + AwardNumber: awardNumber, + AwardURI: awardURI, + }) + } + } else if len(content.Metadata.Grants) > 0 { + for _, v := range content.Metadata.Grants { + var funderIdentifierType string + funderIdentifier := doiutils.NormalizeDOI(v.Funder.DOI) + if funderIdentifier != "" { + funderIdentifierType = "Crossref Funder ID" + } + awardNumber := v.Code + awardURI, _ := utils.NormalizeURL(v.URL, true, false) + data.FundingReferences = append(data.FundingReferences, commonmeta.FundingReference{ + FunderIdentifier: funderIdentifier, + FunderIdentifierType: funderIdentifierType, + FunderName: v.Funder.Name, + AwardNumber: awardNumber, + AwardTitle: v.Title, + AwardURI: awardURI, + }) + } + } + + // GeoLocationPoint can be float64 or string + // for _, v := range content.GeoLocations { + // pointLongitude := ParseGeoCoordinate(v.GeoLocationPointInterface.PointLongitude) + // pointLatitude := ParseGeoCoordinate(v.GeoLocationPointInterface.PointLatitude) + // westBoundLongitude := ParseGeoCoordinate(v.GeoLocationBoxInterface.WestBoundLongitude) + // eastBoundLongitude := ParseGeoCoordinate(v.GeoLocationBoxInterface.EastBoundLongitude) + // southBoundLatitude := ParseGeoCoordinate(v.GeoLocationBoxInterface.SouthBoundLatitude) + // northBoundLatitude := ParseGeoCoordinate(v.GeoLocationBoxInterface.NorthBoundLatitude) + // geoLocation := commonmeta.GeoLocation{ + // GeoLocationPlace: v.GeoLocationPlace, + // GeoLocationPoint: commonmeta.GeoLocationPoint{ + // PointLongitude: pointLongitude, + // PointLatitude: pointLatitude, + // }, + // GeoLocationBox: commonmeta.GeoLocationBox{ + // WestBoundLongitude: westBoundLongitude, + // EastBoundLongitude: eastBoundLongitude, + // SouthBoundLatitude: southBoundLatitude, + // NorthBoundLatitude: northBoundLatitude, + // }, + // } + // data.GeoLocations = append(data.GeoLocations, geoLocation) + //} + + if len(content.Metadata.Identifiers) > 0 { + for _, v := range content.Metadata.Identifiers { + identifier := v.Identifier + scheme := InvenioToCMIdentifierMappings[v.Scheme] + if scheme == "URL" { + data.URL, _ = utils.NormalizeURL(identifier, true, false) + } else if scheme != "" { + data.Identifiers = append(data.Identifiers, commonmeta.Identifier{ + Identifier: identifier, + IdentifierType: scheme, + }) + } + } + } + + if len(content.Metadata.Languages) > 0 { + data.Language = utils.GetLanguage(content.Metadata.Languages[0].ID, "iso639-1") + } else if content.Metadata.Language != "" { + data.Language = utils.GetLanguage(content.Metadata.Language, "iso639-1") + } + + if content.Metadata.Publisher != "" { + data.Publisher = commonmeta.Publisher{ + Name: content.Metadata.Publisher, + } + } + + if len(content.Metadata.Subjects) > 0 { + for _, v := range content.Metadata.Subjects { + s := v.Subject + if v.Scheme == "FOS" { + s = "FOS: " + s + } + subject := commonmeta.Subject{ + Subject: s, + } + if !slices.Contains(data.Subjects, subject) { + data.Subjects = append(data.Subjects, subject) + } + } + } else if len(content.Metadata.Keywords) > 0 { + for _, v := range content.Metadata.Keywords { + subject := commonmeta.Subject{ + Subject: v, + } + if !slices.Contains(data.Subjects, subject) { + data.Subjects = append(data.Subjects, subject) + } + } + } + + if len(content.Metadata.Rights) > 0 { + id := content.Metadata.Rights[0].ID + data.License = commonmeta.License{ + ID: id, + } + } else if content.Metadata.License.ID != "" { + id := content.Metadata.License.ID + data.License = commonmeta.License{ + ID: id, + } + } + + if len(content.Metadata.RelatedIdentifiers) > 0 { + references := []string{ + "cites", + "references", + } + for i, v := range content.Metadata.RelatedIdentifiers { + id := utils.NormalizeID(v.Identifier) + if id != "" && slices.Contains(references, v.RelationType.ID) { + data.References = append(data.References, commonmeta.Reference{ + Key: "ref" + strconv.Itoa(i+1), + ID: id, + }) + } else if id != "" { + t := InvenioToCMRelationTypeMappings[v.RelationType.ID] + if t != "" { + data.Relations = append(data.Relations, commonmeta.Relation{ + ID: id, + Type: t, + }) + } + } + } + } + + if content.Metadata.Title != "" { + data.Titles = append(data.Titles, commonmeta.Title{ + Title: content.Metadata.Title, + }) + } + + data.Version = content.Metadata.Version + return data, nil } + +// ReadAll reads a list of Inveniordm JSON responses and returns a list of works in Commonmeta format +func ReadAll(content []Content) ([]commonmeta.Data, error) { + var data []commonmeta.Data + for _, v := range content { + d, err := Read(v) + if err != nil { + log.Println(err) + } + data = append(data, d) + } + return data, nil +} + +// ReadJSON reads JSON from a file and unmarshals it +func ReadJSON(filename string) (Content, error) { + var content Content + + extension := path.Ext(filename) + if extension != ".json" { + return content, errors.New("invalid file extension") + } + file, err := os.Open(filename) + if err != nil { + return content, errors.New("error reading file") + } + defer file.Close() + + decoder := json.NewDecoder(file) + err = decoder.Decode(&content) + return content, err +} + +// ReadJSONList reads JSON list from a file and unmarshals it +func ReadJSONList(filename string) ([]Content, error) { + var content []Content + + extension := path.Ext(filename) + if extension != ".json" { + return content, errors.New("invalid file extension") + } + file, err := os.Open(filename) + if err != nil { + return content, errors.New("error reading file") + } + defer file.Close() + decoder := json.NewDecoder(file) + err = decoder.Decode(&content) + return content, err +} + +// ReadJSONLines reads JSON lines from a file and unmarshals them +func ReadJSONLines(filename string) ([]Content, error) { + var response []Content + + extension := path.Ext(filename) + if extension != ".jsonl" && extension != ".jsonlines" { + return nil, errors.New("invalid file extension") + } + file, err := os.Open(filename) + if err != nil { + return nil, errors.New("error reading file") + } + defer file.Close() + + decoder := json.NewDecoder(file) + for { + var inveniordm Content + if err := decoder.Decode(&inveniordm); err == io.EOF { + break + } else if err != nil { + log.Fatal(err) + } + response = append(response, inveniordm) + } + + return response, nil +} + +// GetContributor converts Inveniordm contributor metadata into the Commonmeta format +func GetContributor(v Creator) commonmeta.Contributor { + var t string + if v.PersonOrOrg.Type == "personal" { + t = "Person" + } else if v.PersonOrOrg.Type == "organizational" { + t = "Organization" + + } + var id string + if len(v.PersonOrOrg.Identifiers) > 0 { + ni := v.PersonOrOrg.Identifiers[0] + if ni.Scheme == "orcid" { + id = utils.NormalizeORCID(ni.Identifier) + t = "Person" + } else if ni.Scheme == "ROR" { + id = utils.NormalizeROR(ni.Identifier) + t = "Organization" + } else { + id = ni.Identifier + } + } + name := v.PersonOrOrg.Name + givenName := v.PersonOrOrg.GivenName + familyName := v.PersonOrOrg.FamilyName + if t == "" && (givenName != "" || familyName != "") { + t = "Person" + } else if t == "" { + t = "Organization" + } + if t == "Person" && name != "" && familyName == "" { + // split name for type Person into given/family name if not already provided + givenName, familyName, name = authorutils.ParseName(name) + } + + var affiliations []*commonmeta.Affiliation + for _, a := range v.Affiliations { + id, identifierType := utils.ValidateID(a.ID) + if identifierType == "ROR" { + id = utils.NormalizeROR(id) + } + affiliations = append(affiliations, &commonmeta.Affiliation{ + ID: id, + Name: a.Name, + }) + } + + var roles []string + roles = append(roles, "Author") + + return commonmeta.Contributor{ + ID: id, + Type: t, + Name: name, + GivenName: givenName, + FamilyName: familyName, + Affiliations: affiliations, + ContributorRoles: roles, + } +} + +// GetZenodoContributor converts Zenodo contributor metadata into the Commonmeta format +func GetZenodoContributor(v Creator) commonmeta.Contributor { + var id, t string + + // split name into given/family name + givenName, familyName, name := authorutils.ParseName(v.Name) + + if v.ORCID != "" { + id = utils.NormalizeORCID(v.ORCID) + t = "Person" + } + + if t == "" && (givenName != "" || familyName != "") { + t = "Person" + } else if t == "" { + t = "Organization" + } + if t == "Person" && familyName == "" && name != "" { + familyName = name + name = "" + } + + var affiliations []*commonmeta.Affiliation + if v.Affiliation != "" { + affiliations = append(affiliations, &commonmeta.Affiliation{ + Name: v.Affiliation, + }) + } + + var roles []string + roles = append(roles, "Author") + + return commonmeta.Contributor{ + ID: id, + Type: t, + Name: name, + GivenName: givenName, + FamilyName: familyName, + Affiliations: affiliations, + ContributorRoles: roles, + } +} diff --git a/inveniordm/writer.go b/inveniordm/writer.go index ff5d6fb..c9df9e9 100644 --- a/inveniordm/writer.go +++ b/inveniordm/writer.go @@ -212,18 +212,13 @@ func Convert(data commonmeta.Data) (Inveniordm, error) { // first check if award number is in the awards vocabulary for _, a := range awardsVocabulary { if a.ID == v.AwardNumber { - if a.Title.En != "" { - award = Award{ - Number: v.AwardNumber, - // Title: AwardTitle{ - // En: a.Title.En, - // }, - } - } else { - award = Award{ - Number: v.AwardNumber, - } + award = Award{ + Number: v.AwardNumber, + Title: AwardTitle{ + En: a.Title.En, + }, } + // if a.Identifiers.Identifier != "" { // id, identifierType := utils.ValidateID(a.AwardURI) // if id == "" { @@ -241,11 +236,15 @@ func Convert(data commonmeta.Data) (Inveniordm, error) { award = Award{ Number: v.AwardNumber, } - // if v.AwardTitle != "" { - // award.Title = AwardTitle{ - // En: v.AwardTitle, - // } - // } + if v.AwardTitle != "" { + award.Title = AwardTitle{ + En: v.AwardTitle, + } + } else { + award.Title = AwardTitle{ + En: "No title", + } + } if v.AwardURI != "" { id, identifierType := utils.ValidateID(v.AwardURI) if id == "" { diff --git a/inveniordm/writer_test.go b/inveniordm/writer_test.go index e2cae90..dd1376d 100644 --- a/inveniordm/writer_test.go +++ b/inveniordm/writer_test.go @@ -2,7 +2,6 @@ package inveniordm_test import ( "encoding/json" - "fmt" "os" "path/filepath" "strings" @@ -67,30 +66,30 @@ func TestWrite(t *testing.T) { } } -func ExampleCreateDraftRecord() { - s := inveniordm.CreateDraftRecord("10.59350/k0746-rsc44") - fmt.Println(s) - // Output: - // 10.59350%2Fk0746-rsc44 -} +// func ExampleCreateDraftRecord() { +// s, _ := inveniordm.CreateDraftRecord("10.59350/k0746-rsc44") +// fmt.Println(s) +// // Output: +// // 10.59350%2Fk0746-rsc44 +// } -func ExampleEditPublishedRecord() { - s := inveniordm.EditPublishedRecord("10.59350/k0746-rsc44") - fmt.Println(s) - // Output: - // 10.59350%2Fk0746-rsc44 -} +// func ExampleEditPublishedRecord() { +// s, _ := inveniordm.EditPublishedRecord("10.59350/k0746-rsc44") +// fmt.Println(s) +// // Output: +// // 10.59350%2Fk0746-rsc44 +// } -func ExampleUpdateDraftRecord() { - s := inveniordm.UpdateDraftRecord("10.59350/k0746-rsc44") - fmt.Println(s) - // Output: - // 10.59350%2Fk0746-rsc44 -} +// func ExampleUpdateDraftRecord() { +// s, _ := inveniordm.UpdateDraftRecord("10.59350/k0746-rsc44") +// fmt.Println(s) +// // Output: +// // 10.59350%2Fk0746-rsc44 +// } -func ExamplePublishDraftRecord() { - s := inveniordm.PublishDraftRecord("10.59350/k0746-rsc44") - fmt.Println(s) - // Output: - // 10.59350%2Fk0746-rsc44 -} +// func ExamplePublishDraftRecord() { +// s, _ := inveniordm.PublishDraftRecord("10.59350/k0746-rsc44") +// fmt.Println(s) +// // Output: +// // 10.59350%2Fk0746-rsc44 +// } diff --git a/schemautils/schemas/commonmeta_v0.15.json b/schemautils/schemas/commonmeta_v0.15.json index 271f35e..95515a7 100644 --- a/schemautils/schemas/commonmeta_v0.15.json +++ b/schemautils/schemas/commonmeta_v0.15.json @@ -558,6 +558,7 @@ "Journal", "PeerReview", "PhysicalObject", + "Poster", "Presentation", "ProceedingsArticle", "ProceedingsSeries", diff --git a/utils/utils.go b/utils/utils.go index 1042859..9a1b9ee 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -580,3 +580,15 @@ func DecodeDOI(doi string) int64 { } return number } + +// ParseString parses an interface into a string +func ParseString(s interface{}) string { + var str string + switch v := s.(type) { + case string: + str = v + case float64: + str = fmt.Sprintf("%v", v) + } + return str +}